> ## Documentation Index
> Fetch the complete documentation index at: https://docs.binibit.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Data Verification

> Live snapshot for cross-checking API data against the trading interface.

## Purpose

A side-by-side view: numbers pulled live from the public API next to links to the matching trading pages. Useful for:

* Operations teams monitoring data integrity
* Developers sanity-checking their integrations
* Data aggregators (CoinGecko, CoinMarketCap, DefiLlama) verifying that Binibit API data matches the trading interface — a precondition for listing

## Live snapshot

<Card title="Open the trading interface" icon="arrow-up-right-from-square" href="https://binibit.com/?i=7r2c8t">
  Compare values below to the trading view on binibit.com — they should match.
</Card>

| Pair       | Last    | 24h Volume (base) | 24h Volume (USD est.) | Bid     | Ask     | Spread % | Trading page                                |
| ---------- | ------- | ----------------- | --------------------- | ------- | ------- | -------- | ------------------------------------------- |
| AAVE\_USDT | 97.4408 | 471.47 AAVE       | \$45,745              | 95.5644 | 97.4953 | 1.98%    | [open](https://binibit.com/trade/AAVE-USDT) |
| BTC\_USDT  | (live)  | (live) BTC        | (live)                | (live)  | (live)  | (live)   | [open](https://binibit.com/trade/BTC-USDT)  |
| TRX\_USDT  | 0.3238  | 9,900.94 TRX      | \$3,214               | 0.3204  | 0.3261  | 1.78%    | [open](https://binibit.com/trade/TRX-USDT)  |
| LINK\_USDT | 9.1935  | 432.94 LINK       | \$4,005               | (live)  | (live)  | (live)   | [open](https://binibit.com/trade/LINK-USDT) |

<Note>
  Numeric snapshot above is illustrative — the canonical, real-time values are at the [`/tickers`](/api-reference/tickers) endpoint. A live auto-refreshing widget will replace the static table in the next docs release.
</Note>

## Reproduce locally

```bash theme={null}
curl -s https://internal-api.binibit.com/api/marketdata/getcoingecko/tickers \
  | jq -r '.[] | [.ticker_id, .last_price, .base_volume, .target_volume, .bid, .ask] | @tsv' \
  | column -t
```

## For aggregator reviewers

If you are reviewing Binibit for a third-party listing (CoinGecko, CoinMarketCap, DefiLlama, Kaiko, etc.):

* The [`/tickers`](/api-reference/tickers) endpoint is the source of truth for last prices and 24h volumes
* Click any "open" link above to verify the same numbers appear on the live trading interface
* Email [api@binibit.com](mailto:api@binibit.com) for IP whitelisting and elevated rate limits during review

## Status & uptime

<Card title="Live status page" icon="signal-bars" href="https://status.binibit.com">
  Per-endpoint uptime, incident history, scheduled maintenance.
</Card>
