Skip to main content
GET
/
market
/
{tradeable}
/
price
Get public mark price events
curl --request GET \
  --url https://futures.kraken.com/api/history/v3/market/{tradeable}/price
{
  "len": 123,
  "elements": [
    {
      "uid": "<string>",
      "timestamp": 1604937694000,
      "event": "<unknown>"
    }
  ],
  "continuationToken": "aSDinaTvuI8gbWludGxpZnk="
}

Path Parameters

tradeable
string
required

Query Parameters

since
integer<timestamp-milliseconds>

Timestamp in milliseconds.

Example:

1604937694000

before
integer<timestamp-milliseconds>

Timestamp in milliseconds.

Example:

1604937694000

sort
enum<string>
default:desc

Determines the order of events in response(s).

  • asc = chronological
  • desc = reverse-chronological
Available options:
asc,
desc
continuation_token
file

Opaque token from the Next-Continuation-Token header used to continue listing events. The sort parameter must be the same as in the previous request to continue listing in the same direction.

count
integer<int64>

The maximum number of results to return. The upper bound is determined by a global limit.

Required range: x >= 1

Response

200 - application/json
len
integer<uint64>
required
elements
object[]
required
continuationToken
file

Opaque token to pass to the next request to continue listing events. The sort parameter must be the same as in the previous request to continue listing in the same direction.