Authentication
API key authentication
Authentication
All requests require an X-API-Key header. Create and manage keys from your Dashboard.
curl "https://api.scriptbase.app/api/v1/transcribe?url=VIDEO_URL" \
-H "X-API-Key: your_api_key"Keep your keys safe
Never expose API keys in client-side code, public repositories, or browser requests.
Best Practices
- Store keys in environment variables
- Use separate keys for dev and production
- Rotate keys regularly from the dashboard
- Delete unused keys immediately