Coin Listing Docs
Telegram ↗

History API

Fetch recent listing events over HTTP.

A read-only HTTP endpoint with the most recent listings. Use it to check delivery times, browse recent announcements, or fetch them without keeping a connection open. No key required, no tier-based filtering, no masking.

GET /history #

Returns the latest announcements that passed the /listings filter, newest first.

curl https://tokyo.coinlisting.pro/history
curl https://tokyo.coinlisting.pro/history?limit=20
curl https://tokyo.coinlisting.pro/history?source=BINANCE

Response:

{
  "count": 20,
  "items": [
    {
      "source": "BINANCE",
      "title": "Binance Futures Will Launch USDⓈ-Margined OPGUSDT, GENIUSUSDT Perpetual Contracts (2026-04-22)",
      "url": "https://www.binance.com/en/support/announcement/...",
      "detected_at_iso": "2026-04-22T08:30:01.123456+00:00",
      "sent_time": 1770044623571,
      "sent_time_iso": "2026-04-22T08:30:01.157892+00:00",
      "coins": ["OPG", "GENIUS"]
    }
  ]
}
Query parameter Type Description
limit integer Cap the number of items returned. Default 100. Max 100.
source string Limit results to one source.

/history is rate-limited per IP. Clients that exceed the limit receive HTTP 429. The response includes a Retry-After header.

/history is a snapshot — an event appears here only after it has been broadcast on /listings. For real-time delivery, use the WebSocket.