Schedule
This endpoint retrieves the allocation schedules for a specific allocation ID, including release, unlock, and vesting schedules. The results are paginated, and a cursor can be used to fetch subsequent pages.
Example request:
magna_project_api_token
(required) - replace with your actual Magna API tokenyour_allocation_id
(required) - replace with your allocation id which you want to claim tokenscursor
(string, optional) - An ISO 8601 formatted timestamp to fetch results after this date.limit
(number, optional) - The maximum number of items to return. Defaults to 100, with a maximum limit of 100.types
(string array, optional) - The allocation schedule types to return. Must be any combination ofvested
,unlocked
, and/orreleasable
. Defaults to all three.
Example Response:
Notes
The
cursor
in the response can be used in the next request to fetch the subsequent set of results.The
items
array contains events with their respective timestamps, amounts, and types (unlocked
,releasable
,vested
).
Last updated
Was this helpful?