Make your first authenticated request to the Audienceful API in a couple of minutes.
This guide takes you from zero to a working API call. By the end you’ll have a key, you’ll have listed the contacts in your workspace, and you’ll have added a new one.
The API lives at https://api.audienceful.com/v2/. Every request is authenticated with a workspace API key sent in the X-Api-Key header.
Log in and head to the API keys page under Settings.
2
Generate a key
Click Generate Key, give it a name, and (optionally) set an expiration and scopes. Leave scopes empty for full workspace access while you’re getting started.
3
Copy it somewhere safe
This is the only time the full key is shown. Store it in an environment variable rather than pasting it into code.
export AUDIENCEFUL_API_KEY="<your-api-key>"
Your API key is a workspace secret. Never expose it to a browser or mobile client — call the API from a backend service only.