Overview
Entities
Legal Entity
Account Authorization Webhooks
Virtual Account
Transaction
Card
Card Group
Slash Pay
List your Slash handles
List all of your Slash Handles
GET
/
slash-handle
Copy
Ask AI
curl --request GET \
--url https://api.joinslash.com/slash-handle \
--header 'X-API-Key: <api-key>'
Copy
Ask AI
{
"items": [
{
"id": "<string>",
"slashHandle": "<string>",
"name": "<string>",
"accountId": "<string>"
}
],
"metadata": {
"nextCursor": "<string>",
"count": 123
}
}
Authorizations
Authentication from public API requests
Query Parameters
A cursor string to fetch the next page of results
Response
200
application/json
OK
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://api.joinslash.com/slash-handle \
--header 'X-API-Key: <api-key>'
Copy
Ask AI
{
"items": [
{
"id": "<string>",
"slashHandle": "<string>",
"name": "<string>",
"accountId": "<string>"
}
],
"metadata": {
"nextCursor": "<string>",
"count": 123
}
}
Assistant
Responses are generated using AI and may contain mistakes.