Authentication

Authentication Method

All requests must be made over HTTPS and will be authenticated using an API key.

API Authentication

Authentication requires an API Key which you can retrieve from

❗️

Keep your API keys secret!

API keys must be kept secret. They should not be in your client-side code or checked into your application's code.

## Example requests
Note these are picked just to allow you to get started as quickly as possible. They're also useful for debugging if your API key is working.

Return a random fun fact

curl --request GET \
     --url 'https://v1.api.audio/script/random?category=FunFact' \
     --header 'Accept: application/json' \
     --header 'x-api-key: APIKEY'

This returns some random text - which might inspire you to get writing content

What custom audio have I uploaded

You may want to see what custom audio you've uploaded.

curl --request GET \
     --url https://v1.api.audio/file/customaudio \
     --header 'Accept: application/json' \
     --header 'x-api-key: APIKEY'