Status

The Status endpoint allows you to get information on the last time an address was synced (how fresh is the data).

Base url

https://api.octav.fi

Method

GET

PATH

/v1/status

ACCESS

Restricted with an key, see API Access

Cost per call

0 credit

Query params

Param

Description

Type

addresses *

A comma-separated list of user addresses.

string

Response Type

Key
Type
Description

address

string

The address.

portfolioLastSync

string

Date of last address portfolio synchronization

transactionsLastSync

string

Date of last address transactions synchronization

syncInProgress

boolean

If the transactions are syncing

Response Example

[
    {
        "address": "0x6426af179aabebe47666f345d69fd9079673f6cd",
        "portfolioLastSync": "2025-05-08T14:43:12.020Z",
        "transactionsLastSync": "2025-05-08T14:38:15.920Z",
        "syncInProgress": false
    }
]

Last updated