Get Yield Arena Activities (USER_DATA)
API Description
Get the list of Earn Yield Arena giveaway activities currently available to the user.
HTTP Request
GET /sapi/v1/earn/arena/activities
Request Weight(IP)
150
Request Parameters
| Name | Type | Mandatory | Description |
|---|---|---|---|
| recvWindow | LONG | NO | |
| timestamp | LONG | YES |
Request Headers
| Name | Type | Mandatory | Description |
|---|---|---|---|
| lang | STRING | NO | Locale tag for title and description (e.g. en, zh-CN, pt-BR). Default: en. If the value is missing, malformed, or has no translation configured, content is returned in en. |
Supported locales:
en,en-GB,en-AU,cn,zh,zh-CN,tw,zh-TW,zh-HK,ja,ja-JP,ru,ru-RU,es,es-ES,es-LA,pt,pt-BR,pt-PT,fr,fr-FR,de,de-DE,it,it-IT,id,id-ID,vi,vi-VN,ar,ar-SA,pl,pl-PL,uk,uk-UA,cs,cs-CZ,ro,ro-RO,sv,sv-SE,bg,bg-BG,da,da-DK,el,el-GR,hu,hu-HU,lv,lv-LV,sk,sk-SK,sl,sl-SI.
Response Example
{
"activities": [
{
"activityId": 10001,
"activityType": "AIRDROP", // AIRDROP, LEADERBOARD, EVENT
"title": "Hold FDUSD & Earn BNB Airdrop",
"description": "Subscribe to FDUSD Flexible and earn bonus BNB airdrop.",
"rewardPoolInUsd": "50000",
"rewardToken": ["BNB"], // may be empty
"redirectUrl": "https://www.binance.com/en/earn/arena/airdrop-123",
"startTime": 1713052800000, // may be null
"endTime": 1713657600000 // may be null
}
]
}
Response Fields
| Name | Type | Description |
|---|---|---|
| activityId | LONG | Activity ID |
| activityType | STRING | Activity category: AIRDROP, LEADERBOARD, or EVENT |
| title | STRING | Activity title, localized via the lang header |
| description | STRING | Activity description, localized via the lang header |
| rewardPoolInUsd | STRING | USD value of the reward pool |
| rewardToken | ARRAY[STRING] | Reward token symbols (e.g. ["BNB"]); may be empty |
| redirectUrl | STRING | Web URL to the activity landing page |
| startTime | LONG | Activity start time in milliseconds; may be null for activities that are immediately effective |
| endTime | LONG | Activity end time in milliseconds; may be null for activities with no fixed end |
- If the user has no eligible activities,
activitiesis returned as an empty array ({"activities": []}).