Skip to main content

Get Announcement

HTTP Request

GET /v5/announcements/index

Request Parameters

ParameterRequiredTypeComments
localetruestringLanguage symbol
typefalsestringAnnouncement type
tagfalsestringAnnouncement tag
pagefalseintegerPage number. Default: 1
limitfalseintegerLimit for data size per page. Default: 20

Response Parameters

ParameterTypeComments
totalintegerTotal records
listarrayObject
> titlestringAnnouncement title
> descriptionstringAnnouncement description
> typeObject
>> titlestringThe title of announcement type
>> keystringThe key of announcement type
> tagsarray<string>The tag of announcement
> urlstringAnnouncement url
> dateTimestampnumberTimestamp that author fills
> startDataTimestampnumberThe start timestamp (ms) of the event, only valid when list.type.key == "latest_activities"
> endDataTimestampnumberThe end timestamp (ms) of the event, only valid when list.type.key == "latest_activities"
> publishTimenumberThe published timestamp for the announcement

Request Example

GET /v5/announcements/index?locale=en-US&limit=1 HTTP/1.1
Host: api.bybit.com

Response Example

{
"retCode": 0,
"retMsg": "OK",
"result": {
"total": 735,
"list": [
{
"title": "New Listing: Arbitrum (ARB) — Deposit, Trade and Stake ARB to Share a 400,000 USDT Prize Pool!",
"description": "Bybit is excited to announce the listing of ARB on our trading platform!",
"type": {
"title": "New Listings",
"key": "new_crypto"
},
"tags": [
"Spot",
"Spot Listings"
],
"url": "https://announcements.bybit.com/en-US/article/new-listing-arbitrum-arb-deposit-trade-and-stake-arb-to-share-a-400-000-usdt-prize-pool--bltf662314c211a8616/",
"dateTimestamp": 1679045608000,
"startDateTimestamp": 1679045608000,
"endDateTimestamp": 1679045608000
}
]
},
"retExtInfo": {},
"time": 1679415136117
}