---
title: "[Deprecated] Easy export of tasks and annotations"
method: GET
path: "/api/projects/{id}/export"
tags: ["Export"]
deprecated: true
---

# [Deprecated] Easy export of tasks and annotations

`GET /api/projects/{id}/export`

> **Deprecated.**

This endpoint is deprecated in Enterprise. Use the async export API instead:
        POST /api/projects/{id}/exports/ (see [Create new export](api:POST/api/projects/{id}/exports/)).

        In Label Studio Enterprise, this endpoint will always return a 404 Not Found response with instructions to use the async export API.

        <i>Note: if you have a large project it's recommended to use
        export snapshots, this easy export endpoint might have timeouts.</i><br/><br>
        Export annotated tasks as a file in a specific format.
        For example, to export JSON annotations for a project to a file called `annotations.json`,
        run the following from the command line:
        ```bash
        curl -X GET http://localhost:8000/api/projects/{id}/export?exportType=JSON -H 'Authorization: Token abc123' --output 'annotations.json'
        ```
        To export all tasks, including skipped tasks and others without annotations, run the following from the command line:
        ```bash
        curl -X GET http://localhost:8000/api/projects/{id}/export?exportType=JSON&download_all_tasks=true -H 'Authorization: Token abc123' --output 'annotations.json'
        ```
        To export specific tasks with IDs of 123 and 345, run the following from the command line:
        ```bash
        curl -X GET 'http://localhost:8000/api/projects/{id}/export?ids[]=123&ids[]=345' -H 'Authorization: Token abc123' --output 'annotations.json'
        ```

## Path parameters

- `id` integer, required

## Query parameters

- `download_all_tasks` boolean
- `download_resources` boolean
- `export_type` string
- `ids` string[]

## Response `200`

Exported data

- string, binary — Export file with results

---

[API](https://skmtc.net/humansignal/apis/label-studio-api.md) · [All operations](https://skmtc.net/humansignal/apis/label-studio-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/humansignal/label-studio-api/versions/1b113b8df950/schema)
