# x402.ottoai.services Token Alpha

> x402.ottoai.services Token Alpha 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-13).

Returns premium token intelligence including price metrics, news, Twitter sentiment, and futures data for a given crypto token symbol.

## Facts

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

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-9431e195
```

Example prompt: Why is SOL moving right now? Give me the full alpha — price metrics, recent news, Twitter sentiment, and any futures data you can find.

## When to prefer this

Use this endpoint when you need a comprehensive, multi-signal intelligence report on a specific crypto token — combining price action, news, social sentiment, and derivatives data in a single call. Prefer this over separate price or news APIs when the user wants to understand *why* a token is moving.

## Known failure modes

- Invalid or unsupported token symbol returns status 'failed' with error string
- Payment not provided or rejected results in 402 Payment Required
- Network or upstream data source outage returns error
- Obscure tokens with no data coverage may return empty or partial results

## How this service works

Premium token intelligence: price metrics, news, Twitter sentiment, and futures data. Find out why your token is moving.

## Output

A structured token alpha object containing price metrics, recent news, Twitter/social sentiment analysis, and futures market data for the requested token symbol. Returns status 'success' or 'failed' with data or error message.

## Example request

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

## 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)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "status",
      "data",
      "meta"
     ],
     "properties": {
      "data": {
       "description": "Token alpha 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-9431e195/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)
