Complete reference for the Audenci Public API
Create an API key from the API Keys settings page. Select the appropriate scopes for your integration.
Add your API key below to test endpoints directly from this page:
Your key is stored locally in your browser and never sent to our servers.
Include your API key in the X-API-Key header:
curl https://api.audenci.com/v1/brands \ -H "X-API-Key: sk_live_your_key_here"
Rate limits are enforced per API key. Check the X-RateLimit-* headers in responses for current usage.
const response = await fetch('https://api.audenci.com/v1/brands', {
headers: {
'X-API-Key': 'sk_live_your_key_here',
'Content-Type': 'application/json'
}
});
const data = await response.json();
console.log(data);import requests
headers = {
'X-API-Key': 'sk_live_your_key_here',
'Content-Type': 'application/json'
}
response = requests.get('https://api.audenci.com/v1/brands', headers=headers)
data = response.json()
print(data)curl https://api.audenci.com/v1/brands \ -H "X-API-Key: sk_live_your_key_here" \ -H "Content-Type: application/json"