Skip to main content

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

NameTypeMandatoryDescription
recvWindowLONGNO
timestampLONGYES

Request Headers

NameTypeMandatoryDescription
langSTRINGNOLocale 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

NameTypeDescription
activityIdLONGActivity ID
activityTypeSTRINGActivity category: AIRDROP, LEADERBOARD, or EVENT
titleSTRINGActivity title, localized via the lang header
descriptionSTRINGActivity description, localized via the lang header
rewardPoolInUsdSTRINGUSD value of the reward pool
rewardTokenARRAY[STRING]Reward token symbols (e.g. ["BNB"]); may be empty
redirectUrlSTRINGWeb URL to the activity landing page
startTimeLONGActivity start time in milliseconds; may be null for activities that are immediately effective
endTimeLONGActivity end time in milliseconds; may be null for activities with no fixed end
  • If the user has no eligible activities, activities is returned as an empty array ({"activities": []}).