# CoinStats Wallet Sync Status

> CoinStats Wallet Sync Status is a paid API for AI agents from x402.coinstats.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns whether CoinStats has finished indexing all transactions for a given wallet address

## Facts

- Endpoint: GET https://x402.coinstats.app/wallet/status
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-coinstats-app-d9f3c366
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5geoCD3gVhdAmM379RRTI

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-d9f3c366
```

Example prompt: Has CoinStats finished indexing all the transactions for my Ethereum wallet 0xABC123...? I want to know if the sync is complete before I pull the transaction history.

## When to prefer this

Use this endpoint before querying CoinStats wallet transaction history or portfolio data, to confirm the wallet has been fully indexed and data is ready. Ideal for polling loops that wait for sync completion before proceeding with downstream queries.

## Known failure modes

- Invalid or unsupported wallet address returns an error
- Wallet address not found or not connected to CoinStats returns not found
- Unsupported blockchain returns error
- Missing required wallet parameter returns 400-level error
- Payment failure via x402 returns 402 status
- Network timeout returns 5xx error

## How this service works

CoinStats wallet sync status — whether CoinStats has finished indexing transactions for the given wallet

## Output

Returns the indexing/sync status for the specified wallet address, indicating whether CoinStats has completed processing all transactions for that wallet and the data is ready to query.

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "required": [
    "method"
   ],
   "properties": {
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-coinstats-app-d9f3c366/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)
