Jaeger Services API

Endpoints for listing services and their operations.

Operations 2

GET /api/services Get all services #
GET /api/services/{service}/operations Get operations for a service #

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/jaeger-services-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

jaeger-services-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Jaeger Query Dependencies Services API
  description: The Jaeger Query API provides HTTP endpoints for retrieving trace data, service information, operations, and dependency graphs from the Jaeger distributed tracing backend. This API is exposed by the jaeger-query component and is used by the Jaeger UI and other clients to search and retrieve distributed traces collected across microservices.
  version: 1.0.0
  contact:
    name: Jaeger Project
    url: https://www.jaegertracing.io/
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
servers:
- url: http://localhost:16686
  description: Default Jaeger Query server
tags:
- name: Services
  description: Endpoints for listing services and their operations.
paths:
  /api/services:
    get:
      operationId: getServices
      summary: Get all services
      description: Retrieve a list of all service names that have reported spans to the Jaeger backend.
      tags:
      - Services
      responses:
        '200':
          description: A list of service names.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: string
                  total:
                    type: integer
                  limit:
                    type: integer
                  offset:
                    type: integer
                  errors:
                    type: array
                    items:
                      $ref: '#/components/schemas/StructuredError'
        '500':
          description: Internal server error.
  /api/services/{service}/operations:
    get:
      operationId: getOperations
      summary: Get operations for a service
      description: Retrieve a list of operation names for a given service. Operations represent the individual endpoints or functions being traced within a service.
      tags:
      - Services
      parameters:
      - name: service
        in: path
        required: true
        description: The service name.
        schema:
          type: string
      - name: spanKind
        in: query
        description: Filter operations by span kind (e.g. server, client, producer, consumer).
        schema:
          type: string
      responses:
        '200':
          description: A list of operation names.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                          description: The operation name.
                        spanKind:
                          type: string
                          description: The span kind for this operation.
                  total:
                    type: integer
                  limit:
                    type: integer
                  offset:
                    type: integer
                  errors:
                    type: array
                    items:
                      $ref: '#/components/schemas/StructuredError'
        '404':
          description: Service not found.
        '500':
          description: Internal server error.
components:
  schemas:
    StructuredError:
      type: object
      description: A structured error returned by the API.
      properties:
        code:
          type: integer
          description: Error code.
        msg:
          type: string
          description: Error message.
        traceID:
          type: string
          description: Trace ID associated with the error, if applicable.