Skip to main content

Launch Futures

Curated list of new USDⓈ-M futures listings. The backend pulls Binance's announcements catalog (bapi/apex/v1/public/apex/cms/article/list/query) and returns only articles whose title contains Launch USDⓈ-Margined.

Endpoint

GET /launchfutures

Authentication: Public.

Query parameters

NameTypeRequiredDefaultNotes
pageNointegerNo1Page number, must be ≥ 1.
pageSizeintegerNo101–50.

Response — 200 OK

Array of article objects (Binance shape, filtered):

[
{
"id": 12345,
"code": "abcd-1234",
"title": "Binance Will Launch USDⓈ-Margined EXAMPLEUSDT Perpetual Contract...",
"type": 1,
"releaseDate": 1745920800000
}
]

If no articles match the keyword on the requested page, the array is empty.

Errors

HTTPCause
422pageNo < 1 or pageSize out of range.
502Upstream Binance request failed.

Example

curl -s "https://api.pipai.org/launchfutures?pageSize=20"