curl --request GET \
--url https://api.joinslash.com/account \
--header 'X-API-Key: <api-key>'
{
"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
}
}
List all accounts you have access to
curl --request GET \
--url https://api.joinslash.com/account \
--header 'X-API-Key: <api-key>'
{
"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
}
}
Authentication from public API requests
Pass in a legal entity ID to filter for accounts under a specific legal entity.
OK
The response is of type object
.