Skip to main content
GET
/
projects
/
{project_id}
/
tasks
List tasks in a project
curl --request GET \
  --url https://test-writechoice.onrender.com/projects/{project_id}/tasks \
  --header 'Authorization: Bearer <token>'
{
  "project_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "total": 1,
  "tasks": [
    {
      "task_id": "f9e8d7c6-b5a4-3210-fedc-ba9876543210",
      "project_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "title": "Write introduction page",
      "description": "Draft the overview and getting started sections.",
      "status": "pending",
      "created_at": "2025-05-12T10:35:00.000Z",
      "updated_at": "2025-05-12T10:35:00.000Z"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://writechoice-8439b44d-mintlify-78019799.mintlify.app/llms.txt

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

Authorizations

Authorization
string
header
required

All requests must include a valid API key in the Authorization header. Example: Authorization: Bearer tf-live-4a8f2c1e9b3d7e6a

Path Parameters

project_id
string<uuid>
required

The ID of the project whose tasks you want to retrieve.

Response

Tasks retrieved successfully.

project_id
string<uuid>

The ID of the project being queried.

total
integer

Total number of tasks in the project.

Example:

3

tasks
object[]