Toggl Track Time Entries API

The Time Entries API from Toggl Track — 5 operation(s) for time entries.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/toggl-time-entries-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

toggl-time-entries-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Toggl Track Me Time Entries API
  version: '9'
  description: "REST API for the Toggl Track time tracking platform covering the\ncore Track API (time entries, current entry, workspaces) plus the\nReports API (weekly, summary, detailed reports).\n\nAuthentication: HTTP Basic Auth where the API token is the username\nand the literal string `api_token` is the password.\n\nSources:\n- https://engineering.toggl.com/docs/\n- https://github.com/toggl/toggl_api_docs (archived reference for\n  historical paths and the Reports API)\n"
  contact:
    name: Toggl Track
    url: https://engineering.toggl.com/docs/
servers:
- url: https://api.track.toggl.com
  description: Toggl Track production API host
security:
- basicAuth: []
tags:
- name: Time Entries
paths:
  /api/v9/me/time_entries:
    get:
      tags:
      - Time Entries
      summary: List the authenticated user's time entries
      operationId: listMyTimeEntries
      parameters:
      - in: query
        name: start_date
        schema:
          type: string
          format: date
      - in: query
        name: end_date
        schema:
          type: string
          format: date
      responses:
        '200':
          description: Time entries for the authenticated user.
  /api/v9/me/time_entries/current:
    get:
      tags:
      - Time Entries
      summary: Get the currently running time entry
      operationId: getCurrentTimeEntry
      responses:
        '200':
          description: Running time entry or null.
  /api/v9/workspaces/{workspace_id}/time_entries:
    post:
      tags:
      - Time Entries
      summary: Create a time entry in a workspace
      operationId: createTimeEntry
      parameters:
      - $ref: '#/components/parameters/WorkspaceId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                description:
                  type: string
                start:
                  type: string
                  format: date-time
                duration:
                  type: integer
                project_id:
                  type: integer
                created_with:
                  type: string
                workspace_id:
                  type: integer
              required:
              - start
              - created_with
              - workspace_id
      responses:
        '200':
          description: Created time entry.
  /api/v9/workspaces/{workspace_id}/time_entries/{time_entry_id}:
    put:
      tags:
      - Time Entries
      summary: Update a time entry
      operationId: updateTimeEntry
      parameters:
      - $ref: '#/components/parameters/WorkspaceId'
      - $ref: '#/components/parameters/TimeEntryId'
      responses:
        '200':
          description: Updated time entry.
    delete:
      tags:
      - Time Entries
      summary: Delete a time entry
      operationId: deleteTimeEntry
      parameters:
      - $ref: '#/components/parameters/WorkspaceId'
      - $ref: '#/components/parameters/TimeEntryId'
      responses:
        '200':
          description: Deletion acknowledgement.
  /api/v9/workspaces/{workspace_id}/time_entries/{time_entry_id}/stop:
    patch:
      tags:
      - Time Entries
      summary: Stop a running time entry
      operationId: stopTimeEntry
      parameters:
      - $ref: '#/components/parameters/WorkspaceId'
      - $ref: '#/components/parameters/TimeEntryId'
      responses:
        '200':
          description: Stopped time entry.
components:
  parameters:
    TimeEntryId:
      in: path
      name: time_entry_id
      required: true
      schema:
        type: integer
    WorkspaceId:
      in: path
      name: workspace_id
      required: true
      schema:
        type: integer
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: 'HTTP Basic auth. Username is the API token from Toggl profile,

        password is the literal string `api_token`.

        '