# x402.ottoai.services Filtered Crypto News

> x402.ottoai.services Filtered Crypto News 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 AI-filtered crypto news and Twitter search results for a given non-token topic (max 2 words, e.g., airdrops, DeFi trends)

## Facts

- Endpoint: GET https://x402.ottoai.services/filtered-news
- 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-a61fefd0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4Y06H58mWdeommrmNMh3m

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

Example prompt: Can you pull the latest AI-filtered crypto news and Twitter results about 'DeFi airdrops' for me?

## When to prefer this

Choose this endpoint when you need AI-filtered news and social media intelligence on a specific non-token crypto topic (e.g., airdrops, DeFi trends, governance, Layer 2 news) rather than token-specific price or sentiment data. It is ideal for topic-level research across crypto Twitter and news, where the subject is a theme or event rather than a specific coin or token.

## Known failure modes

- Topic exceeds 2 words — API rejects or truncates query
- No relevant news or tweets found for the topic — empty or minimal data returned
- Invalid topic format — error string in data field
- Payment failure (x402) — 402 response before content is delivered
- Rate limiting or upstream Twitter/news source unavailability

## How this service works

AI-filtered crypto news and Twitter search for non-token topics (airdrops, DeFi trends, etc). Max 2 words.

## Output

A report object containing AI-filtered crypto news articles and Twitter search results relevant to the specified topic (up to 2 words), with status indicating success or failure.

## Example request

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

## 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": [
      "topic"
     ],
     "properties": {
      "topic": {
       "type": "string",
       "description": "Topic to filter news by (max 2 words, e.g., 'DeFi airdrops', 'Base chain')"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "status",
      "data"
     ],
     "properties": {
      "data": {
       "description": "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-a61fefd0/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)
