Skip to main content
POST
/
sync-transactions
Sync Transactions
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"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
addresses
string[]
required

Array of addresses to sync (currently supports 1 address)

Response

200 - text/plain

Sync initiated successfully

The response is of type string.

Example:

"Address is syncing"