Skip to main content
GET
/
api
/
v1
/
projects
curl -X GET https://app.dubformer.ai/api/v1/projects \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "projects": [
    {
      "project_id": "12345",
      "name": "Project 1",
      "status": "ready",
      "source_lang": "en",
      "target_lang": "fr-FR",
      "cost_minutes": 10,
      "created_date": "2024-06-01T12:00:00Z"
    },
    {
      "project_id": "67890", 
      "name": "Project 2",
      "status": "in_progress",
      "source_lang": "fr",
      "target_lang": "de-DE",
      "cost_minutes": 15,
      "created_date": "2024-06-02T12:00:00Z"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.dubformer.ai/llms.txt

Use this file to discover all available pages before exploring further.

curl -X GET https://app.dubformer.ai/api/v1/projects \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

projects
array
Array of project objects with summary information.
{
  "projects": [
    {
      "project_id": "12345",
      "name": "Project 1",
      "status": "ready",
      "source_lang": "en",
      "target_lang": "fr-FR",
      "cost_minutes": 10,
      "created_date": "2024-06-01T12:00:00Z"
    },
    {
      "project_id": "67890", 
      "name": "Project 2",
      "status": "in_progress",
      "source_lang": "fr",
      "target_lang": "de-DE",
      "cost_minutes": 15,
      "created_date": "2024-06-02T12:00:00Z"
    }
  ]
}

Filtering and Pagination

Currently, the API returns all projects for your account. Filtering and pagination parameters may be added in future versions.
For detailed project information including output files and scripts, use the Get Project endpoint with a specific project ID.