openapi: 3.1.0 info: title: DNSimple Accounts 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: Accounts paths: /accounts: get: summary: List accounts operationId: listAccounts responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/Collection' tags: - Accounts components: schemas: Collection: type: object additionalProperties: true properties: data: type: array items: type: object additionalProperties: true pagination: 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