# AGISHub Crypto Spot Price

> AGISHub Crypto Spot Price 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-14).

Returns live USD spot prices for one or more cryptocurrencies by ticker symbol

## Facts

- Endpoint: POST https://api.agishub.com/paid/crypto-price
- 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/agishub-crypto-spot-price-b2d52296
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fO3E5FcVIBbsVdb4Wbzt5

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-b2d52296 -d '<json body>'
```

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

## When to prefer this

Use this endpoint when you need real-time USD spot prices for one or more cryptocurrencies by ticker in a single API call. It supports batch lookups via comma-separated symbols, making it efficient for portfolio checks or multi-asset comparisons. Prefer this over general financial APIs when you specifically need crypto prices in USD with minimal latency.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Missing required 'symbols' query parameter causes a 400 bad request
- Network timeout if the upstream price feed is slow
- Rate limiting or payment failure if USDC payment is not properly handled

## 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 for each requested cryptocurrency ticker symbol. Each entry maps the symbol to its current market price in USD.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "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
    },
    "type": {
     "enum": [
      "http"
     ],
     "type": "string"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "enum": [
      "json"
     ],
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agishub-crypto-spot-price-b2d52296/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)
