Overview
Entities
Legal Entity
Account Authorization Webhooks
Virtual Account
Transaction
Card
Card Group
Account
Get account
Get a single account by Id
GET
/
account
/
{accountId}
Copy
Ask AI
curl --request GET \
--url https://api.joinslash.com/account/{accountId} \
--header 'X-API-Key: <api-key>'
Copy
Ask AI
{
"id": "<string>",
"status": "open",
"name": "<string>",
"accountNumber": "<string>",
"routingNumber": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"type": "debit",
"balances": [
"debit"
]
}
Authorizations
Authentication from public API requests
Path Parameters
Response
200
application/json
OK
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://api.joinslash.com/account/{accountId} \
--header 'X-API-Key: <api-key>'
Copy
Ask AI
{
"id": "<string>",
"status": "open",
"name": "<string>",
"accountNumber": "<string>",
"routingNumber": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"type": "debit",
"balances": [
"debit"
]
}
Assistant
Responses are generated using AI and may contain mistakes.