# CoinAnk Rank Screener via claw402 x402 Gateway

> CoinAnk Rank Screener 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).

Returns a ranked screener list of cryptocurrency assets from CoinAnk, accessible via USDC micropayment with no API key required.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/coinank/rank/screener
- 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-rank-screener-via-claw402-x402-gateway-30b44b8a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jOvE4iARAqczLfipac1IF

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-rank-screener-via-claw402-x402-gateway-30b44b8a
```

Example prompt: Show me the current ranked crypto screener from CoinAnk — pull the latest interval data so I can see which coins are ranking highest right now.

## When to prefer this

Use this endpoint when you need a ranked list of cryptocurrencies from CoinAnk's screener and want to pay per-call with USDC without managing API keys or registration. Prefer this over traditional API key-based crypto screeners when operating in a wallet-native or x402-payment environment.

## Known failure modes

- Payment not received or insufficient USDC — 402 response blocking access
- Invalid or unsupported interval value — may return empty data array or error
- Upstream CoinAnk data unavailable — empty data array returned (code 0, data [])
- Network timeout from claw402 gateway to CoinAnk backend
- Malformed query parameters — request rejected before reaching data layer

## 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 response with a status code and a data array containing ranked cryptocurrency screener entries, typically listing coins sorted by rank with associated market metrics for the requested interval.

## 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": {
      "interval": {
       "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-rank-screener-via-claw402-x402-gateway-30b44b8a/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)
