Authentication

How to authenticate API requests

Authentication

All API requests require authentication using API keys.

Getting Your API Key

  1. Log in to DigiParser
  2. Go to Team Settings → API Keys
  3. Click "Create API Key"
  4. 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_KEY

Example 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 allowed
  • X-RateLimit-Remaining: Requests remaining
  • X-RateLimit-Reset: When the limit resets

How is this guide?

On this page