Toggl Track Reports API

The Reports API from Toggl Track — 3 operation(s) for reports.

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-reports-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-reports-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Toggl Track Me Reports 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: Reports
paths:
  /reports/api/v2/weekly:
    get:
      tags:
      - Reports
      summary: Weekly report
      operationId: weeklyReport
      parameters:
      - $ref: '#/components/parameters/UserAgent'
      - $ref: '#/components/parameters/WorkspaceIdQuery'
      responses:
        '200':
          description: Weekly aggregated report.
  /reports/api/v2/summary:
    get:
      tags:
      - Reports
      summary: Summary report
      operationId: summaryReport
      parameters:
      - $ref: '#/components/parameters/UserAgent'
      - $ref: '#/components/parameters/WorkspaceIdQuery'
      responses:
        '200':
          description: Summary report.
  /reports/api/v2/details:
    get:
      tags:
      - Reports
      summary: Detailed report
      operationId: detailedReport
      parameters:
      - $ref: '#/components/parameters/UserAgent'
      - $ref: '#/components/parameters/WorkspaceIdQuery'
      responses:
        '200':
          description: Detailed report.
components:
  parameters:
    WorkspaceIdQuery:
      in: query
      name: workspace_id
      required: true
      schema:
        type: integer
    UserAgent:
      in: query
      name: user_agent
      required: true
      schema:
        type: string
      description: Required identifier for the calling application.
  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`.

        '