Stacklok Logs API

The logs API from Stacklok — 2 operation(s) for logs.

Operations 2

GET /api/v1beta/workloads/{name}/logs Get logs for a specific workload #
GET /api/v1beta/workloads/{name}/proxy-logs Get proxy logs for a specific workload #

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/stacklok-logs-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

stacklok-logs-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: This is the ToolHive API server.
  title: ToolHive Logs API
  version: '1.0'
tags:
- name: Logs
paths:
  /api/v1beta/workloads/{name}/logs:
    get:
      description: Retrieve at most 1000 lines of logs for a specific workload by name.
      parameters:
      - description: Workload name
        in: path
        name: name
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            text/plain:
              schema:
                type: string
          description: Logs for the specified workload
        '400':
          content:
            text/plain:
              schema:
                type: string
          description: Invalid workload name
        '404':
          content:
            text/plain:
              schema:
                type: string
          description: Not Found
      summary: Get logs for a specific workload
      tags:
      - Logs
      operationId: getApiV1betaWorkloadsByNameLogs
      x-operation-id-source: derived
  /api/v1beta/workloads/{name}/proxy-logs:
    get:
      description: Retrieve at most 1000 lines of proxy logs for a specific workload by name from the file system.
      parameters:
      - description: Workload name
        in: path
        name: name
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            text/plain:
              schema:
                type: string
          description: Proxy logs for the specified workload
        '400':
          content:
            text/plain:
              schema:
                type: string
          description: Invalid workload name
        '404':
          content:
            text/plain:
              schema:
                type: string
          description: Proxy logs not found for workload
      summary: Get proxy logs for a specific workload
      tags:
      - Logs
      operationId: getApiV1betaWorkloadsByNameProxyLogs
      x-operation-id-source: derived
externalDocs:
  description: ''
  url: ''