Overview
Entities
Legal Entity
Account Authorization Webhooks
Virtual Account
Transaction
Card
Card Group
Account
List accounts
List all accounts you have access to
GET
/
account
Copy
Ask AI
curl --request GET \
--url https://api.joinslash.com/account \
--header 'X-API-Key: <api-key>'
Copy
Ask AI
{
"items": [
{
"id": "<string>",
"status": "open",
"name": "<string>",
"accountNumber": "<string>",
"routingNumber": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"type": "debit",
"balances": [
"debit"
]
}
],
"metadata": {
"nextCursor": "<string>",
"count": 123
}
}
Authorizations
Authentication from public API requests
Query Parameters
Pass in a legal entity ID to filter for accounts under a specific legal entity.
Response
200
application/json
OK
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://api.joinslash.com/account \
--header 'X-API-Key: <api-key>'
Copy
Ask AI
{
"items": [
{
"id": "<string>",
"status": "open",
"name": "<string>",
"accountNumber": "<string>",
"routingNumber": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"type": "debit",
"balances": [
"debit"
]
}
],
"metadata": {
"nextCursor": "<string>",
"count": 123
}
}
Assistant
Responses are generated using AI and may contain mistakes.