Overview
Entities
Legal Entity
Account Authorization Webhooks
Virtual Account
Transaction
Card
Card Group
Legal Entity
List legal entities
List all legal entities you have access to
GET
/
legal-entity
Copy
Ask AI
curl --request GET \
--url https://api.joinslash.com/legal-entity \
--header 'X-API-Key: <api-key>'
Copy
Ask AI
{
"items": [
{
"id": "<string>",
"name": "<string>",
"structure": "person"
}
],
"metadata": {
"nextCursor": "<string>",
"count": 123
}
}
Authorizations
Authentication from public API requests
Response
200
application/json
OK
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://api.joinslash.com/legal-entity \
--header 'X-API-Key: <api-key>'
Copy
Ask AI
{
"items": [
{
"id": "<string>",
"name": "<string>",
"structure": "person"
}
],
"metadata": {
"nextCursor": "<string>",
"count": 123
}
}
Assistant
Responses are generated using AI and may contain mistakes.