Uploading and Processing a PDF with Alchemyst AI API
This document explains how to upload and process a PDF file using the Alchemyst AI v1 API.
/api/v1/uploadPOSTmultipart/form-dataThis endpoint accepts a PDF file, processes it, and returns the extracted text content.
```http POST /api/v1/upload Content-Type: multipart/form-data ```
| Name | Type | Description | Required |
|---|---|---|---|
| file | string | PDF file to be uploaded (binary format) | yes |
Example (using curl):
```bash curl -X POST \ https://your-alchemyst-api-domain.com/api/v1/upload \ -H \