WakaTime · Arazzo Workflow

WakaTime Goals Review

Version 1.0.0

List the user's coding goals, then load the detailed progress for the first goal.

1 workflow 1 source API 1 provider
View Spec View on GitHub Developer ProductivityDeveloper ToolsTime TrackingCoding AnalyticsLeaderboardsIDE PluginsOpen-SourcePublic APIsArazzoWorkflows

Provider

wakatime

Workflows

goals-review
List coding goals and load the first goal's progress detail.
Lists the authenticated user's coding goals and drills into the first goal's progress when one exists.
2 steps inputs: apiKeyBasicAuth outputs: goalStatus, goalTitle, goals
1
listGoals
listGoals
List the authenticated user's coding goals.
2
getGoal
getGoal
Load the full progress detail for the first goal returned.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: WakaTime Goals Review
  summary: List the user's coding goals, then load the detailed progress for the first goal.
  description: >-
    Reviews the authenticated user's coding goals. It lists all goals and, when
    at least one goal exists, fetches the full progress detail for the first
    goal returned. When the user has no goals the workflow ends cleanly. Every
    step spells out its request inline, including HTTP Basic authentication with
    the WakaTime API key as the username, so the flow can be read and executed
    without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: wakatimeApi
  url: ../openapi/wakatime-api-v1-openapi.yml
  type: openapi
workflows:
- workflowId: goals-review
  summary: List coding goals and load the first goal's progress detail.
  description: >-
    Lists the authenticated user's coding goals and drills into the first goal's
    progress when one exists.
  inputs:
    type: object
    required:
    - apiKeyBasicAuth
    properties:
      apiKeyBasicAuth:
        type: string
        description: Base64 of "<api_key>:" for HTTP Basic auth (WakaTime API key as username).
  steps:
  - stepId: listGoals
    description: List the authenticated user's coding goals.
    operationId: listGoals
    parameters:
    - name: Authorization
      in: header
      value: Basic $inputs.apiKeyBasicAuth
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      goals: $response.body#/data
      firstGoalId: $response.body#/data/0/id
    onSuccess:
    - name: hasGoals
      type: goto
      stepId: getGoal
      criteria:
      - context: $response.body
        condition: $.data.length > 0
        type: jsonpath
    - name: noGoals
      type: end
      criteria:
      - context: $response.body
        condition: $.data.length == 0
        type: jsonpath
  - stepId: getGoal
    description: Load the full progress detail for the first goal returned.
    operationId: getGoal
    parameters:
    - name: Authorization
      in: header
      value: Basic $inputs.apiKeyBasicAuth
    - name: goal
      in: path
      value: $steps.listGoals.outputs.firstGoalId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      goalTitle: $response.body#/data/title
      goalStatus: $response.body#/data/status
      chartData: $response.body#/data/chart_data
  outputs:
    goals: $steps.listGoals.outputs.goals
    goalTitle: $steps.getGoal.outputs.goalTitle
    goalStatus: $steps.getGoal.outputs.goalStatus

Work with this as data

Every workflow 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 arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • 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 workflow
curl "https://apis.io/api/v1/arazzo/wakatime-goals-review-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?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.