Skip to main content
GET
/
trade
/
v1
/
exports
/
{id}
Get export with a download link
curl --request GET \
  --url https://api.staging.layer1.com/trade/v1/exports/{id}
{
  "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "status": "PROCESSING",
  "type": "transaction",
  "inputParameters": {
    "from": "2020-01-01T00:00:00Z",
    "to": "2020-01-31T23:59:59Z"
  },
  "filename": "transaction_2024_04_19T11_20_11_901Z.csv",
  "url": "<string>",
  "createdAt": "2020-01-01T00:00:00Z",
  "updatedAt": "2020-01-02T12:34:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://exness-preview.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

id
string<uuid>
required

Unique identifier of the export to retrieve.

Response

Export details

id
string<uuid>

Unique identifier of the export

Example:

"3fa85f64-5717-4562-b3fc-2c963f66afa6"

status
enum<string>

Current status of the export job

Available options:
PROCESSING,
COMPLETED,
FAILED
Example:

"PROCESSING"

type
string

Export type name

Example:

"transaction"

inputParameters
object

JSON string containing input parameters for the job

Example:
{
"from": "2020-01-01T00:00:00Z",
"to": "2020-01-31T23:59:59Z"
}
filename
string

Filename of the resulting export

Example:

"transaction_2024_04_19T11_20_11_901Z.csv"

url
string

URL for file download

createdAt
string<date-time>

Timestamp when the export was created

Example:

"2020-01-01T00:00:00Z"

updatedAt
string<date-time>

Timestamp when the export was last updated

Example:

"2020-01-02T12:34:56Z"