Skip to main content
GET
/
projects
/
{id}
/
tasks
/
{taskId}
Get a task
curl --request GET \
  --url https://api.corebill.io/v1/projects/{id}/tasks/{taskId} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "tsk_a1b2c3d4e5f6",
    "public_id": "TSK-2025-000001",
    "project_id": "pro_a1b2c3d4e5f6",
    "parent_task_id": "<string>",
    "depends_on": [
      "<string>"
    ],
    "assigned_to": "<string>",
    "created_by": "<string>",
    "title": "Design homepage mockup",
    "description": "<string>",
    "status": "in_progress",
    "priority": "high",
    "estimated_hours": 8,
    "start_date": "2023-12-25",
    "due_date": "2023-12-25",
    "completed_at": "2023-11-07T05:31:56Z",
    "is_billable": true,
    "hourly_rate": 75,
    "position": 0,
    "tags": [
      "design",
      "frontend"
    ],
    "metadata": {},
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

API key authentication. Generate keys from the Corebill dashboard under the Developers section.

Example: Authorization: Bearer sk_live_abc123def456

Path Parameters

id
string
required

The project ID

taskId
string
required

Task ID

Example:

"tsk_a1b2c3d4e5f6"

Query Parameters

company_id
string
required

The company ID to scope the request to

Response

Task details

data
object
required

Task object