Retrieves a paginated list of settlement reports available to the authenticated master user, with optional filters for date range and report type.
curl --request GET \
--url https://nexus.kraken.com/b2b/reports/settlement \
--header 'API-Key: <api-key>' \
--header 'API-Sign: <api-key>'{
"result": {
"reports": [
{
"id": "<string>",
"date": "2023-12-25",
"type": "trades",
"size": 123,
"name": "<string>"
}
],
"links": {
"self": "<string>",
"first": "<string>",
"last": "<string>",
"prev": "<string>",
"next": "<string>"
},
"meta": {
"total_items": 1,
"total_pages": 1,
"page_size": 1,
"page_number": 1
}
}
}Documentation Index
Fetch the complete documentation index at: https://kraken-sandbox.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
The "API-Key" header should contain your API key.
Authenticated requests should be signed with the "API-Sign" header, using a signature generated with your private key, nonce, encoded payload, and URI path.
The target version of the Embed API to use. The API version name is based on the date when the API version was released. For example, the API version 2025-04-15 was released on April 15, 2025.
2025-04-15 The inclusive start date for filtering settlement reports. Use in combination with filter[end_date] to specify a date range. Format: RFC 3339 datetime.
"2025-06-30T00:00:00.000Z"
The inclusive end date for filtering settlement reports. Use in combination with filter[start_date] to specify a date range. Format: RFC 3339 datetime.
"2025-07-01T00:00:00.000Z"
Filters the returned reports by one or more report types. If omitted, all report types are included.
trades, transfers, earn_rewards The maximum number of reports to return per page. Must be between 1 and 100.
1 <= x <= 100The page of results to retrieve. Must be 1 or greater.
x >= 1Successful response containing a list of settlement reports and pagination details.
Show child attributes
curl --request GET \
--url https://nexus.kraken.com/b2b/reports/settlement \
--header 'API-Key: <api-key>' \
--header 'API-Sign: <api-key>'{
"result": {
"reports": [
{
"id": "<string>",
"date": "2023-12-25",
"type": "trades",
"size": 123,
"name": "<string>"
}
],
"links": {
"self": "<string>",
"first": "<string>",
"last": "<string>",
"prev": "<string>",
"next": "<string>"
},
"meta": {
"total_items": 1,
"total_pages": 1,
"page_size": 1,
"page_number": 1
}
}
}