> ## Documentation Index
> Fetch the complete documentation index at: https://superdoc-caio-pizzol-docs-ai-core-preset.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Quick Start

Three minutes to your first response.

<Steps>
  <Step title="Get your API key">
    ```bash theme={null}
    curl "https://api.superdoc.dev/v1/auth/register?email=you@email.com"
    ```

    Check email. Get code.
  </Step>

  <Step title="Verify">
    ```bash theme={null}
    curl "https://api.superdoc.dev/v1/auth/verify?email=you@email.com&code=123456"
    ```

    Save this key. It can't be recovered.
  </Step>

  <Step title="Convert">
    ```bash theme={null}
    curl -X POST https://api.superdoc.dev/v1/convert?from=docx \
      -H "Authorization: Bearer YOUR_API_KEY" \
      -F "file=@contract.docx" \
      -o contract.pdf
    ```

    Your DOCX is now a PDF. Tables intact. Formatting preserved.
  </Step>
</Steps>
