{% extends "base.html" %} {% block title %}API Tokens – DocuElevate{% endblock %} {% block content %}

API Tokens

Create personal API tokens to interact with the DocuElevate API programmatically. Use tokens for webhook uploads, CI/CD pipelines, or any script that needs to upload or retrieve documents.

Create New Token

Usage Example

Use your API token in the Authorization header with any API request:

curl -X POST "/api/files/ui-upload" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -F "file=@/path/to/document.pdf"

Your Tokens

{% endblock %}