# Connectors

Data source sync status and lineage.

Connectors show where ledger data originates. Use syncStatus to detect stale or failed imports.

### `GET /api/v1/connectors`

Bank and payment connector sync status for the organization.

- operationId: `list_connectors`
- scope: `read`

**Response**

```json
{
  "data": [
    { "id": "…", "name": "Stripe", "provider": "stripe", "syncStatus": "ok", "lastSyncAt": "…" }
  ]
}
```

| syncStatus | Meaning |
| --- | --- |
| ok | Last sync succeeded |
| stale | Sync is overdue |
| error | Last sync failed |
