Skip to main content
GET
/
exchange
/
status
Get syncing status of the exchange portfolio, indicating whether the portfolio is fully synced with the exchange or still in progress.
curl --request GET \
  --url https://openapiv1.coinstats.app/exchange/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

portfolioId
string
required

The identifier of portfolio, which you received from Exchange Balance call response.

Example:

"618f0bb0f2cf07dce25bc5007750bf1646825509bb63519bd491ab6a56daa419"

Response

Get exchange sync status

status
enum<string>
required

The current synchronization status of the portfolio

Available options:
syncing,
synced
Example:

"synced"

I