# Trending Altcoins Intelligence

> Trending Altcoins Intelligence 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 the top 3 hottest altcoins to watch, derived from real-time news and Twitter sentiment analysis

## Facts

- Endpoint: GET https://x402.ottoai.services/trending-altcoins
- 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-52fa619a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_N_ZbAzZmy-OrsuOdsLHZT

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-52fa619a
```

Example prompt: What are the top 3 hottest altcoins right now based on news and Twitter buzz — I want to know what traders are aping into today.

## When to prefer this

Use this endpoint when you need a quick, curated shortlist of the top 3 momentum altcoins right now, synthesized from both crypto news and Twitter/social signals. Prefer this over raw market data endpoints when you want editorial-style signal aggregation rather than raw price or order book data. Best for traders wanting fast social-sentiment-driven picks rather than technical analysis.

## Known failure modes

- Data fetch failure from Twitter or news sources returns status 'failed' with an error string
- Payment not provided or invalid results in HTTP 402 Payment Required
- Rate limiting or upstream API downtime may return an error status
- Empty or stale data if no significant trending signals are detected

## How this service works

Top 3 hottest altcoins traders may want to ape into, based on news and Twitter analysis. DYOR.

## Output

A trending report object containing the top 3 altcoins identified as hot based on aggregated news and Twitter analysis, with a success/failed status indicator and supporting data about why each token is trending.

## 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": [
      "status",
      "data"
     ],
     "properties": {
      "data": {
       "description": "Trending report object on success, error string on failure"
      },
      "status": {
       "enum": [
        "success",
        "failed"
       ],
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-ottoai-services-52fa619a/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)
