/accountsReturns all accounts for the organization. Includes income sources, pods, and external accounts. Supports optional filtering by account type.
AuthorizationClick to expand
ApiKeyAuth Format: ApiKey <key>. Keys are scoped to an organization and carry explicit permissions.
Each key holds a list of permission entries. An entry specifies a scope and a resources
constraint. A request returns 403 if the key lacks the required scope, or if the requested
resource is outside the key's allowed list.
| Scope | Resources | Grants access to |
|---|---|---|
LIST_ACCOUNTS | none | List all accounts in the organization |
READ_ACCOUNTS | account IDs or * | Full account details and balance for a specific account |
LIST_RULES | none | List all rules in the organization |
READ_RULES | rule IDs or * | Full rule details (steps, conditions, actions) for a specific rule |
TRIGGER_RULES | rule IDs or * | Triggering rule executions |
READ_RULE_EXECUTIONS | rule IDs or * | Rule execution history - rule_id filter required |
READ_TRANSFERS | account IDs or * | Transfer history - account_id filter required |
MANUAL_TRANSFER | list of { source, target, max_amount? } sets | Creating manual transfers |
READ_CARDS | account IDs or * | Cards and card transactions - account_id filter required |
In: header
Query Parameters
type?string, Value in "income_source" | "pod" | "external_account"Filter by account type.
Header Parameters
X-Request-ID?stringA client-provided request identifier echoed back in the response `X-Request-ID` header and `request_id` body field. If omitted, the server generates one.
Response Body
application/json
application/json
application/json
curl -X GET "https://api.getsequence.io/api/v1/accounts"{
"request_id": "req_01HABC7000",
"data": [
{
"id": "acc_01HABC4567",
"name": "Chase Checking ••4567",
"type": "income_source",
"description": "Main payroll account",
"external_account_type": null,
"beneficiary_name": "John Smith",
"institution_name": "Chase",
"can_be_source": true,
"can_be_destination": false,
"created_at": "2024-01-15T10:00:00Z",
"updated_at": "2024-01-15T10:00:00Z"
},
{
"id": "acc_01HDEF0123",
"name": "Emergency Fund",
"type": "pod",
"description": null,
"external_account_type": null,
"beneficiary_name": "John Smith",
"institution_name": null,
"can_be_source": true,
"can_be_destination": true,
"created_at": "2024-02-01T09:00:00Z",
"updated_at": "2024-03-10T14:30:00Z"
},
{
"id": "acc_01HGHI7890",
"name": "Amex Gold ••1234",
"type": "external_account",
"description": null,
"external_account_type": "LIABILITY",
"beneficiary_name": "John Smith",
"institution_name": "American Express",
"can_be_source": false,
"can_be_destination": true,
"created_at": "2024-01-20T11:00:00Z",
"updated_at": "2024-01-20T11:00:00Z"
}
]
}{
"error": {
"code": "unauthorized",
"message": "Missing or invalid API key."
}
}{
"error": {
"code": "forbidden",
"message": "This API key does not have the required permission."
}
}Get an account GET
Returns the full account including masked account details and current balance. The requested account ID must be present in the token's `READ_ACCOUNTS` resources.
Delete an account DELETEv2
Permanently deletes an account. Works for all account types (income sources, pods, and external accounts). This action cannot be undone.