Skip to main content
GET
Get Activity
Query non-trade wallet activity. Includes SPLIT (deposit collateral to create YES+NO pairs), MERGE (combine pairs back to collateral), REDEEM (redeem winning tokens after resolution), and CONVERT (NegRisk position conversions - sell NO tokens on a subset of conditions, buy YES tokens on the remainder).
Free & Unlimited. This endpoint does not count toward your monthly usage limits on any plan.
CONVERT rows behave differently. Conversions are a market-level operation, not a per-outcome one. On CONVERT rows:
  • condition_id is an empty string and market_id is null - filtering by either will not match.
  • The parent identifier lives in the new neg_risk_market_id field (32-byte hex, matches Gamma’s Event.negRiskMarketID).
  • index_set carries the NegRisk indexSet bitmask (decimal string) of which outcomes were involved.
  • market_slug/title may be empty.
For SPLIT/MERGE/REDEEM, market_id and condition_id are populated as before; neg_risk_market_id and index_set are null.

Authorizations

x-api-key
string
header
required

Query Parameters

wallet
string
required

Wallet address

start_time
integer | null

Unix timestamp (seconds) for start

end_time
integer | null

Unix timestamp (seconds) for end

market_slug
string | null

Filter by market slug

condition_id
string | null

Filter by condition ID

sort_by
enum<string>
default:timestamp

Sort by: timestamp or type

Available options:
timestamp,
type
limit
integer
default:100

Number of activities to return (1-500)

Required range: 1 <= x <= 500
order
enum<string>
default:desc

Sort order: asc or desc

Available options:
asc,
desc
pagination_key
string | null

Pagination key for cursor-based pagination

Response

Successful Response

Activity endpoint response.

activities
Activity · object[]
required
pagination
CursorPagination · object
required

Cursor-based pagination for endpoints that don't support offset.