# CoinCap Historical Price Series (Asset Slug)

> CoinCap Historical Price Series (Asset Slug) is a paid API for AI agents from rest.coincap.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a capped historical price series for a specific cryptocurrency asset identified by its slug (e.g. 'ethereum').

## Facts

- Endpoint: GET https://rest.coincap.io/v3/agentFriendly/history/ethereum
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coincap-historical-price-series-asset-slug-d7ea1862
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Fjjl7coMlwj-gFxcaIp3q

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 coincap-historical-price-series-asset-slug-d7ea1862
```

Example prompt: Pull up the historical price series for Ethereum from CoinCap so I can see how its price has moved over time.

## When to prefer this

Use this endpoint when you need historical price data for a specific cryptocurrency by its slug (e.g. 'ethereum', 'bitcoin'). Prefer this over the total market-cap history endpoint when you need per-asset price series rather than aggregate market data. Ideal for charting, backtesting, or trend analysis on individual coins.

## Known failure modes

- Invalid or unknown asset slug returns an error or empty response
- Rate limiting or payment failure (x402) if USDC payment is not properly handled
- Network timeout if the API is temporarily unavailable
- Capped data points may not cover the full historical range requested

## How this service works

Historical price series for an asset slug (capped data points).

## Output

A capped series of historical price data points for the specified cryptocurrency asset slug, including timestamps and corresponding prices, suitable for charting, analysis, or backtesting.

## 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",
     "required": [
      "slug"
     ],
     "properties": {
      "slug": {
       "type": "string"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coincap-historical-price-series-asset-slug-d7ea1862/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from rest.coincap.io](https://www.zero.xyz/host/rest.coincap.io/llms.txt)
