Syncs
Sync status
Get the status of specified sync(s) (for a given connection or all applicable connections if no connection is specified)
GET
/
sync
/
status
Authorization
Query
curl --request GET \
--url https://api.nango.dev/sync/status
{
"syncs": [
{
"finishedAt": "<string>",
"id": "<string>",
"latestResult": {},
"name": "<string>",
"nextScheduledSyncAt": "<string>",
"status": "RUNNING",
"type": "INCREMENTAL"
}
]
}
Query Parameters
provider_config_key
string
requiredThe ID of the integration you established within Nango
syncs
string
requiredThe name of the syncs you want to fetch a status for. Pass in "*" to return all syncs per the integration
connection_id
string
The ID of the connection. If omitted, all connections will be surfaced.
Response
200 - application/json
syncs
object[]
curl --request GET \
--url https://api.nango.dev/sync/status
{
"syncs": [
{
"finishedAt": "<string>",
"id": "<string>",
"latestResult": {},
"name": "<string>",
"nextScheduledSyncAt": "<string>",
"status": "RUNNING",
"type": "INCREMENTAL"
}
]
}