# GoCreative Crypto Price History API

> GoCreative Crypto Price History API 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-14).

Retrieves historical price data for a specified cryptocurrency symbol via a pay-per-call endpoint priced at $0.01 USDC

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/crypto/history/%7Barg%7D
- Price: $0.01/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-price-history-api-3bf14758
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FRL8sFLGEuoWlPThWSRLW

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-price-history-api-3bf14758
```

Example prompt: Can you pull up the historical price data for Ethereum (ETH) using GoCreative's crypto history endpoint so I can see how it's trended over time?

## When to prefer this

Use this endpoint when an AI agent needs historical cryptocurrency price data without requiring API key setup or subscription — ideal for pay-per-call autonomous agent workflows using x402 and USDC on Base. Good for one-off lookups or low-frequency historical queries on crypto assets.

## Known failure modes

- Invalid or unrecognized cryptocurrency symbol returns an error or empty result
- Unsupported coin ticker not covered by the data source
- Network or payment processing failure via x402/USDC
- Rate limiting or service unavailability
- Missing or malformed {arg} path parameter results in 400-level error

## 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

A time series of historical price data for the requested cryptocurrency, likely including open, high, low, close, and volume (OHLCV) figures across a range of timestamps, sourced from official or aggregated market data providers.

## 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-price-history-api-3bf14758/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)
