> ## Documentation Index
> Fetch the complete documentation index at: https://docs.useinvent.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get DNS Provider

> Detect the DNS provider for a domain via NS lookup. Returns provider info including logo, DNS settings URL, and auto-configure URL when supported.



## OpenAPI

````yaml https://api.useinvent.com/openapi.json get /orgs/{org_id}/emails/domains/{domain_id}/provider
openapi: 3.1.0
info:
  version: 1.0.0
  title: Invent API
servers:
  - url: https://api.useinvent.com
security:
  - bearerAuth: []
paths:
  /orgs/{org_id}/emails/domains/{domain_id}/provider:
    get:
      tags:
        - Orgs Emails
      summary: Get DNS Provider
      description: >-
        Detect the DNS provider for a domain via NS lookup. Returns provider
        info including logo, DNS settings URL, and auto-configure URL when
        supported.
      parameters:
        - schema:
            type: string
          required: true
          description: The ID of the org
          name: org_id
          in: path
        - schema:
            type: string
          required: true
          description: The ID or domain name of the email domain
          name: domain_id
          in: path
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailDomainProviderSchema'
components:
  schemas:
    EmailDomainProviderSchema:
      type: object
      properties:
        provider:
          type:
            - string
            - 'null'
          description: Provider identifier (e.g. "cloudflare", "godaddy")
        name:
          type:
            - string
            - 'null'
          description: Display name of the DNS provider
        logo_url:
          type:
            - string
            - 'null'
          description: URL to the provider logo icon
        dns_settings_url:
          type:
            - string
            - 'null'
          description: Deep link to the DNS settings page for this domain
        auto_config_url:
          type:
            - string
            - 'null'
          description: Domain Connect URL for one-click auto-configuration (when supported)
      required:
        - provider
        - name
        - logo_url
        - dns_settings_url
        - auto_config_url
      description: Detected DNS provider information for a domain
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: Bearer token authentication using your API key

````