# CoinAnk Indicator Charts API (via claw402 x402 Gateway)

> CoinAnk Indicator Charts 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-14).

Fetches indicator chart data from CoinAnk via the claw402 x402 payment gateway, paid per-call with USDC and requiring no API key or registration.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/coinank/indicator/charts
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coinank-indicator-charts-api-via-claw402-x402-gateway-cdd81fee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_v-SbfmaBHl6qDEN-osuvC

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-indicator-charts-api-via-claw402-x402-gateway-cdd81fee
```

Example prompt: Pull the latest indicator chart data from CoinAnk for the 'type' indicator I want to analyze — I'll pay per call with my USDC wallet, no API key needed.

## When to prefer this

Choose this endpoint when you need CoinAnk indicator chart data without wanting to register for an API key or set up a billing account — you only need a crypto wallet with USDC. Ideal for ad-hoc or low-volume queries where micropayment ($0.002/call) is preferable to a subscription. Useful for AI agents that can autonomously execute x402 payments.

## Known failure modes

- Payment not received or insufficient USDC — HTTP 402 returned requiring payment
- Invalid or missing 'type' query parameter — may return empty data array
- Upstream CoinAnk API unavailable — non-zero error code or empty data
- Wallet address not recognized or payment facilitator down — request blocked
- Rate limiting or service overload from vergex.trade backend — delayed or failed response

## How this service works

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

## Output

Returns a JSON object with a numeric status code (0 = success) and a data array containing the requested indicator chart data from CoinAnk.

## 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": {
      "type": {
       "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-indicator-charts-api-via-claw402-x402-gateway-cdd81fee/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)
