# CoinStats Exchange Sync Status

> CoinStats Exchange Sync Status 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).

Returns the current synchronization status of connected exchanges within CoinStats

## Facts

- Endpoint: POST https://x402.coinstats.app/exchange/status
- 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-fc5040ef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BLIFd5Axs-QiPZqULJj2N

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

Example prompt: Can you check the sync status of my connected exchanges on CoinStats to see if they're up to date?

## When to prefer this

Use this endpoint when you need to verify that exchange data within a CoinStats portfolio is current and properly synchronized, especially before relying on portfolio balance or trade data for analysis or reporting.

## Known failure modes

- Missing or invalid sharetoken returns authentication error
- Exchange not connected returns 404 or empty result
- Rate limit exceeded returns 429
- Service unavailable returns 503

## How this service works

Exchange sync status

## Output

Returns sync status information for connected exchanges, including last sync time, current sync state (e.g. syncing, synced, error), and exchange identifiers.

## 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-fc5040ef/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)
