List syncs
curl --request GET \
--url https://api.redbark.com/v2/syncs \
--header 'Authorization: Bearer <token>' \
--header 'Redbark-Version: <api-key>'const options = {
method: 'GET',
headers: {Authorization: 'Bearer <token>', 'Redbark-Version': '<api-key>'}
};
fetch('https://api.redbark.com/v2/syncs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.redbark.com/v2/syncs"
headers = {
"Authorization": "Bearer <token>",
"Redbark-Version": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text){
"object": "list",
"data": [
{
"id": "sync_8Pq2Rs4tUv6wXy8zAb1cDe",
"object": "sync",
"name": "<string>",
"type": "transactions",
"enabled": true,
"status": "idle",
"attention": {
"code": "<string>",
"message": "<string>"
},
"destination": {
"id": "<string>",
"type": "<string>",
"name": "<string>",
"mapping_mode": "bulk"
},
"accounts": [
"<string>"
],
"account_mappings": [
{
"account": "<string>",
"resource": "<string>",
"resource_name": "<string>"
}
],
"options": {
"data_from": "<string>",
"include_pending": true,
"mask_account_numbers": true,
"custom_categories": true,
"include_balances_tab": true
},
"rulesets": [
"<string>"
],
"latest_run": {
"id": "run_4Kt7Lm2nPq9rSv1wXy3zAb",
"object": "sync_run",
"sync": "<string>",
"destination": "<string>",
"status": "queued",
"trigger": "schedule",
"counts": {
"processed": 123,
"added": 123,
"updated": 123,
"rejected": 123,
"skipped_by_rules": 123
},
"failure": {
"code": "<string>",
"message": "<string>",
"retryable": true
},
"started_at": "2026-08-21T09:30:00.000Z",
"completed_at": "2026-08-21T09:30:00.000Z",
"duration_ms": 123,
"livemode": true,
"created": "2026-08-21T09:30:00.000Z"
},
"last_synced_at": "2026-08-21T09:30:00.000Z",
"metadata": {},
"livemode": true,
"created": "2026-08-21T09:30:00.000Z",
"updated": "2026-08-21T09:30:00.000Z"
}
],
"next_page_url": "<string>",
"previous_page_url": "<string>"
}{
"error": {
"type": "invalid_request_error",
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"type": "invalid_request_error",
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"type": "invalid_request_error",
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"type": "invalid_request_error",
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"type": "invalid_request_error",
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"type": "invalid_request_error",
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}Syncs
List syncs
Syncs on the account, newest first. Filter by status (repeat with status[]= for several), enabled or destination; pass include[]=latest_run to embed each sync’s most recent run.
GET
/
syncs
List syncs
curl --request GET \
--url https://api.redbark.com/v2/syncs \
--header 'Authorization: Bearer <token>' \
--header 'Redbark-Version: <api-key>'const options = {
method: 'GET',
headers: {Authorization: 'Bearer <token>', 'Redbark-Version': '<api-key>'}
};
fetch('https://api.redbark.com/v2/syncs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.redbark.com/v2/syncs"
headers = {
"Authorization": "Bearer <token>",
"Redbark-Version": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text){
"object": "list",
"data": [
{
"id": "sync_8Pq2Rs4tUv6wXy8zAb1cDe",
"object": "sync",
"name": "<string>",
"type": "transactions",
"enabled": true,
"status": "idle",
"attention": {
"code": "<string>",
"message": "<string>"
},
"destination": {
"id": "<string>",
"type": "<string>",
"name": "<string>",
"mapping_mode": "bulk"
},
"accounts": [
"<string>"
],
"account_mappings": [
{
"account": "<string>",
"resource": "<string>",
"resource_name": "<string>"
}
],
"options": {
"data_from": "<string>",
"include_pending": true,
"mask_account_numbers": true,
"custom_categories": true,
"include_balances_tab": true
},
"rulesets": [
"<string>"
],
"latest_run": {
"id": "run_4Kt7Lm2nPq9rSv1wXy3zAb",
"object": "sync_run",
"sync": "<string>",
"destination": "<string>",
"status": "queued",
"trigger": "schedule",
"counts": {
"processed": 123,
"added": 123,
"updated": 123,
"rejected": 123,
"skipped_by_rules": 123
},
"failure": {
"code": "<string>",
"message": "<string>",
"retryable": true
},
"started_at": "2026-08-21T09:30:00.000Z",
"completed_at": "2026-08-21T09:30:00.000Z",
"duration_ms": 123,
"livemode": true,
"created": "2026-08-21T09:30:00.000Z"
},
"last_synced_at": "2026-08-21T09:30:00.000Z",
"metadata": {},
"livemode": true,
"created": "2026-08-21T09:30:00.000Z",
"updated": "2026-08-21T09:30:00.000Z"
}
],
"next_page_url": "<string>",
"previous_page_url": "<string>"
}{
"error": {
"type": "invalid_request_error",
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"type": "invalid_request_error",
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"type": "invalid_request_error",
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"type": "invalid_request_error",
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"type": "invalid_request_error",
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"type": "invalid_request_error",
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}Authorizations
Authorization: Bearer rbk_live_...
The API release your integration is built against, e.g. 2026-10-01.wattle. Required on every request.
Query Parameters
1 to 100, default 20. Ignored when page is set.
Opaque token from next_page_url / previous_page_url.
Related objects to expand inline. Repeat the parameter for more than one; see each resource for its includes.
Filter by computed status; repeat with status[]= for several
Filter to enabled or disabled syncs
Available options:
true, false Filter to syncs writing to this destination
⌘I