Must use Big.Connect service
Authentication
Your account's Aluvia Token is your authentication token for accessing the Aluvia API.
Accessing your Aluvia Token
You can find your Aluvia Token on the "Credentials" page in Aluvia dashboard.
API authentication examples
cURL Example
curl https://api.aluvia.io/credentials \
-H "Authorization: Bearer YOUR_ALUVIA_TOKEN"
TypeScript Example
import Aluvia from "aluvia-ts-sdk";
const aluvia = new Aluvia("YOUR_ALUVIA_TOKEN");
PHP Example
use Aluvia\Aluvia;
$aluvia = new Aluvia('YOUR_ALUVIA_TOKEN');
Security Best Practices
- Never commit your token to GitHub or source control
- Store it in environment variables or a secrets manager
- Keep it private—anyone with your token can access your account’s connectivity resources