Skip to main content
POST
Get OTC Spot Trade History

Authorizations

API-Key
string
header
required

The "API-Key" header should contain your API key.

API-Sign
string
header
required

Authenticated requests should be signed with the "API-Sign" header, using a signature generated with your private key, nonce, encoded payload, and URI path.

Body

application/json

Request body for retrieving the API key owner's OTC spot trades. start_date and end_date are Unix epoch seconds. end_date must be greater than start_date.

nonce
integer<int64>
required

Nonce used in construction of API-Sign header

start_date
integer<int64>
required

Inclusive start of the trade window, Unix epoch seconds.

Example:

1785542400

end_date
integer<int64>
required

Inclusive end of the trade window, Unix epoch seconds. Must be strictly after start_date.

Example:

1788220800

offset
integer<int32>
default:0

0-based index of the first result to return.

Required range: x >= 0
Example:

0

limit
integer<int32>
default:100

Maximum number of results to return. Defaults to 100 when omitted or set to 0. Values above 1000 are capped to 1000.

Required range: 0 <= x <= 1000
Example:

100

Response

OTC spot trades retrieved.

Response schema for retrieving OTC spot trade history. The result contains an array of trades, newest first.

error
string[]
required

Kraken API error

result
Spot trades · object[]