Hi. First post here. I’m trying to download futures trade history using these endpoints:
Get Download Id For Futures Trade History (USER_DATA)
Get Futures Trade Download Link by Id(USER_DATA)
But I don’t understand how the second of these endpoints works. The sample response is shown as:
{
“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,
}
It doesn’t give a complete URL. What URL should I download from? And what sort of download will it be. A multipart download of a file? Where can I find the specifics?
Thanks for any help.