Documents

Uploading PDF Documents to Alchemyst AI

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.

Endpoint Overview

  • Endpoint: /api/v1/upload
  • Method: POST
  • Content-Type: multipart/form-data

This endpoint accepts a PDF file, processes it, and returns the extracted text content.

Request Details

HTTP Request

```http POST /api/v1/upload Content-Type: multipart/form-data ```

Request Body Parameters

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 \