# CoinStats Exchange Transaction History

> CoinStats Exchange Transaction History is a paid API for AI agents from x402.coinstats.app, paid per call via x402, $0.001/call, status down (last checked 2026-09-15).

Retrieves historical transaction history for a user's connected exchange accounts via CoinStats

## Facts

- Endpoint: POST https://x402.coinstats.app/exchange/transactions
- Price: $0.001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-coinstats-app-35d5e8b0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qaBrtX4ZxitWi5Jtrfjty

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 x402-coinstats-app-35d5e8b0 -d '<json body>'
```

Example prompt: Pull up the transaction history for my connected exchange on my CoinStats account — I want to see all the trades and transfers that have been recorded.

## When to prefer this

Use this endpoint when you need to retrieve historical transaction records from a user's connected exchange accounts within the CoinStats ecosystem, particularly when you already have a CoinStats sharetoken. Prefer this over generic exchange APIs when the user has a CoinStats Degen-plan account with connected exchanges and wants a unified transaction view across their portfolio.

## Known failure modes

- Missing or invalid sharetoken header returns 401 unauthorized
- Exchange not connected to CoinStats portfolio returns empty results or 404
- Rate limiting or quota exceeded returns 429
- Invalid or expired sharetoken returns authentication error
- No transaction history available for the specified exchange returns empty array

## How this service works

Exchange transaction history

## Output

Returns a list of historical exchange transactions including trade details such as asset pairs, amounts, timestamps, transaction types (buy/sell/transfer), and associated exchange identifiers for the authenticated CoinStats portfolio.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "type"
 ],
 "properties": {
  "type": {
   "enum": [
    "24h",
    "1w",
    "1m",
    "3m",
    "6m",
    "1y",
    "all"
   ],
   "type": "string",
   "description": "Time period for the data"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-coinstats-app-35d5e8b0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.coinstats.app](https://www.zero.xyz/host/x402.coinstats.app/llms.txt)
