# CoinAnk Crypto News List API (via claw402 x402 Gateway)

> CoinAnk Crypto News List API (via claw402 x402 Gateway) is a paid API for AI agents from claw402.ai, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Retrieves a paginated list of cryptocurrency news articles from CoinAnk, filterable by language, type, popularity, and search query, accessed via USDC micropayment.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/coinank/news/list
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coinank-crypto-news-list-api-via-claw402-x402-gateway-29c11011
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7R9kYTMdQDJb0YGODU5UP

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 coinank-crypto-news-list-api-via-claw402-x402-gateway-29c11011
```

Example prompt: Show me the top 10 most popular cryptocurrency news articles in English from CoinAnk — search for anything related to Bitcoin.

## When to prefer this

Use this endpoint when you need a paginated, filterable feed of cryptocurrency news from CoinAnk and want to pay per-call with USDC without managing API keys or subscriptions. Prefer this over scraping or registered-API alternatives when low-friction micropayment access is acceptable and you need language or popularity filtering.

## Known failure modes

- Payment not received or insufficient USDC — 402 response returned
- Invalid query parameter types cause malformed request
- Empty data array returned when no news matches the search or type filter
- Upstream CoinAnk API unavailable — gateway may return 502 or timeout
- Invalid lang or type enum values may return empty results or error

## How this service works

Backed by vergex.trade. Pay for any API with USDC. No API keys. No registration. Just a wallet.

## Output

A JSON object with a code field (0 for success) and a data array containing cryptocurrency news articles matching the specified filters, including pagination metadata.

## 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": {
      "lang": {
       "type": "string"
      },
      "page": {
       "type": "string"
      },
      "type": {
       "type": "string"
      },
      "search": {
       "type": "string"
      },
      "pageSize": {
       "type": "string"
      },
      "isPopular": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "code": 0,
  "data": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coinank-crypto-news-list-api-via-claw402-x402-gateway-29c11011/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from claw402.ai](https://www.zero.xyz/host/claw402.ai/llms.txt)
