Authentication
How this API authenticates requests, and where your API keys live.
Salfio Public API authenticates requests with the schemes below.
Your API keys
| Name | Key | Added | Last used |
|---|
bearerAuth
HTTP Bearer
Salfio API token using the documented sk_live_ format.
Send your token in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" https://api.example.com/endpointCode example
An authenticated call to this API, ready to copy:
curl -X GET -H 'Authorization: Bearer YOUR_API_KEY' 'https://api.example.com/clients'