For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
EnterpriseQuick Start
API ReferenceTutorials
  • Introduction
    • Getting started
  • API Reference
      • GETList projects
      • POSTCreate a project
      • GETList projects' counts
      • GETGet project by ID
      • DELDelete project
      • PATCHUpdate project details
      • GETList unique annotators for project
      • POST✨ Duplicate project
      • POSTImport tasks
      • POSTImport predictions
      • POSTValidate project label config
        • GET[Deprecated] Easy export of tasks and annotations
        • GET[Deprecated] Get export formats
        • GETList all export snapshots
        • POSTCreate new export snapshot
        • GETGet export snapshot by ID
        • DELDelete export snapshot
        • POSTExport conversion
        • GETDownload export snapshot as file in specified format
LogoLogo
EnterpriseQuick Start
API ReferenceProjectsExports

[Deprecated] Get export formats

Deprecated
GET
http://localhost:8000/api/projects/:id/export/formats
GET
/api/projects/:id/export/formats
$curl http://localhost:8000/api/projects/1/export/formats \
> -H "Authorization: Token <api_key>" \
> -H "Content-Type: application/json"
200Retrieved
1[
2 "JSON",
3 "CSV",
4 "COCO",
5 "YOLO",
6 "Pascal VOC"
7]
This endpoint is deprecated in Enterprise. Use the async export API instead: POST /api/projects/{{id}}/exports/ (see [Create new export](/api#operation/api_projects_exports_create)). In Label Studio Enterprise, this endpoint will always return a 404 Not Found response with instructions to use the async export API. Retrieve the available export formats for the current project by ID.
Was this page helpful?
Previous

List all export snapshots

Next
Built with

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

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

Retrieve the available export formats for the current project by ID.

Authentication

AuthorizationToken
The token (or API key) must be passed as a request header. You can find your user token on the User Account page in Label Studio. Example:
curl https://label-studio-host/api/projects -H “Authorization: Token [your-token]”

Path parameters

idintegerRequired
A unique integer value identifying this project.

Response

Export formats