Skip to main content
GET
/
projects
/
{id}
/
time-entries
/
{entryId}
Get a time entry
curl --request GET \
  --url https://api.corebill.io/v1/projects/{id}/time-entries/{entryId} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "tme_a1b2c3d4e5f6",
    "project_id": "pro_a1b2c3d4e5f6",
    "task_id": "tsk_a1b2c3d4e5f6",
    "user_id": "usr_abc123",
    "company_id": "com_a1b2c3d4e5f6",
    "start_time": "2025-04-10T09:00:00Z",
    "end_time": "2025-04-10T17:00:00Z",
    "duration_minutes": 480,
    "is_running": false,
    "description": "Implemented responsive navigation",
    "is_billable": true,
    "hourly_rate": 75,
    "internal_cost_rate": 123,
    "invoiced": false,
    "invoice_id": "<string>",
    "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

entryId
string
required

Time entry ID

Example:

"tme_a1b2c3d4e5f6"

Query Parameters

company_id
string
required

The company ID to scope the request to

Response

Time entry details

data
object
required

Time entry object