cURL
Kalshi Market Data
Get Orders
GET
cURL
Documentation Index
Fetch the complete documentation index at: https://docs.bison.markets/llms.txt
Use this file to discover all available pages before exploring further.
Overview
To avoid ambiguity, we denote the smallest possible multiple of USDC (0.000001 USDC) as one
uusdc,
which stands for µUSDC (micro-USDC), and denote the smallest possible multiple of a contract (0.01 contract)
as one ccontract (centicontract).User-facing USDC balances are specified as fixed-point strings (e.g. "1.2625" for USDC). Contract quantities
in the API and SDK are specified as integer ccontracts strings (e.g. "1050" for 10.50 contracts at precision 2).Filtering by Status
Thestatus parameter accepts:
pending- Orders waiting to be filledfilled- Fully executed orderscancelled- Cancelled ordersclosed- Convenience filter for bothfilledandcancelledorders (useful for order history)
Pagination
This endpoint uses cursor-based pagination for efficient traversal of large datasets:- Make an initial request with your desired
limit(default: 50, max: 200) - Check
pagination.hasMoreto see if more results exist - Use
pagination.nextCursorin subsequent requests to fetch the next page
Example: Fetching Order History
Example: Pending Orders
Query Parameters
Ethereum address of the user
Pattern:
^0x[a-fA-F0-9]{40}$Example:
"0x1234567890123456789012345678901234567890"
Filter by status. "closed" matches filled OR cancelled.
Available options:
pending, filled, cancelled, closed Filter by market ticker
Filter by order action
Available options:
buy, sell Filter by contract side
Available options:
yes, no Orders created after this timestamp (ms)
Orders created before this timestamp (ms)
Field to sort by (default: createdAt)
Available options:
createdAt, updatedAt Sort direction (default: desc)
Available options:
asc, desc Max orders per page (default: 50, max: 200)
Required range:
1 <= x <= 200Pagination cursor from previous response