---
title: "List a conversion's source files (with their outputs)"
description: "GET https://api.markitdown.ai/v1/conversions/{id}/files — List a conversion's source files (with their outputs). Authenticate with x-api-key."
url: https://markitdown.ai/docs/api/list-conversion-files
updated: 2026-09-26
source: markitdown.ai
---

# List a conversion's source files (with their outputs)

> GET https://api.markitdown.ai/v1/conversions/{id}/files — List a conversion's source files (with their outputs). Authenticate with x-api-key.

## Endpoint

**GET** `/v1/conversions/{id}/files` — List a conversion's source files (with their outputs)

`listConversionFiles` is part of the Conversions resource of the markitdown.ai API v1. Send an API key in the `x-api-key` header (or `Authorization: Bearer mdai_…`); all bodies are `application/json` unless a response lists another media type.

## Parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `id` | path · string | yes |  |
| `cursor` | query · string | no |  |
| `limit` | query · integer | no |  |
| `status` | query · "queued" \| "running" \| "completed" \| "failed" | no |  |

## Example request

**curl**

```bash
curl https://api.markitdown.ai/v1/conversions/cnv_00000000000040008000000000000001/files \
  -H "x-api-key: $MARKITDOWN_API_KEY"
```

## Responses

- `200` Files. (`application/json`)

**200 body**

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `data` | object[] | no |  |
| `data[].bytes` | integer \| null | no |  |
| `data[].content` | string \| null | no |  |
| `data[].credits` | integer \| null | no |  |
| `data[].error` | object \| any \| null | no |  |
| `data[].format` | "markdown" \| "text" \| "html" \| "pages" | no |  |
| `data[].id` | string | yes |  |
| `data[].links` | object | no |  |
| `data[].mime` | string | yes |  |
| `data[].name` | string | yes |  |
| `data[].object` | "file" | yes |  |
| `data[].outputs` | object[] | no |  |
| `data[].pages` | integer \| null | no |  |
| `data[].role` | "source" \| "output" | yes |  |
| `data[].status` | "queued" \| "running" \| "completed" \| "failed" | no |  |
| `data[].variant` | "standard" \| "ai_enhanced" | no |  |
| `next_cursor` | string \| null | no |  |
| `object` | "list" | no |  |

## Related

- [API reference](https://markitdown.ai/docs/api)
- [Error codes](https://markitdown.ai/docs/errors)
- [Introduction](https://markitdown.ai/docs)
- [Document Conversion APIs](https://markitdown.ai/developers)
