curl --request GET \
--url https://api.joinslash.com/account/{accountId} \
--header 'X-API-Key: <api-key>'
{
"id": "<string>",
"status": "open",
"name": "<string>",
"accountNumber": "<string>",
"routingNumber": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"type": "debit",
"balances": [
"debit"
]
}
Get a single account by Id
curl --request GET \
--url https://api.joinslash.com/account/{accountId} \
--header 'X-API-Key: <api-key>'
{
"id": "<string>",
"status": "open",
"name": "<string>",
"accountNumber": "<string>",
"routingNumber": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"type": "debit",
"balances": [
"debit"
]
}
Authentication from public API requests
OK
The response is of type object
.