# CoinCap Full Asset Data by Slug

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

Returns comprehensive asset data (price, market cap, supply, rank, etc.) for one or more cryptocurrency slugs in an agent-optimized format.

## Facts

- Endpoint: GET https://rest.coincap.io/v3/agentFriendly/full_assets_by_slug
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coincap-full-asset-data-by-slug-ecae0fb1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__GcRUAuCpegnHlFhEfVeZ

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-full-asset-data-by-slug-ecae0fb1
```

Example prompt: Pull the full asset data from CoinCap for bitcoin, ethereum, and solana — I need price, market cap, supply, and rank for all three.

## When to prefer this

Choose this endpoint when you need comprehensive, structured data for one or more specific crypto assets identified by their CoinCap slug — especially when you need multiple data fields (price, supply, rank, volume) in a single call. Prefer this over search endpoints when you already know the slug(s). Use the sibling search endpoint first if you only have a name or ticker and need to resolve the slug.

## Known failure modes

- Invalid or unknown slug returns empty or error result for that asset
- Missing 'slugs' query parameter may return an error or empty dataset
- Rate limiting or payment failure returns 402 or 429 status
- Network timeout if multiple slugs cause slow response
- Slug format mismatch (e.g. using ticker symbol instead of slug) returns no data

## How this service works

Full asset data for one or more slugs (agent-optimized).

## Output

Returns a structured, agent-optimized payload for each requested slug containing fields such as current price (USD), market capitalization, rank, circulating supply, max supply, 24h volume, and other asset metadata. Data is formatted for easy agent consumption without requiring additional parsing.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "slugs": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coincap-full-asset-data-by-slug-ecae0fb1/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)
