# DeepNets Token Stats API

> DeepNets Token Stats API is a paid API for AI agents from api.deepnets.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns on-chain and market activity statistics for a given Solana token mint address

## Facts

- Endpoint: GET https://api.deepnets.ai/api/token/GQcNteQ3CeHgFghixJGzEnJNvKyMPykWbmLES5HSpump/stats
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-deepnets-ai-8e75c333
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_x-C3gz8WVIV7M2ZdajhbX

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-deepnets-ai-8e75c333
```

Example prompt: Can you pull the on-chain stats and market activity metrics for the Solana token with mint address GQcNteQ3CeHgFghixJGzEnJNvKyMPykWbmLES5HSpump?

## When to prefer this

Use this endpoint when you need quantitative statistics and activity metrics for a specific Solana token by its mint address, especially for pump.fun tokens or any SPL token. Prefer this over general token info endpoints when you specifically need trading or market activity data rather than metadata.

## Known failure modes

- Invalid or malformed base58 mint address returns an error
- Token mint address not found on Solana returns 404 or empty result
- Network timeout if Solana RPC is congested
- Payment failure if x402 USDC payment not properly attached
- Rate limiting if too many requests sent in quick succession

## How this service works

Returns statistics for a given token address, including on-chain or market activity metrics. Intended for querying token-specific analytics via API.

## Output

Returns a JSON object containing statistics for the specified Solana token mint, including on-chain activity metrics and market performance data such as trading volume, price movements, holder counts, and other token-specific analytics.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "mint"
     ],
     "properties": {
      "mint": {
       "type": "string",
       "example": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263",
       "description": "Solana token mint address (base58). pump.fun tokens end in \"pump\"."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

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