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://octav-api-dev.hasura.app/

Method

GET

PATH

/api/rest/status

ACCESS

Restricted with an key, see API Access

Query params

Param

Description

Type

addresses *

A comma-separated list of user addresses.

string

Response Type

Key
Type
Description

address

string

The address.

lastSync

string

The date of the address was synced the last time

syncInProgress

boolean

If we're curentlty syncing the address (fetching the last data)

Response Example

{
 "address": "0xef7f2e81ea14538858d962df34eb1bfda83da395",
 "lastSync": "2025-01-20T19:35:31.388Z",
 "syncInProgress": true
}

Last updated