Overview
Entities
Legal Entity
Account Authorization Webhooks
Virtual Account
Transaction
Card
Card Group
Slash Pay
Send money to a slash handle
Send money to a slash handle
POST
/
pay
Copy
Ask AI
curl --request POST \
--url https://api.joinslash.com/pay \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '{
"sourceSlashHandleId": "<string>",
"legalEntityId": "<string>",
"amountCents": 123,
"slashHandle": "<string>"
}'
Copy
Ask AI
{
"success": true,
"redirect": "<string>"
}
Authorizations
Authentication from public API requests
Body
application/json
Response
200
application/json
OK
The response is of type object
.
The response is of type object
.
The response is of type object
.
Copy
Ask AI
curl --request POST \
--url https://api.joinslash.com/pay \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '{
"sourceSlashHandleId": "<string>",
"legalEntityId": "<string>",
"amountCents": 123,
"slashHandle": "<string>"
}'
Copy
Ask AI
{
"success": true,
"redirect": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.