Skip to main content
API Tokens & Webhooks

API Tokens & Webhooks

Manage your API authentication and webhook configurations from the Settings page. API tokens are used for CLI access and direct API calls. Webhooks let external services receive extraction events.

CLI / API Token

Your personal CLI token authenticates requests to the Extraktr API. Use it for CLI usage, scripts, and custom integrations.

  • Go to Settings → CLI Token
  • Click "Generate Token" to create a new token
  • Copy the token immediately — it’s shown only once
  • Use the token as a Bearer token in API requests
curl -X POST https://extraktr.com/api/extract \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"raw_content": "your conversation text here"}'
Keep your token secure. If compromised, generate a new one — the old token is immediately invalidated.

Integration Webhook

Configure a webhook URL to receive notifications when extractions complete. Extraktr sends a POST request to your endpoint with the extraction results and a signing secret for verification.

  • Set destination URL (HTTPS required)
  • Signing secret auto-generated for payload verification
  • Retry logic for failed deliveries

Revealing Your Token

After generation, your token is hidden for security. Click "Reveal Token" to view it again. You can regenerate a token at any time, which invalidates the previous one.

Still have questions?

Reach out to our team or start extracting to see the platform in action.