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
| Name | Type | Required | Default | Notes |
|---|---|---|---|---|
pageNo | integer | No | 1 | Page number, must be ≥ 1. |
pageSize | integer | No | 10 | 1–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
| HTTP | Cause |
|---|---|
422 | pageNo < 1 or pageSize out of range. |
502 | Upstream Binance request failed. |
Example
curl -s "https://api.pipai.org/launchfutures?pageSize=20"