curl --request POST \
--url https://api.octav.fi/v1/sync-transactions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"addresses": [
"0x6426af179aabebe47666f345d69fd9079673f6cd"
]
}
'"Address is syncing"Manually trigger transaction synchronization for an address.
Cost: 1 credit + 1 credit per 250 transactions indexed
Get your API key: Dev Portal
curl --request POST \
--url https://api.octav.fi/v1/sync-transactions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"addresses": [
"0x6426af179aabebe47666f345d69fd9079673f6cd"
]
}
'"Address is syncing"Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Array of addresses to sync (currently supports 1 address)
Sync initiated successfully
The response is of type string.
"Address is syncing"
Was this page helpful?