Account
List accounts
Overview
Entities
Legal Entity
Virtual Account
Transaction
Card
Card Group
Account
List accounts
List all accounts you have access to
GET
/
account
curl --request GET \
--url https://api.joinslash.com/account \
--header 'X-API-Key: <api-key>'
{
"items": [
{
"id": "<string>",
"status": "open",
"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
Available options:
open
, closed
The type of account. - "debit" represents a debit card account - "charge_card" represents a charge card account
Available options:
debit
, charge_card
The balances on the account. See the Balance object for more details.
Available options:
debit
, cash
, credit
curl --request GET \
--url https://api.joinslash.com/account \
--header 'X-API-Key: <api-key>'
{
"items": [
{
"id": "<string>",
"status": "open",
"accountNumber": "<string>",
"routingNumber": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"type": "debit",
"balances": [
"debit"
]
}
],
"metadata": {
"nextCursor": "<string>",
"count": 123
}
}