Skip to main content

Get Futures Trade Download Link by Id(USER_DATA)

API Description#

Get futures trade download link by Id

HTTP Request#

GET /fapi/v1/trade/asyn/id

Request Weight#

5

Request Parameters#

NameTypeMandatoryDescription
downloadIdSTRINGYESget by download id api
recvWindowLONGNO
timestampLONGYES
  • Download link expiration: 24h

Response Example#

Response:

{    "downloadId":"545923594199212032",    "status":"completed",     // Enum:completed,processing    "url":"www.binance.com",  // The link is mapped to download id    "notified":true,          // ignore    "expirationTimestamp":1645009771000,  // The link would expire after this timestamp    "isExpired":null,}

OR (Response when server is processing)

{    "downloadId":"545923594199212032",    "status":"processing",    "url":"",     "notified":false,    "expirationTimestamp":-1    "isExpired":null,    }