Octav - API Documentation
  • Welcome
  • Getting Started
    • API Access
    • Portfolio
    • Wallet
    • Transactions
    • Synchronization
    • Status
    • credits
  • API Models
    • Portfolio
      • AssetByProtocols
      • Chains
      • ProtocolPosition
      • Asset
      • ChainSummary
      • NFTCollection
      • NFTChain
      • NFTAsset
    • Transaction
      • Asset
      • NativeAssetFees
  • Additional Informations
    • Chains supported by Octav
    • Protocol types supported by Octav
    • Transaction type
    • Data freshness
  • Changelog
Powered by GitBook
On this page
  • Base url
  • Method
  • PATH
  • ACCESS
  • Cost per call
  • Query params
  • Response Type
  • Response Example
  1. Getting Started

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
    }
]
PreviousSynchronizationNextcredits

Last updated 13 hours ago