Skip to main content
GET
/
margin
/
fills
Get Fills
curl --request GET \
  --url https://external-api.kalshi.com/trade-api/v2/margin/fills \
  --header 'KALSHI-ACCESS-KEY: <api-key>' \
  --header 'KALSHI-ACCESS-SIGNATURE: <api-key>' \
  --header 'KALSHI-ACCESS-TIMESTAMP: <api-key>'
{
  "fills": [
    {
      "fill_id": "<string>",
      "order_id": "<string>",
      "is_taker": true,
      "count": "10.00",
      "created_time": "2023-11-07T05:31:56Z",
      "ticker": "<string>",
      "price": "<string>",
      "entry_price": "<string>",
      "fees": "<string>",
      "realized_pnl": "<string>"
    }
  ],
  "cursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.kalshi.com/llms.txt

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

Authorizations

KALSHI-ACCESS-KEY
string
header
required

Your API key ID

KALSHI-ACCESS-SIGNATURE
string
header
required

RSA-PSS signature of the request

KALSHI-ACCESS-TIMESTAMP
string
header
required

Request timestamp in milliseconds

Query Parameters

subaccount
integer
default:0

Subaccount number (0 for primary, 1-32 for subaccounts)

limit
integer
default:100

Number of results per page

Required range: 1 <= x <= 1000
cursor
string

Pagination cursor from a previous response

min_ts
integer<int64>

Filter fills after this Unix timestamp

max_ts
integer<int64>

Filter fills before this Unix timestamp

Response

Fills retrieved successfully

fills
object[]
required
cursor
string
required