Skip to main content

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.

Unit

Every timestamp returned by the API is an integer in milliseconds since the Unix epoch (1970-01-01T00:00:00Z).
{
  "timestamp": 1777399660025,
  "trade_timestamp": 1777397315466
}

Conversion

const ts = 1777399660025;
new Date(ts).toISOString();
// "2026-04-28T22:41:00.025Z"

Sending timestamps in requests

Query parameters that accept a timestamp (e.g. start_time, end_time on /historical_trades) also expect milliseconds:
curl "https://internal-api.binibit.com/api/marketdata/getcoingecko/historical_trades?ticker_id=TRX_USDT&start_time=1777380000000&end_time=1777400000000"

Server time

Server clock is synced via NTP. Drift is typically under 100 ms. A dedicated GET /time endpoint is on the roadmap for v1.x.