VictoriaMetrics Third-Party API

Endpoints compatible with other monitoring formats

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/victoriametrics-third-party-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

victoriametrics-third-party-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: VictoriaMetrics HTTP Admin Third-Party API
  version: '1'
  description: 'VictoriaMetrics is a fast open-source time-series database. It exposes a

    Prometheus-compatible HTTP query API plus a wide range of ingestion and

    export endpoints (JSON, CSV, Prometheus text exposition, native binary,

    InfluxDB Line Protocol, DataDog v1/v2, Graphite, OpenTSDB, federation).

    Authentication is optional and typically delegated to vmauth or fronted

    by mTLS.

    '
  contact:
    name: VictoriaMetrics Documentation
    url: https://docs.victoriametrics.com/
  license:
    name: Apache-2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
servers:
- url: http://{host}:{port}
  description: VictoriaMetrics single-node instance
  variables:
    host:
      default: localhost
    port:
      default: '8428'
security: []
tags:
- name: Third-Party
  description: Endpoints compatible with other monitoring formats
paths:
  /datadog/api/v1/series:
    post:
      tags:
      - Third-Party
      summary: Ingest metrics in DataDog v1 format
      operationId: datadogV1
      responses:
        '202':
          description: Accepted
  /datadog/api/v2/series:
    post:
      tags:
      - Third-Party
      summary: Ingest metrics in DataDog v2 format
      operationId: datadogV2
      responses:
        '202':
          description: Accepted
  /graphite/metrics/find:
    get:
      tags:
      - Third-Party
      summary: Graphite-compatible metric search
      operationId: graphiteFind
      responses:
        '200':
          description: Search results
  /api/put:
    post:
      tags:
      - Third-Party
      summary: OpenTSDB HTTP put compatibility
      operationId: opentsdbPut
      responses:
        '204':
          description: Accepted
components:
  securitySchemes:
    basic:
      type: http
      scheme: basic
      description: Optional HTTP Basic auth when fronted by vmauth