Authentication
How to authenticate API requests
Authentication
All API requests require authentication using API keys.
Getting Your API Key
- Log in to DigiParser
- Go to Team Settings → API Keys
- Click "Create API Key"
- Copy and save your API key securely
Important: API keys are only shown once. Save them securely.
Using API Keys
Include your API key in the request header:
Authorization: Bearer YOUR_API_KEYExample Request
curl -X GET https://api.digiparser.com/v1/parsers \
-H "Authorization: Bearer YOUR_API_KEY"API Key Security
- Never commit API keys to version control
- Use environment variables
- Rotate keys regularly
- Revoke unused keys
Rate Limits
- 100 requests per minute
- 10,000 requests per day
Rate limit headers are included in responses:
X-RateLimit-Limit: Maximum requests allowedX-RateLimit-Remaining: Requests remainingX-RateLimit-Reset: When the limit resets
How is this guide?