Openprovider NameserverService API

The NameserverService API from Openprovider — 2 operation(s) for nameserverservice.

Operations 5

GET /v1beta/dns/nameservers List nameservers #
POST /v1beta/dns/nameservers Create nameserver #
GET /v1beta/dns/nameservers/{name} Get nameserver #
PUT /v1beta/dns/nameservers/{name} Update nameserver #
DELETE /v1beta/dns/nameservers/{name} Delete nameserver #

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/openprovider-nameserverservice-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 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 Specification

openprovider-nameserverservice-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: REST AdditionalData Nameserver Service API
  version: 1.0.0-beta
servers:
- url: https://api.openprovider.eu
security:
- Bearer: []
tags:
- name: NameserverService
  x-displayName: Nameserver
paths:
  /v1beta/dns/nameservers:
    get:
      tags:
      - NameserverService
      summary: List nameservers
      operationId: ListNameservers
      parameters:
      - description: Nameserver name.
        name: name
        in: query
        schema:
          type: string
      - description: Nameserver IP.
        name: ip
        in: query
        schema:
          type: string
      - description: Nameserver IPv6.
        name: ip6
        in: query
        schema:
          type: string
      - description: Nameserver name search pattern. Wildcatd (*) can be used.
        name: pattern
        in: query
        schema:
          type: string
      - description: Limits the number of objects in the output.
        name: limit
        in: query
        schema:
          type: integer
          format: int32
          default: 100
      - description: Used to retrieve all objects from a certain offset up to the limit.
        name: offset
        in: query
        schema:
          type: string
      - description: Sorting type (asc/desc).
        name: order
        in: query
        schema:
          type: string
          default: asc
      - description: 'Field for sorting output. Possible values: id, name.'
        name: order_by
        in: query
        schema:
          type: string
          default: name
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/nameserverListNameserversResponse'
        default:
          description: (empty)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/errorError'
    post:
      tags:
      - NameserverService
      summary: Create nameserver
      operationId: CreateNameserver
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/nameserverCreateNameserverResponse'
        default:
          description: (empty)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/errorError'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/nameserverNameserver'
        required: true
  /v1beta/dns/nameservers/{name}:
    get:
      tags:
      - NameserverService
      summary: Get nameserver
      operationId: GetNameserver
      parameters:
      - description: Nameserver name
        name: name
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/nameserverGetNameserverResponse'
        default:
          description: (empty)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/errorError'
    put:
      tags:
      - NameserverService
      summary: Update nameserver
      operationId: UpdateNameserver
      parameters:
      - description: Nameserver name
        name: name
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/nameserverNameserverBoolResponse'
        default:
          description: (empty)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/errorError'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/nameserverNameserver'
        required: true
    delete:
      tags:
      - NameserverService
      summary: Delete nameserver
      operationId: DeleteNameserver
      parameters:
      - description: Nameserver name
        name: name
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/nameserverNameserverBoolResponse'
        default:
          description: (empty)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/errorError'
