# AgentOracle Token Movers — Top 10 Gainers & Losers

> AgentOracle Token Movers — Top 10 Gainers & Losers is a paid API for AI agents from aiagentoracle.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns the top 10 gaining and top 10 losing on-chain tokens by 24-hour price change percentage, with full token metadata and a timestamp.

## Facts

- Endpoint: GET https://aiagentoracle.ai/api/v1/tokens/movers
- 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/aiagentoracle-ai-cf5d1db0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8GcLNN6DiCYOt-Sc_FXt7

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 aiagentoracle-ai-cf5d1db0
```

Example prompt: What are the top 10 biggest gainers and top 10 biggest losers across all on-chain tokens in the last 24 hours, along with their prices and market caps?

## When to prefer this

Use this endpoint when you need a quick snapshot of market momentum — specifically the top and bottom performers by 24h percentage change across all tracked on-chain tokens. Ideal for trading bots, market-monitoring agents, or dashboards that need to surface trending tokens without specifying individual symbols. Prefer this over the market-cap endpoint when you care about price velocity rather than size.

## Known failure modes

- No tokens tracked yet — empty arrays returned if ingestion has not run
- Service unavailable — HTTP 5xx if the backend ingestion pipeline is down
- Payment required — HTTP 402 if x402 USDC micropayment of $0.01 is not provided
- Rate limit exceeded — too many calls in a short window may return 429

## How this service works

AgentOracle: top 10 gainers and top 10 losers by 24h price change percentage across all tracked on-chain tokens. Returns two parallel arrays plus an `asOf` timestamp.

## Output

Two parallel arrays — `gainers` and `losers` — each containing up to 10 token objects sorted by 24h price change percentage. Each token includes: internal ID, symbol, name, EVM chain slug, spot price in USD, 24h price change percent, market cap, 24h volume, on-chain liquidity, confidence score, image URL, and last-updated timestamp. Also includes an `asOf` ISO datetime indicating data freshness.

## Example request

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

## 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",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "gainers",
      "losers",
      "asOf"
     ],
     "properties": {
      "asOf": {
       "type": "string",
       "format": "date-time"
      },
      "losers": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "id",
         "symbol",
         "name",
         "chain",
         "lastUpdated"
        ],
        "properties": {
         "id": {
          "type": "integer",
          "description": "Internal numeric identifier."
         },
         "name": {
          "type": "string"
         },
         "chain": {
          "type": "string",
          "description": "EVM chain slug (e.g. base, ethereum, arbitrum)."
         },
         "symbol": {
          "type": "string",
          "description": "Uppercase ticker symbol, e.g. ETH."
         },
         "imageUrl": {
          "type": [
           "string",
           "null"
          ],
          "format": "uri"
         },
         "priceUsd": {
          "type": [
           "number",
           "null"
          ],
          "description": "Spot price in USD."
         },
         "marketCap": {
          "type": [
           "number",
           "null"
          ],
          "description": "Fully-diluted market cap in USD."
         },
         "volume24h": {
          "type": [
           "number",
           "null"
          ],
          "description": "Trailing 24h trading volume in USD."
         },
         "lastUpdated": {
          "type": "string",
          "format": "date-time"
         },
         "liquidityUsd": {
          "type": [
           "number",
           "null"
          ],
          "description": "On-chain pool liquidity in USD."
         },
         "confidenceScore": {
          "type": [
           "number",
           "null"
          ],
       
… (truncated)
```

## More

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