# 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-14).

Returns real-time price, market cap, holder count, and timestamp statistics for a Solana token mint address.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/token/GgieLnjHjwYwSvscVNc2xB2qN1K3YhjYPngzY9c2bonk/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-b2a935b7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_46fCexzCJnrd5YiL6nQri

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

Example prompt: What are the current price and market cap stats for the Solana token with mint address GgieLnjHjwYwSvscVNc2xB2qN1K3YhjYPngzY9c2bonk — give me price in both SOL and USD, market cap, and holder count.

## When to prefer this

Use this endpoint when you need fast, real-time token statistics — specifically price in SOL and USD, market cap, and holder count — for a known Solana token mint address. Particularly suited for pump.fun tokens and other SPL tokens. Prefer over on-chain RPC calls when you want aggregated stats without parsing raw blockchain data.

## Known failure modes

- Invalid or malformed mint address returns an error response
- Unknown mint address not indexed by DeepNets returns empty or 404
- Rate limiting or payment failure (x402) blocks the request
- Network timeout if token data is not yet cached
- Mint address for a non-existent or delisted token returns no data

## How this service works

Returns real-time token statistics for a given mint address, including price in SOL and USD, market cap, holder count, and update timestamps.

## Output

Returns a JSON object containing the token's current price in SOL and USD, market capitalization, number of holders, and timestamps indicating when the data was last updated.

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