Authentication

API Tokens

All API requests require an API token in the Authorization header. Get your API token from the dashboard after signing up.

Using Your Token

Include your token in the Authorization header:

Authorization: Bearer ce_your_token_here

Example Request

curl -X POST https://api.content-extractor.devstools.net/v1/extract \
  -H "Authorization: Bearer ce_your_token_here" \
  -H "Content-Type: application/json" \
  -d '{
    "html": "<html>...</html>"
  }'

Token Security

  • Keep your API tokens secret - never commit them to version control
  • Use environment variables to store tokens
  • Rotate tokens if they're compromised
  • Create separate tokens for different applications
  • Deactivate unused tokens

Free vs Paid Tokens

Your primary token gets 100 free requests per day. Additional tokens and usage beyond the free tier require credits.