Manage all your domains using Python

We've got the best API to manage your domain portfolio while saving time and money.

A quick tour of our Python API in under 7 minutes.Pointing up arrow

Pointing straight arrow

A quick tour of our Python API in under 7 minutes.

Fast and easy to use.

Quickly check domain availability, add a DNS record, and request an SSL certificate directly from Python.

Never regretted signing up long ago.

Marius Maximus avatar Marius Maximus, DevOps

Configuring server-wide DNS template is made simple for our Enterprise Network with DNSimple.

Rithika G. avatar Rithika G., Cloud Engineer

A dependable service with amazing technical support.

Valters J. avatar Valters J., DevOps Engineer

Best DNS Hosting Company by far.

Dorian Kind avatar Dorian Kind, Director of Data & Technologies

Case studies

Learn how our customers use DNSimple to automate their companies' domain management — from registering domains and adding zone records, to reselling domains and managing cloud infrastructure.

Developer tips

Open a free account in our Sandbox environment. Write, test, and verify your code before you move to production.

Test domain registration and issuing SSL certificates at no charge. Domains registered in Sandbox do not resolve, and SSL certificates should not be installed in any production environment.

Use our testing credit card to select a plan that matches the features that you'd like to test.

Follow this guide to obtain your token for your API calls.

Create an account in Sandbox

Start by writing small scripts that explore how you can use the API. Writing a custom report is a good way to get exposure to different API endpoints and how you can combine those.

custom_report.py
# Print my domains with expiration date, and associated SSL certificate if any.

domains = client.domains.list_domains(account_id).data
for domain in domains:
  print(f'- {domain.name}: {domain.state} ')
    if domain.state == "registered":
        print(f'expires on: {domain.expires_at}')
    certificates = client.certificates.list_certificates(account_id, domain.name).data
    if len(certificates):
        for certificate in certificates:
            print(f'    - {certificate.common_name}: {certificate.state} (years till expiry: {certificate.years} ')
            if certificate.auto_renew:
                print('but will auto renew')
            print(")")
          

Managing domains with similar configurations can be error prone. Use the Python API to automate DNS changes across multiple domains with DNS templates.

In the script below, we've created a template to apply to any domain after registration.

apply_dns_template.py
# Point a domain to hosting after registration.

template_attributes = Template.new('Domain registration template', 'after-domain-registration-template', 'Point a domain to hosting after registration')
template = client.templates.create_template(account_id, template_attributes).data

record = TemplateRecord.new('a', 'A', '192.168.1.1', ttl=600)

client.templates.create_template_record(account_id, template.sid, record)

# To keep this example short, registering the domain is omitted.

# Apply the template to the domain
client.templates.apply_template(account_id, template.sid, domain)
          

Reliable DNS at the right price

If you manage 100+ domains, get in touch.
We offer flexible plans with adjusted rates and discounts for Enterprise and Resellers.

Integrate in minutes with our API

Update DNS records, request SSL certificates, and transfer or register new domains from Python.

Manage your domains from Python.

Start your free 30-day trial

Photo by Christina @ wocintechchat.com on Unsplash