# CoinAnk Grayscale Indicator via claw402 x402 Gateway

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

Fetches Grayscale crypto fund indicator data (e.g. holdings, premiums, flows) for a given symbol via x402 micropayment, no API key required.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/coinank/indicator/grayscale
- 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-grayscale-indicator-via-claw402-x402-gateway-6585cdf6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lK1vY48JvNtQscbwbYjZt

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-grayscale-indicator-via-claw402-x402-gateway-6585cdf6
```

Example prompt: What does the Grayscale indicator look like for BTC right now — pull the latest data from CoinAnk's Grayscale endpoint.

## When to prefer this

Use this endpoint when you need Grayscale crypto fund indicator data (premiums, holdings, flows) for a specific crypto symbol without wanting to register for a CoinAnk API key, and you are already set up to pay via x402 USDC micropayments. Prefer over direct CoinAnk access when operating in a wallet-native, keyless agent environment.

## Known failure modes

- Empty data array if symbol is not recognized or unsupported by CoinAnk
- Payment failure if USDC wallet balance is insufficient for the $0.002 x402 micropayment
- HTTP 402 returned if payment header is missing or malformed
- Non-zero code in response body indicating upstream CoinAnk API error
- Network timeout if claw402 gateway or CoinAnk backend is unavailable

## 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 code 0 and a data array containing Grayscale fund indicator metrics for the queried symbol (e.g. holdings, AUM, premium/discount, flow data as available 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": {
      "symbol": {
       "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-grayscale-indicator-via-claw402-x402-gateway-6585cdf6/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)
