# GoCreative Crypto Chain Lookup

> GoCreative Crypto Chain Lookup is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-12).

Retrieves detailed information about a specific blockchain/crypto chain by chain identifier

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/crypto/chains/%7Barg%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-12
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-crypto-chain-lookup-30d0fa34
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9_2a73MVXwQOBwugSTi_p

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 gocreative-crypto-chain-lookup-30d0fa34
```

Example prompt: Can you look up the chain details for Ethereum mainnet — I need the chain ID, native currency, and official RPC endpoints from GoCreative's crypto chain data?

## When to prefer this

Use this endpoint when you need authoritative metadata about a specific blockchain network — such as chain ID, RPC URLs, or block explorer links — without signing up for an API key. Ideal for agents needing on-demand chain lookups at $0.01 per call via x402/USDC, especially when integrating with multi-chain dApps or cross-chain workflows.

## Known failure modes

- Unknown or unsupported chain identifier returns 404 or empty result
- Invalid chain argument format causes 400 bad request
- Payment failure (insufficient USDC balance) results in 402 Payment Required
- Network timeout if chain registry is temporarily unavailable
- Malformed chain slug returns error response

## How this service works

483,000+ pay-per-call data APIs and free tools built on official sources — finance, company &amp; government data, FRED, Census, crypto, calculators. USDC on Base via x402, native MCP. No API key, no signup.

## Output

Returns structured metadata about the requested blockchain chain, including chain ID, chain name, native currency symbol, RPC endpoint URLs, and block explorer links, sourced from official data aggregators.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gocreative-crypto-chain-lookup-30d0fa34/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.gocreativeai.com](https://www.zero.xyz/host/api.gocreativeai.com/llms.txt)
