v1
latestOpenAPI 3.0.32026-07-263871106.2 KBPositions
Get the historical events for a position
This endpoint returns the historical actions for a position.
Arguments
- address - The address of the position
Returns
- 200 - The historical actions for the position
get/positions/{address}/historical
Path parameters
addressstring required
Query parameters
event_type'add' | 'remove' | 'claim_fee' | 'claim_reward'
Filter by event type (add, remove, claim_fee, claim_reward). If not provided, returns all event types.
order_direction'asc' | 'desc'
Order direction for sorting events by block time.
- asc: Oldest events first
- desc: Most recent events first (default)
Response
Example response
{
"events": [
{
"createdAt": "2024-01-15T12:00:00Z"
}
]
}