Announcing our $20m venture round co-led by cyber•Fund and Blockchain Capital. Read more.
curl --request GET \
--url https://be.onebalance.io/api/v3/status/get-tx-history \
--header 'x-api-key: <api-key>'Retrieves the transaction history for an address, including the transaction type and token details with support for multiple blockchain types including Solana.
curl --request GET \
--url https://be.onebalance.io/api/v3/status/get-tx-history \
--header 'x-api-key: <api-key>'Documentation Index
Fetch the complete documentation index at: https://docs.onebalance.io/llms.txt
Use this file to discover all available pages before exploring further.
The OneBalance API uses API keys to authenticate requests. All API requests require authentication using an API key passed in the x-api-key header:
curl -X 'GET' \
'https://be.onebalance.io/api/path-to/endpoint' \
-H 'x-api-key: ${ONEBALANCE_API_KEY}' \
...
A public API key is available for testing purposes with limited usage: 42bb629272001ee1163ca0dbbbc07bcbb0ef57a57baf16c4b1d4672db4562c11.
All API requests must be made over HTTPS. Calls made over plain HTTP will fail. API requests without authentication will also fail.
Learn how to generate API access tokens at OneBalance Docs.
The address for which to retrieve the transaction history (supports both EVM and Solana addresses)
"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
Maximum number of transactions to return
x >= 110
The continuation string for retrieving the next page of transactions
"txn_v3_00123456789abcdef"
Field to sort the transaction history by. Defaults to createdAt if not specified.
createdAt, updatedAt "createdAt"
Successfully retrieved the transaction history
Was this page helpful?