The DNS API for Modern Developers
Stop wrestling with clunky web panels. Manage your DNS records programmatically with our simple, reliable, and ridiculously fast API.
/bin/bash
# Create a new A record
curl -X POST https://endpointdns.com:8080/v1/zones/example.com/records \
-H "Authorization: Bearer sk_123..." \
-d '{ "type": "A", "name": "www", "value": "192.0.2.1", "ttl": 3600 }'