List connections
curl --request GET \
--url https://api.redbark.com/v2/connections \
--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/connections', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.redbark.com/v2/connections"
headers = {
"Authorization": "Bearer <token>",
"Redbark-Version": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text){
"object": "list",
"data": [
{
"id": "conn_2Bc4De6fGh8jKl0mNp3qRs",
"object": "connection",
"provider": "fiskil",
"category": "banking",
"institution": {
"id": "inst_fk_anz",
"name": "<string>",
"logo": "<string>"
},
"status": "pending",
"consent": {
"id": "<string>",
"status": "<string>",
"expires_at": "2026-08-21T09:30:00.000Z"
},
"accounts": [
{
"id": "acct_9Lk2Mn4pQr6sTu8vWx1yZb",
"object": "account_item",
"connection": "<string>",
"provider": "<string>",
"category": "banking",
"name": "<string>",
"type": "<string>",
"institution": {
"id": "inst_fk_anz",
"name": "<string>",
"logo": "<string>"
},
"account_number": "<string>",
"currency": "<string>",
"status": "<string>",
"last_updated_at": "2026-08-21T09:30:00.000Z",
"livemode": true,
"created": "2026-08-21T09:30:00.000Z",
"updated": "2026-08-21T09:30:00.000Z"
}
],
"account_count": 123,
"last_refreshed_at": "2026-08-21T09:30:00.000Z",
"ready_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>"
}
}Connections
List connections
Bank and brokerage connections on the account, newest first. Filter by status (repeat with status[]= for several) or provider.
GET
/
connections
List connections
curl --request GET \
--url https://api.redbark.com/v2/connections \
--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/connections', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.redbark.com/v2/connections"
headers = {
"Authorization": "Bearer <token>",
"Redbark-Version": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text){
"object": "list",
"data": [
{
"id": "conn_2Bc4De6fGh8jKl0mNp3qRs",
"object": "connection",
"provider": "fiskil",
"category": "banking",
"institution": {
"id": "inst_fk_anz",
"name": "<string>",
"logo": "<string>"
},
"status": "pending",
"consent": {
"id": "<string>",
"status": "<string>",
"expires_at": "2026-08-21T09:30:00.000Z"
},
"accounts": [
{
"id": "acct_9Lk2Mn4pQr6sTu8vWx1yZb",
"object": "account_item",
"connection": "<string>",
"provider": "<string>",
"category": "banking",
"name": "<string>",
"type": "<string>",
"institution": {
"id": "inst_fk_anz",
"name": "<string>",
"logo": "<string>"
},
"account_number": "<string>",
"currency": "<string>",
"status": "<string>",
"last_updated_at": "2026-08-21T09:30:00.000Z",
"livemode": true,
"created": "2026-08-21T09:30:00.000Z",
"updated": "2026-08-21T09:30:00.000Z"
}
],
"account_count": 123,
"last_refreshed_at": "2026-08-21T09:30:00.000Z",
"ready_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 by provider: fiskil, akahu or snaptrade
⌘I