Skip to main content
GET
/
wallet
/
status
Get the syncing status of the provided wallet address with the blockchain network.
curl --request GET \
  --url https://openapiv1.coinstats.app/wallet/status \
  --header 'X-API-KEY: <api-key>'
{
  "status": "synced"
}
3 credits per request

Authorizations

X-API-KEY
string
header
required

API key needed to access the endpoints. Example: 'demo-api-key'

Query Parameters

address
string
required

The blockchain wallet address to query balances for

Example:

"0x742d35Cc6634C0532925a3b844Bc454e4438f44e"

connectionId
string
required

The blockchain network identifier to query.

Example:

"ethereum"

Response

Get wallet sync status

status
enum<string>
required

The current synchronization status of the portfolio

Available options:
syncing,
synced
Example:

"synced"

I