DNS Check DNS Record Monitoring API

The DNS Record Monitoring API from DNS Check — 1 operation(s) for dns record monitoring.

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/dns-check-dns-record-monitoring-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

dns-check-dns-record-monitoring-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: DNS Check DNS Record Monitoring API
  description: RESTful JSON API for DNS Check, a domain DNS monitoring service. The API is read-only via HTTP GET and authenticates with a 32-character `api_key` query parameter. It exposes endpoints for DNS record monitoring and DNS record group monitoring across record types A, AAAA, ALIAS, CAA, CNAME, MX, NS, PTR, SOA, SPF, SRV, and TXT.
  version: '1.0'
servers:
- url: https://www.dnscheck.co
  description: DNS Check production
security:
- apiKey: []
tags:
- name: DNS Record Monitoring
paths:
  /api/v1/groups/{group_uuid}/{record_id}:
    get:
      tags:
      - DNS Record Monitoring
      summary: Get DNS record monitoring status
      description: Returns monitoring data for one record, all records in a group, or all records across all groups. Use `all` for `group_uuid` to query every group, and `all` for `record_id` to query every record in the selected group.
      operationId: getDnsRecordMonitoring
      parameters:
      - name: group_uuid
        in: path
        required: true
        description: 36-character group UUID, or `all` for every group
        schema:
          type: string
      - name: record_id
        in: path
        required: true
        description: Integer DNS record ID, or `all` for every record
        schema:
          type: string
      - name: api_key
        in: query
        required: true
        description: 32-character DNS Check API key
        schema:
          type: string
      responses:
        '200':
          description: DNS record monitoring data
          content:
            application/json:
              schema:
                type: object
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: query
      name: api_key