API Reference
Authentication
Learn how to authenticate your API requests
On this page
The VoxLink API uses API keys to authenticate requests. You need to include your API key in the header of each request you make to the API.
Obtaining an API Key
To obtain an API key:
- Log in to your VoxLink account at https://app.voxlink.ai
- Navigate to the "API Keys" page
- Click on the "Create new API Key" button
- Copy your new API key and store it securely
Keep your API key confidential and secure. Do not share it publicly or commit it to version control systems.
Using the API Key
Include your API key in the Authorization header of each request:
Authorization: Bearer YOUR_API_KEY
Replace YOUR_API_KEY with your actual API key.
Example Request
Here's an example of how to include the API key in a cURL request:
curl -X GET "https://api.voxlink.ai/api/user/campaigns" \
-H "Authorization: Bearer YOUR_API_KEY"
Replace YOUR_API_KEY with your actual API key when making requests.
Related guides
API Reference
Introduction
Welcome to the VoxLink API
Read guide →API Reference
Get current user
Get the authenticated user's profile information
Read guide →API Reference
List assistants
List all assistants for the authenticated user with pagination
Read guide →API Reference
Get outbound assistants
Retrieve all outbound assistants for the authenticated user
Read guide →