---
title: "Upload File Multipart"
method: POST
path: "/api/v2/parse/upload"
tags: ["V2", "Parse"]
---

# Upload File Multipart

`POST /api/v2/parse/upload`

Upload and parse a file using multipart/form-data.

Send the file as a `file` field and parsing configuration as a
`configuration` JSON string field.

The job runs asynchronously. Poll `GET /parse/{job_id}` with
`expand` to retrieve results.

## Query parameters

- `project_id` string, uuid, nullable
- `organization_id` string, uuid, nullable

## Cookies

- `session` string, nullable

## Response `200`

Successful Response

- ParseJobResponse — A parse job.
  - `id` string, required — Unique parse job identifier
  - `created_at` string, date-time, nullable — Creation datetime
  - `updated_at` string, date-time, nullable — Update datetime
  - `project_id` string, required — Project this job belongs to
  - `status` 'PENDING' | 'RUNNING' | 'COMPLETED' | 'FAILED' | 'CANCELLED', required — Current job status: PENDING, RUNNING, COMPLETED, FAILED, or CANCELLED
  - `error_message` string, nullable — Error details when status is FAILED
  - `name` string, nullable — Optional display name for this parse job
  - `tier` string, nullable — Parsing tier used for this job

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/run-llama/apis/llama-platform.md) · [All operations](https://skmtc.net/run-llama/apis/llama-platform/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/run-llama/llama-platform/versions/b17341164de9/schema)
