# GoCreative Crypto Spot Price & 24h Change Lookup

> GoCreative Crypto Spot Price & 24h Change Lookup is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns the live spot price and 24-hour percent change for a given cryptocurrency symbol

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/lookup/crypto/:var1
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-crypto-spot-price-24h-change-lookup-d9772a65
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2YYsw0UiA5e3U9M8iqp73

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-spot-price-24h-change-lookup-d9772a65
```

Example prompt: What's the current spot price and 24-hour percent change for ETH right now?

## When to prefer this

Choose this endpoint when you need real-time spot price and 24h change for a single cryptocurrency symbol with no API key or signup required, paying only per call in USDC via x402 on Base or Solana. Ideal for autonomous AI agents, trading bots, and portfolio trackers that need lightweight, keyless market data access.

## Known failure modes

- Unknown or unsupported crypto symbol returns an error or empty result
- Payment not included or insufficient USDC causes 402 Payment Required response
- Network timeout if price feed is temporarily unavailable
- Malformed symbol input (e.g. lowercase or special characters) may return no data

## How this service works

Crypto price + 24h change

## Output

Returns the live spot price in USD and the 24-hour percentage change for the requested cryptocurrency symbol, suitable for trading bots, portfolio trackers, and DeFi agents.

## 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-spot-price-24h-change-lookup-d9772a65/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)
