GET
Get refresh intent status
language
https://api.araucaria.money/v1/refresh-intents/{id}
Returns the current status of a refresh intent with per-connection detail. Poll this endpoint until the overall status is "completed". Per-connection statuses: queued → syncing → completed | failed.
Parameters
| Name | Type | Description |
|---|---|---|
| id * | path string |
Request Example
bash
curl -X GET "https://api.araucaria.money/v1/refresh-intents/{id}" \
-H "Accept: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"
Response Example
200 OK
json
{
"id": "01JXABC123DEF456GHI789JKL0",
"status": "completed",
"connections": [
{
"connectionId": "conn_01JXABC123DEF456GHI789JKL1",
"status": "completed",
"error": null
},
{
"connectionId": "conn_01JXABC123DEF456GHI789JKL2",
"status": "failed",
"error": "auth_failure"
}
],
"createdAt": "2026-05-06T12:00:00.000Z"
}