Yugabyte voyager-metrics API

APIs for getting Voyager data migrations metrics

Operations 1

GET /migration_metrics Get Voyager data migration metrics #

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/yugabyte-voyager-metrics-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

yugabyte-voyager-metrics-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact:
    email: support@yugabyte.com
    name: Yugabyte Cloud Support
    url: https://support.yugabyte.com/
  description: YugabyteDB as a Service
  license:
    name: Properietary (TBD)
    url: https://www.yugabyte.com/yugabyte-cloud-terms-of-service
  termsOfService: https://www.yugabyte.com/yugabyte-cloud-terms-of-service
  title: Yugabyte Cloud backup-info Voyager Metrics API
  version: v1
servers:
- description: Endpoint of the API server
  url: '{protocol}://{host_port}/api'
  variables:
    protocol:
      default: http
      enum:
      - http
      - https
    host_port:
      default: localhost:1323
security:
- BearerAuthToken: []
tags:
- description: APIs for getting Voyager data migrations metrics
  name: voyager-metrics
paths:
  /migration_metrics:
    get:
      description: Get Voyager data migration metrics
      operationId: GetVoyagerDataMigrationMetrics
      parameters:
      - description: uuid of the voyager migration task
        explode: false
        in: query
        name: uuid
        required: true
        schema:
          format: uuid
          type: string
        style: form
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VoyagerMigrateDataMetrics'
          description: Voyager data migration metrics response
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
          description: API Error
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
          description: API Error
      summary: Get Voyager data migration metrics
      tags:
      - voyager-metrics
components:
  schemas:
    VoyagerMigrateDataMetrics:
      description: List of YB Voyager Data migrations metrics
      example:
        metrics:
        - count_total_rows: 5
          migration_uuid: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
          migration_phase: 0
          schema_name: schema_name
          count_live_rows: 1
          invocation_timestamp: invocation_timestamp
          table_name: table_name
          status: 6
        - count_total_rows: 5
          migration_uuid: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
          migration_phase: 0
          schema_name: schema_name
          count_live_rows: 1
          invocation_timestamp: invocation_timestamp
          table_name: table_name
          status: 6
      properties:
        metrics:
          items:
            $ref: '#/components/schemas/VoyagerMigrateDataMetricsDetails'
          type: array
      title: YB Voyager Migrate Data metrics Info
      type: object
    VoyagerMigrateDataMetricsDetails:
      description: Voyager data migration metrics details
      example:
        count_total_rows: 5
        migration_uuid: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
        migration_phase: 0
        schema_name: schema_name
        count_live_rows: 1
        invocation_timestamp: invocation_timestamp
        table_name: table_name
        status: 6
      properties:
        migration_uuid:
          format: uuid
          type: string
        table_name:
          type: string
        schema_name:
          type: string
        migration_phase:
          type: integer
        status:
          type: integer
        count_live_rows:
          format: int64
          type: integer
        count_total_rows:
          format: int64
          type: integer
        invocation_timestamp:
          type: string
      title: Voyager Migrate Data Metrics details
      type: object
    ApiError_error:
      properties:
        detail:
          description: Error message
          type: string
        status:
          description: Error code
          type: integer
      type: object
    ApiError:
      properties:
        error:
          $ref: '#/components/schemas/ApiError_error'
      title: API Error
      type: object
  securitySchemes:
    BearerAuthToken:
      bearerFormat: JWT
      scheme: bearer
      type: http