# Nansen Jupiter DCA Data

> Nansen Jupiter DCA Data is a paid API for AI agents from api.nansen.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Retrieves Jupiter DCA (Dollar Cost Averaging) order stats per vault for a specific Solana token

## Facts

- Endpoint: GET https://api.nansen.ai/api/v1/tgm/jup-dca
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-nansen-ai-2cf08643
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_d1RnmjKfwW-QV8W1YnHUY

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability api-nansen-ai-2cf08643
```

Example prompt: Show me the Jupiter DCA order stats and vault breakdown for the Solana token at address So11111111111111111111111111111111111111112 — filter by recent deposits if possible.

## When to prefer this

Use this endpoint when you need on-chain Jupiter DCA order analytics for a specific Solana token, especially vault-level aggregations and smart money DCA flow data. Prefer this over generic on-chain data sources when you need Nansen's labeled wallet and entity intelligence layered on top of raw DCA data.

## Known failure modes

- Invalid or missing token_address returns an error or empty result
- Malformed filters object causes a 400 bad request
- Pagination parameters out of range return empty results
- Token with no Jupiter DCA activity returns empty dataset
- Rate limiting or payment failure returns 402 or 429 error

## How this service works

Get "Token God Mode" (TGM) Jupiter DCA data

## Output

Returns Jupiter DCA orders with aggregated statistics per vault for the specified Solana token, including order details, vault-level breakdowns, and optionally filtered/paginated results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "title": "TGMJupDcaRequest",
 "required": [
  "token_address"
 ],
 "properties": {
  "filters": {
   "anyOf": [
    {
     "type": "object",
     "title": "TGMJupDcaFilters",
     "properties": {
      "status": {
       "anyOf": [
        {
         "enum": [
          "Active",
          "Closed"
         ],
         "type": "string",
         "title": "TGMJupDcaStatus",
         "description": "Enum for TGM Jupiter DCA status values."
        }
       ],
       "examples": [
        "Active",
        "Closed"
       ],
       "description": "DCA vault status filter"
      },
      "token_input": {
       "anyOf": [
        {
         "type": "string"
        }
       ],
       "title": "Token Input",
       "examples": [
        "USDC",
        "%SOL%"
       ],
       "description": "Input token symbol filter"
      },
      "token_output": {
       "anyOf": [
        {
         "type": "string"
        }
       ],
       "title": "Token Output",
       "examples": [
        "PEPE",
        "%BTC%"
       ],
       "description": "Output token symbol filter"
      },
      "trader_label": {
       "anyOf": [
        {
         "type": "string"
        },
        {
         "type": "array",
         "items": {
          "type": "string"
         }
        },
        {
         "type": "null"
        }
       ],
       "title": "Trader Label",
       "examples": [
        "High Gas Consumer"
       ],
       "description": "Trader label filter"
      },
      "creation_hash": {
       "anyOf": [
        {
         "type": "string"
        },
        {
         "type": "array",
         "items": {
          "type": "string"
         }
        },
        {
         "type": "null"
        }
       ],
       "title": "Creation Hash",
       "examples": [
        "3k2j9h4k5l6m7n8o9p0q1r2s3t4u5v6w7x8y9z0a1b2c3d4e5f6g7h8i9j0k1l2m"
       ],
       "description": "Creation transaction hash filter"
      },
      "deposit_spent": {
       "anyOf": [
        {
         "type": "object",
         "title": "NumericRangeFilter",
         "properties": {
          "max": {
           "anyOf": [
            {
             "type": "number"
            }
           ],
           "title": "Max",
           "examples": [
            50000,
            10000000,
            100
           ],
           "description": "Maximum value (inclusive)"
          },
          "min": {
           "anyOf": [
            {
             "type": "number"
           
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "title": "TGMJupDcaResponse",
 "required": [
  "data",
  "pagination"
 ],
 "properties": {
  "data": {
   "type": "array",
   "items": {
    "type": "object",
    "title": "TGMJupDca",
    "required": [
     "trader_address"
    ],
    "properties": {
     "status": {
      "anyOf": [
       {
        "enum": [
         "Active",
         "Closed"
        ],
        "type": "string",
        "title": "TGMJupDcaStatus",
        "description": "Enum for TGM Jupiter DCA status values."
       }
      ],
      "examples": [
       "Active",
       "Closed"
      ],
      "description": "The status of the DCA vault"
     },
     "token_input": {
      "anyOf": [
       {
        "type": "string"
       }
      ],
      "title": "Token Input",
      "examples": [
       "USDC"
      ],
      "description": "The symbol of the input token"
     },
     "token_output": {
      "anyOf": [
       {
        "type": "string"
       }
      ],
      "title": "Token Output",
      "examples": [
       "PEPE"
      ],
      "description": "The symbol of the output token"
     },
     "trader_label": {
      "anyOf": [
       {
        "type": "string"
       }
      ],
      "title": "Trader Label",
      "examples": [
       "High Gas Consumer"
      ],
      "description": "The label of the trader obtained from Nansen's multichain data"
     },
     "creation_hash": {
      "anyOf": [
       {
        "type": "string"
       }
      ],
      "title": "Creation Hash",
      "examples": [
       "3k2j9h4k5l6m7n8o9p0q1r2s3t4u5v6w7x8y9z0a1b2c3d4e5f6g7h8i9j0k1l2m"
      ],
      "description": "The transaction hash at the time of creation"
     },
     "deposit_spent": {
      "anyOf": [
       {
        "type": "number"
       }
      ],
      "title": "Deposit Spent",
      "examples": [
       250.5
      ],
      "description": "The amount spent from the deposit"
     },
     "deposit_amount": {
      "anyOf": [
       {
        "type": "number"
       }
      ],
      "title": "Deposit Amount",
      "examples": [
       1000
      ],
      "description": "The amount deposited into the DCA vault"
     },
     "last_timestamp": {
      "anyOf": [
       {
        "type": "string"
       }
      ],
      "title": "Last Timestamp",
      "examples": [
       "2024-01-20T15:45:00Z"
      ],
      "description": "The timestamp of the latest transaction"
     },
     "trader_address": {
      "type": "string",
      "title": "Trader Address",
      "exam
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-nansen-ai-2cf08643/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.nansen.ai](https://www.zero.xyz/host/api.nansen.ai/llms.txt)
