Use this endpoint to retrieve the full sponsorship history for a registered wallet address. Results are returned in pages using cursor-based pagination. Each page includes a cursor value you can pass to the next request to retrieve the following page.Documentation Index
Fetch the complete documentation index at: https://docs.arcpass.vibepas.xyz/llms.txt
Use this file to discover all available pages before exploring further.
Request
GET /wallets/:address/history
The Ethereum address whose history you want to retrieve. Must match
^0x[0-9a-fA-F]{40}$ and be at most 42 characters.UUID of the last item from the previous page. Omit this parameter to start from the beginning of the history. Pass the cursor value returned in the previous response to fetch the next page.
Number of results to return per page. Accepts integers between
1 and 100 inclusive. Defaults to 50 if not provided.Response
The response is a paginated object containing a list of sponsorship request records and a cursor for fetching the next page.Array of sponsorship request records for this wallet. Each record includes the following fields:
UUID cursor to pass as the
cursor query parameter to fetch the next page of results. null if there are no more pages.If the wallet address is not registered in ArcPass, this endpoint returns
404 Not Found. Register the wallet first using POST /wallets/register before querying its history.Errors
| Status | Cause |
|---|---|
400 | The :address path parameter does not match the required hex pattern. |
404 | No wallet with this address is registered in ArcPass. |
422 | The cursor is not a valid UUID, or limit is outside the 1–100 range. |
200