Authentication
Learn how to authenticate your API requests.
All API requests must include your API key in the Authorization header.
request.ts
const headers = {
"Content-Type": "application/json",
"Authorization": "Bearer sk_live_your_api_key",
};Keep your API keys secure. Never expose them in client-side code or public repositories.