# AGISHub Crypto Spot Price API

> AGISHub Crypto Spot Price API is a paid API for AI agents from api.agishub.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns live USD spot prices for one or more cryptocurrencies identified by ticker symbols.

## Facts

- Endpoint: GET https://api.agishub.com/v1/crypto-price
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agishub-crypto-spot-price-api-9d019f17
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SMLFckP_VtWrlE_uvbFUA

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 agishub-crypto-spot-price-api-9d019f17
```

Example prompt: What are the live USD prices for BTC, ETH, and SOL right now?

## When to prefer this

Choose this endpoint when you need real-time USD spot prices for one or more specific cryptocurrencies by ticker symbol, especially in an agentic context where micro-payment per-call pricing ($0.01 USDC) is acceptable and you want a simple GET request with comma-separated symbols rather than a full exchange API integration.

## Known failure modes

- Unknown or unsupported ticker symbol returns an error or omits that symbol from results
- Malformed symbols query string (e.g. extra spaces, invalid characters) may return a 400 error
- Market data source outage may cause stale or missing prices
- Payment failure (insufficient USDC) returns a 402 response before any price data is returned

## How this service works

Get live USD spot prices for one or more cryptocurrencies by ticker symbol (e.g. BTC, ETH, SOL).

## Output

A JSON object containing live USD spot prices keyed by the requested ticker symbols, reflecting current market rates at the time of the request.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "queryParams"
   ],
   "properties": {
    "type": {
     "enum": [
      "http"
     ],
     "type": "string"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "symbols"
     ],
     "properties": {
      "symbols": {
       "type": "string",
       "description": "Comma-separated ticker symbols, e.g. 'BTC,ETH,SOL'. Prices are returned in USD."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "enum": [
      "json"
     ],
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": "Get live USD spot prices for one or more cryptocurrencies by ticker symbol (e.g. BTC, ETH, SOL)."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agishub-crypto-spot-price-api-9d019f17/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agishub.com](https://www.zero.xyz/host/api.agishub.com/llms.txt)
