# DeepNets Token Stats

> DeepNets Token Stats 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-14).

Returns analytics statistics for a specific Solana token identified by its mint address.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/token/4uYwdkwWT1kNa6k9mzD1UZHfYLjxfVme1YBwRp4vpump/stats
- 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-deepnets-ai-7f41dfe2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HejxiZN0iHZOMEKRQ-prZ

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-7f41dfe2
```

Example prompt: Can you pull up the stats for the Solana token with mint address 4uYwdkwWT1kNa6k9mzD1UZHfYLjxfVme1YBwRp4vpump — I want to see its analytics and trading metrics.

## When to prefer this

Use this endpoint when you need analytics statistics for a specific Solana token identified by its mint address, especially for pump.fun tokens or any Solana SPL token. Prefer this over general token info endpoints when you specifically need statistical/analytics data rather than metadata or safety signals.

## Known failure modes

- Invalid or malformed mint address returns an error response
- Token not found for the given mint address returns empty or 404-like response
- Rate limiting or payment failure returns 402 or 429 status
- Network timeout for slow on-chain data lookups
- Unsupported token type or non-Solana address causes validation error

## How this service works

Returns statistics for a specific token identified by its contract address or token ID. Intended to provide token analytics data for paid API consumers.

## Output

Returns a statistics object containing analytics and performance metrics for the specified Solana token, including trading data and token-level statistics relevant to paid API consumers.

## 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-7f41dfe2/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)
