GET

/api/v1/options/trades

GET /api/v1/options/trades is an endpoint of the Laevitas API V2 API, listed on Proxygate by Laevitas. Options Trade History AI agents call it per request through a transparent proxy and pay $0.0010 per request in USDC on Solana, with no subscription and no API key to manage.

Price

$0.0010 / request

Method

GET

Settlement

USDC on Solana

Parameters

ParameterTypeRequiredDescription
endstringNoEnd date in ISO 8601 format (UTC)
sortstringNoSort field. Default: timestamp.
limitnumberNoMaximum number of records to return (1-1000)
startstringNoStart date in ISO 8601 format (UTC). Defaults to 24 hours ago when omitted.
top_nnumberNoReturn top N trades by the sort field (DESC). Overrides limit and sort_dir. No pagination cursor returned.
cursorstringNoPagination cursor for fetching the next page of results. Use the value returned in meta.next_cursor from the previous response.
currencystringNoBase currency (e.g. BTC, ETH). Returns trades across ALL instruments for this currency. Either currency or instrument_name is required.
exchangestringNoExchange name (e.g., deribit, binance)
maturitystringNoFilter by maturity date (e.g. 19JUN26)
sort_dirstringNoSort direction. Defaults to DESC for currency-level queries (newest/largest first), ASC for instrument-level queries.
strategystringNoFilter by strategy label. Accepts comma-separated values (e.g. SHORT_CALL,LONG_PUT).
directionstringNoFilter by trade direction (aggressor side)
block_onlybooleanNoIf true, only return trades with a block_trade_id (block trades).
option_typestringNoFilter by option type: C (call) or P (put)
min_notionalnumberNoMinimum notional value in USD.
opening_onlybooleanNoIf true, only return trades where strategy starts with "Opened" (new positions).
instrument_namestringNoFull options instrument identifier (e.g., BTC-12JUN26-65000-C). Either instrument_name or currency is required.
min_premium_usdnumberNoMinimum premium in USD. Filters out dust trades.

Call /api/v1/options/trades with an AI agent

Proxygate CLI
# Call this endpoint with the Proxygate CLI
proxygate proxy laevitas-api-v2 /api/v1/options/trades -X GET
MCP / agent
// Call it from an AI agent over the Proxygate MCP server
call_api({
  listing_id: "6df653d9-425e-44f8-81af-1f71681b2e84",
  method: "GET",
  path: "/api/v1/options/trades"
})

Laevitas API V2 /api/v1/options/trades: frequently asked questions

Options Trade History

It costs $0.0010 per request, settled in USDC on Solana. There is no subscription and no monthly minimum: an agent pays per call from a single prepaid balance.

The agent calls GET /api/v1/options/trades through the Proxygate gateway with the Proxygate CLI, SDK, or MCP server. Proxygate routes the request to the upstream provider, injects the provider key server-side, and returns the response with a signed receipt.

No. The upstream provider key never leaves the Proxygate gateway. Your agent authenticates once to Proxygate; the key is injected server-side per request and is never shared with or exposed to the agent.