> ## Documentation Index
> Fetch the complete documentation index at: https://docs.stateset.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Create a file handler

> **Required scope:** write

**Required scope:** `write`

### Request body

`CreateFileRequest`

<ParamField body="content" type="string" />

<ParamField body="content_base64" type="string" />

<ParamField body="content_type" type="string" />

<ParamField body="filename" type="string" required />

<ParamField body="metadata" type="object" />

<ParamField body="purpose" type="string" />

### Response

`FileObject`

<ResponseField name="bytes" type="integer" required />

<ResponseField name="content_type" type="string" />

<ResponseField name="created_at" type="integer (int64)" required />

<ResponseField name="filename" type="string" required />

<ResponseField name="id" type="string" required />

<ResponseField name="metadata" type="object" />

<ResponseField name="object" type="string" required />

<ResponseField name="purpose" type="string" required />

<ResponseField name="status" type="string" required />

### Status codes

| Code  | Meaning                                            |
| ----- | -------------------------------------------------- |
| `201` | File uploaded                                      |
| `401` | Unauthorized — missing or invalid credentials      |
| `403` | Forbidden — the key/token lacks the required scope |
| `429` | Rate limited — see Retry-After / X-RateLimit-Reset |

<RequestExample>
  ```bash cURL theme={null}
  curl --request POST \
    --url 'https://api.nsr.stateset.com/v1/files' \
    --header 'X-API-Key: YOUR_API_KEY' \
    --header 'Content-Type: application/json' \
    --data '{
    "content": "Two-person tent, green — replacement for damaged pole set.",
    "content_base64": "string",
    "content_type": "string",
    "filename": "string",
    "metadata": {},
    "purpose": "string"
  }'
  ```
</RequestExample>

<ResponseExample>
  ```json 201 theme={null}
  {
    "bytes": 1,
    "content_type": "string",
    "created_at": 1,
    "filename": "string",
    "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "metadata": {},
    "object": "string",
    "purpose": "string",
    "status": "pending"
  }
  ```
</ResponseExample>