components:
  schemas:
    nameserverNameserverBoolResponse:
      type: object
      title: NameserverBoolResponse
      properties:
        code:
          type: integer
          format: int32
          title: Response code
        data:
          title: The data
          $ref: '#/components/schemas/nameserverNameserverBoolResponseData'
        desc:
          type: string
          title: Response description
        maintenance:
          type: boolean
          format: boolean
          title: Indicates if Openprovider API is on maintenance
        warnings:
          type: array
          title: The warnings
          items:
            $ref: '#/components/schemas/errorWarning'
      example:
        code: 0
        data:
          success: false
        desc: ''
    nameserverGetNameserverResponse:
      type: object
      title: GetNameserverResponse
      properties:
        code:
          type: integer
          format: int32
          title: Response code
        data:
          title: The data
          $ref: '#/components/schemas/nameserverNameserver'
        desc:
          type: string
          title: Response description
        maintenance:
          type: boolean
          format: boolean
          title: Indicates if Openprovider API is on maintenance
        warnings:
          type: array
          title: The warnings
          items:
            $ref: '#/components/schemas/errorWarning'
      example:
        code: 0
        data:
          ip: 127.0.0.1
          ip6: 0001:0001:0001:0001:0001:0001:0001:0001
          name: ns1.domain.com
        desc: ''
    nameserverCreateNameserverResponse:
      type: object
      title: CreateNameserverResponse
      properties:
        code:
          type: integer
          format: int32
          title: Response code
        data:
          title: The data
          $ref: '#/components/schemas/nameserverNameserver'
        desc:
          type: string
          title: Response description
        maintenance:
          type: boolean
          format: boolean
          title: Indicates if Openprovider API is on maintenance
        warnings:
          type: array
          title: The warnings
          items:
            $ref: '#/components/schemas/errorWarning'
      example:
        code: 0
        data:
          ip: 127.0.0.1
          ip6: 0001:0001:0001:0001:0001:0001:0001:0001
          name: ns1.domain.com
        desc: ''
    nameserverListNameserversResponseData:
      type: object
      title: ListNameserversResponseData
      properties:
        results:
          type: array
          title: Array of results
          items:
            $ref: '#/components/schemas/nameserverNameserver'
        total:
          type: integer
          format: int32
          title: Results count
      example:
        results:
        - ip: 127.0.0.1
          ip6: 0001:0001:0001:0001:0001:0001:0001:0001
          name: ns1.domain.com
        total: 9
    nameserverNameserver:
      type: object
      title: Nameserver
      properties:
        ip:
          type: string
          title: Nameserver IP
        ip6:
          type: string
          title: Nameserver IPv6
        name:
          type: string
          title: Nameserver name
      example:
        ip: 127.0.0.1
        ip6: 0001:0001:0001:0001:0001:0001:0001:0001
        name: ns1.domain.com
    nameserverNameserverBoolResponseData:
      type: object
      title: NameserverBoolResponseData
      properties:
        success:
          type: boolean
          format: boolean
          title: Indicates if request was successful
      example:
        success: false
    errorError:
      type: object
      title: Error
      properties:
        code:
          type: integer
          format: int32
          title: Error code
        data:
          type: string
          title: Additional error description
        desc:
          type: string
          title: Error description
      example:
        code: 0
        data: ''
        desc: ''
    nameserverListNameserversResponse:
      type: object
      title: ListNameserversResponse
      properties:
        code:
          type: integer
          format: int32
          title: Response code
        data:
          title: The data
          $ref: '#/components/schemas/nameserverListNameserversResponseData'
        desc:
          type: string
          title: Response description
        maintenance:
          type: boolean
          format: boolean
          title: Indicates if Openprovider API is on maintenance
        warnings:
          type: array
          title: The warnings
          items:
            $ref: '#/components/schemas/errorWarning'
      example:
        code: 0
        data:
          results:
          - ip: 127.0.0.1
            ip6: 0001:0001:0001:0001:0001:0001:0001:0001
            name: ns1.domain.com
          total: 9
        desc: ''
    errorWarning:
      type: object
      title: Warning
      properties:
        code:
          type: integer
          format: int32
          title: Warning code
        data:
          type: string
          title: Additional warning description
        desc:
          type: string
          title: Warning description
      example:
        code: 0
        data: ''
        desc: ''
  securitySchemes:
    Bearer:
      type: apiKey
      name: Authorization
      in: header
      x-linkTo: tag/descAuthentication
x-tagGroups:
- name: Introduction
  tags:
  - descAbout
  - descGettingStarted
  - descEndpoints
  - descAuthentication
- name: Quick Start
  tags:
  - descCustomerQuickstart
  - descDomainQuickstart
  - descTLDQuickstart
  - descDNSQuickstart
  - descSSLQuickstart
- name: Auth
  tags:
  - Auth
  - SpamExpert
- name: Billing
  tags:
  - InvoiceService
  - Payment
  - Transaction
- name: DNS
  tags:
  - DomainToken
  - NameserverService
  - NsGroupService
  - TemplateService
  - ZoneService
  - ZoneRecordService
- name: Domain
  tags:
  - DomainService
  - AdditionalData
  - CustomerAdditionalData
  - DomainPriceService
  - AuthCode
  - TldService
- name: EasyDmarc
  tags:
  - EasydmarcOrder
- name: Email template
  tags:
  - Email
- name: License
  tags:
  - LicenseService
- name: Reseller/Customer
  tags:
  - ContactService
  - Customer
  - EmailVerification
  - ResellerService
  - Settings
  - Statistics
  - TagService
- name: Spam Experts
  tags:
  - SEDomain
- name: SSL
  tags:
  - ApproverEmail
  - Csr
  - Order
  - OrderApproverEmail
  - OtpToken
  - Product