# Otto AI Token Details

> Otto AI Token Details is a paid API for AI agents from x402.ottoai.services, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns price, market cap, volume, supply, and basic market metrics for any listed cryptocurrency token by symbol.

## Facts

- Endpoint: GET https://x402.ottoai.services/token-details
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-ottoai-services-59f26c57
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CZ33ILCn7LGMvlNV2GLuO

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 x402-ottoai-services-59f26c57
```

Example prompt: What's the current price, market cap, and circulating supply for SOL?

## When to prefer this

Choose this endpoint when you need quick, basic market metrics (price, market cap, volume, supply) for any listed token by symbol. Prefer this over the premium token intelligence endpoint when you only need raw price/market data without sentiment or news analysis. Ideal for lightweight lookups in automated workflows or portfolio checks.

## Known failure modes

- Unknown or delisted token symbol returns status 'failed' with an error string in the data field
- Missing required 'symbol' query parameter causes a bad request error
- Network or upstream data provider outage may return a failed status
- Newly listed tokens not yet indexed may not return valid data

## How this service works

Token price, market cap, volume, supply, and basic metrics. Works for any listed token.

## Output

Returns a JSON object with status ('success' or 'failed') and a data field containing token details such as price, market cap, 24h trading volume, and supply metrics for the requested token symbol.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "symbol": "BTC"
  }
 }
}
```

## 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": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Token symbol (e.g., BTC, ETH, SOL, PEPE)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "status",
      "data",
      "meta"
     ],
     "properties": {
      "data": {
       "description": "Token details object on success, error string on failure"
      },
      "meta": {
       "type": "object",
       "required": [
        "generatedAt",
        "degraded",
        "sourceHealth"
       ],
       "properties": {
        "degraded": {
         "type": "boolean"
        },
        "generatedAt": {
         "type": "string"
        },
        "sourceHealth": {
         "type": "object"
        },
        "stalenessSec": {
         "type": [
          "number",
          "null"
         ]
        }
       },
       "description": "Freshness. generatedAt = when we built this response. stalenessSec = age of our cached snapshot, absent on live pass-throughs. dataAsOf = vintage of the observations. degraded = an older good version was served."
      },
      "status": {
       "enum": [
        "success",
        "failed"
       ],
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-ottoai-services-59f26c57/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.ottoai.services](https://www.zero.xyz/host/x402.ottoai.services/llms.txt)
