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

Delete export snapshot

DELETE
http://localhost:8000/api/projects/:id/exports/:export_pk
DELETE
/api/projects/:id/exports/:export_pk
$curl -X DELETE http://localhost:8000/api/projects/1/exports/1 \
> -H "Authorization: Token <api_key>"
Delete an export file by specified export ID.
Was this page helpful?
Previous

Export conversion

Next
Built with

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

export_pkintegerRequired
Primary key identifying the export file.
idintegerRequired
A unique integer value identifying this project.