Jupiter DCAs
Monitor DCA strategies employed by smart money on Solana through Jupiter DCA. This endpoint reveals systematic accumulation strategies used by smart money.
Authorizations
apiKeystringRequired
API key for authentication
Body
filtersany ofOptionalExample:
Additional filters to apply. Only filters for columns that are being selected will be applied.
{"exclude_smart_money_labels":["30D Smart Trader"],"include_smart_money_labels":["Fund","Smart Trader"]}order_byany ofOptional
Custom sort order to override the endpoint's default ordering.
Examples:
- [{"field": "dca_created_at", "direction": "DESC"}] - Sort by DCA created timestamp descending
- [{"field": "dca_updated_at", "direction": "ASC"}] - Sort by DCA updated timestamp ascending
- [{"field": "deposit_token_amount", "direction": "DESC"}, {"field": "token_spent_amount", "direction": "ASC"}] - Sort by deposit token amount descending, then token spent amount ascending
Responses
200
Smart money DCAs data
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
403
Forbidden
application/json
404
Not Found
application/json
422
Unprocessable Entity
application/json
429
Too Many Requests
application/json
500
Internal Server Error
application/json
post
/api/v1/smart-money/dcasPOST /api/v1/smart-money/dcas HTTP/1.1
Host: api.nansen.ai
apiKey: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 212
{
"filters": {
"exclude_smart_money_labels": [
"30D Smart Trader"
],
"include_smart_money_labels": [
"Fund",
"Smart Trader"
]
},
"pagination": {
"page": 1,
"per_page": 10
},
"order_by": [
{
"field": "dca_created_at",
"direction": "ASC"
}
]
}{
"data": [
{
"dca_created_at": "text",
"dca_updated_at": "text",
"trader_address": "text",
"transaction_hash": "text",
"trader_address_label": "text",
"dca_vault_address": "text",
"input_token_address": "text",
"output_token_address": "text",
"deposit_token_amount": 1,
"token_spent_amount": 1,
"output_token_redeemed_amount": 1,
"dca_status": "text",
"input_token_symbol": "text",
"output_token_symbol": "text",
"deposit_value_usd": 1
}
],
"pagination": {
"page": 1,
"per_page": 10,
"is_last_page": true
}
}Last updated
Was this helpful?