Skip to main content
GET
Get History
CLOB fills live here. Limitless does not expose a dedicated fills endpoint. This endpoint returns every CLOB fill for the authenticated account as a history entry. Use the strategy field to distinguish fill types:
  • Limit Buy / Limit Sell — CLOB maker fills (a resting limit order of yours was hit).
  • Market Buy / Market Sell — CLOB taker fills (your order crossed the book on submission).
  • Buy / Sell — AMM trades (also available via Get Trades).
  • Split / Merge — position split/merge.
  • Convert — NegRisk conversion.
  • Claim — winnings redemption.
Each entry includes outcomeTokenPrice (effective fill price), outcomeTokenAmounts, collateralAmount, blockTimestamp, and transactionHash (present once settled on-chain). Paginate with cursor and limit.
Deposits and withdrawals are not included. This endpoint covers on-platform activity only (fills, splits, merges, conversions, and claims). Raw USDC deposits and withdrawal transfers are not returned here and the API does not expose a dedicated deposit/withdrawal history endpoint. POST /portfolio/withdraw executes a withdrawal but does not return past withdrawals. To reconstruct transfers, query the on-chain USDC transfers to and from your account on Base.
No historical orderbook. The API does not expose historical orderbook snapshots. Get Orderbook returns only the current live snapshot. To reconstruct past activity for a market, combine your own fill history from this endpoint with Get Historical Prices and Get Feed Events.

Authorizations

Authorization
string
header
required

JWT token for API access (alternative to cookie auth)

Query Parameters

cursor
string

Opaque cursor for cursor-based pagination. Omit for first page.

market
string

Market slug. When set, only history for that market is returned. Cursors are only valid together with the same market value they were issued for.

limit
number
required

Number of items per page

Example:

20

Response

Paginated history of all user actions

data
object[]
required

List of history entries

totalCount
number | null
required

Total count of entries (null in cursor mode)

Example:

8

nextCursor
string | null

Opaque cursor for the next page (null when no more pages)