Skip to main content

Get Daily Yield Records

HTTP Request

GET/v5/earn/token/yield

Request Parameters

ParameterRequiredTypeComments
cointruestringToken coin. Currently only BYUSDT is supported
startTimefalseintegerStart timestamp in seconds
endTimefalseintegerEnd timestamp in seconds
cursorfalsestringPagination cursor. Use nextPageCursor from the previous response
limitfalseintegerNumber of items per page. Default: 5

Response Parameters

ParameterTypeComments
listarrayDaily yield record list
> yieldstringBase yield amount
> bonusYieldstringBonus yield amount
> statusstringStatus: Success, Processing
> createdTimestringRecord time, unix timestamp in seconds
nextPageCursorstringCursor for the next page. Empty string means no more data

Request Example

GET /v5/earn/token/yield?coin=BYUSDT&limit=5 HTTP/1.1
Host: api.bybit.com
X-BAPI-SIGN: XXXXX
X-BAPI-API-KEY: xxxxxxxxxxxxxxxxxx
X-BAPI-TIMESTAMP: 1741651200000
X-BAPI-RECV-WINDOW: 5000

Response Example

{
"retCode": 0,
"retMsg": "success",
"result": {
"list": [
{
"yield": "0.50",
"bonusYield": "0.20",
"status": "Success",
"createdTime": "1710691200"
}
],
"nextPageCursor": "eyJpZCI6MTIzNDU2fQ=="
},
"retExtInfo": {},
"time": 1741651200000
}