Authentication
The Studiio API uses API keys to authenticate requests. You can view and manage your API keys in the Studiio dashboard.
Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, etc...
You can include your API key in a request by adding it as a:
Query String Parameter
Use the key apiKey
and your API key as the value.
https://api.studiio.io/v1/sms-mms?apiKey=<apiKey>
Authorization Header
Authorization: Bearer <apiKey>
All API requests must be made over HTTPS. Calls made over plain HTTP will fail. API requests without authentication will fail.
Last updated