Skip to main content
GET
/
portfolio
/
trades
Get Trades
curl --request GET \
  --url https://api.limitless.exchange/portfolio/trades \
  --header 'X-API-Key: <api-key>'
[
  {
    "blockTimestamp": "2025-09-01T11:30:31.000Z",
    "market": {
      "conditionId": "0x812f578437dc...",
      "expirationDate": "Sep 1, 2025",
      "id": "0x76d3e2098Be6...",
      "slug": "doge-above-021-sep-1",
      "title": "$DOGE above $0.21652 on Sep 1?"
    },
    "outcomeIndex": 0,
    "outcomeTokenAmounts": [
      "5000000",
      "0"
    ],
    "outcomeTokenNetCost": "4950000",
    "transactionHash": "0xabc123...",
    "collateralAmount": "5000000",
    "outcomeTokenAmount": "10000000",
    "outcomeTokenPrice": "0.50",
    "strategy": "Buy"
  }
]

Authorizations

X-API-Key
string
header
required

API key for programmatic access. Generate at limitless.exchange -> profile menu -> Api keys.

Response

List of user trades with details

blockTimestamp
string
required

Timestamp of the block containing the trade

Example:

"2025-09-01T11:30:31.000Z"

market
object
required

Market details for the trade

outcomeIndex
number
required

Index of the outcome traded (0 = YES, 1 = NO)

Example:

0

outcomeTokenAmounts
string[]
required

Collateral per outcome token

Example:
["5000000", "0"]
outcomeTokenNetCost
string
required

Net cost of the outcome tokens

Example:

"4950000"

transactionHash
string
required

On-chain transaction hash

Example:

"0xabc123..."

collateralAmount
string

Collateral amount traded (in token decimals)

Example:

"5000000"

outcomeTokenAmount
string

Amount of outcome tokens traded

Example:

"10000000"

outcomeTokenPrice
string

Price of the outcome token at trade time

Example:

"0.50"

strategy
enum<string>

Trade direction

Available options:
Buy,
Sell
Example:

"Buy"