DNSimple Zones API
The Zones API from DNSimple — 4 operation(s) for zones.
The Zones API from DNSimple — 4 operation(s) for zones.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/dnsimple-zones-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: DNSimple Accounts Zones API
description: The DNSimple API enables programmatic management of domains, DNS zones, records, contacts, and certificates within a DNSimple account.
version: '2'
servers:
- url: https://api.dnsimple.com/v2
description: DNSimple API v2
security:
- bearerAuth: []
tags:
- name: Zones
paths:
/{account}/zones:
get:
summary: List zones
operationId: listZones
parameters:
- $ref: '#/components/parameters/Account'
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/Collection'
tags:
- Zones
/{account}/zones/{zone}:
get:
summary: Get zone
operationId: getZone
parameters:
- $ref: '#/components/parameters/Account'
- $ref: '#/components/parameters/Zone'
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/SingleResource'
tags:
- Zones
/{account}/zones/{zone}/records:
get:
summary: List zone records
operationId: listZoneRecords
parameters:
- $ref: '#/components/parameters/Account'
- $ref: '#/components/parameters/Zone'
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/Collection'
tags:
- Zones
post:
summary: Create zone record
operationId: createZoneRecord
parameters:
- $ref: '#/components/parameters/Account'
- $ref: '#/components/parameters/Zone'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/ZoneRecord'
responses:
'201':
description: Zone record created
content:
application/json:
schema:
$ref: '#/components/schemas/SingleResource'
tags:
- Zones
/{account}/zones/{zone}/records/{record}:
get:
summary: Get zone record
operationId: getZoneRecord
parameters:
- $ref: '#/components/parameters/Account'
- $ref: '#/components/parameters/Zone'
- $ref: '#/components/parameters/Record'
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '#/components/schemas/SingleResource'
tags:
- Zones
patch:
summary: Update zone record
operationId: updateZoneRecord
parameters:
- $ref: '#/components/parameters/Account'
- $ref: '#/components/parameters/Zone'
- $ref: '#/components/parameters/Record'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/ZoneRecord'
responses:
'200':
description: Zone record updated
tags:
- Zones
delete:
summary: Delete zone record
operationId: deleteZoneRecord
parameters:
- $ref: '#/components/parameters/Account'
- $ref: '#/components/parameters/Zone'
- $ref: '#/components/parameters/Record'
responses:
'204':
description: Zone record deleted
tags:
- Zones
components:
parameters:
Record:
name: record
in: path
required: true
schema:
type: string
Account:
name: account
in: path
required: true
schema:
type: string
Zone:
name: zone
in: path
required: true
schema:
type: string
schemas:
ZoneRecord:
type: object
additionalProperties: true
Collection:
type: object
additionalProperties: true
properties:
data:
type: array
items:
type: object
additionalProperties: true
pagination:
type: object
additionalProperties: true
SingleResource:
type: object
additionalProperties: true
properties:
data:
type: object
additionalProperties: true
securitySchemes:
bearerAuth:
type: http
scheme: bearer
x-generated-from: https://developer.dnsimple.com/
x-generated-by: claude-crawl-2026-05-08