Setup Guide
Get connected in four steps
A short, focused walkthrough to configure your API access and verify it works.
1
Log in to the portal
Use your order ID or email and the access code you received at purchase to sign in.
2
Locate your API details
Open the dashboard and copy the endpoint URL and access token from the API access card.
3
Configure your client
Add the endpoint and token to your application configuration or environment variables.
export API_ENDPOINT="https://api.example.com/v1"
export API_TOKEN="sk-live-xxxxxxxxxxxxxxxx"4
Verify the connection
Send a test request. A 200 response confirms your access is configured correctly.
curl -H "Authorization: Bearer $API_TOKEN" \
"$API_ENDPOINT/health"You're all set
If you run into anything unusual, our support team can walk you through it.