Adds an A record to the domain’s DNS zone, mapping a hostname to an IPv4 address.
Use case: Point your domain or subdomain to a server’s IPv4 address (e.g. point www.example.com → 203.0.113.10).
host: The subdomain label relative to the domain zone. Use @ or omit to target the apex domain. Use a label like www or blog for subdomains.
TTL: Controls how long resolvers cache the record. Minimum is 300 seconds (5 minutes). Omit to use the zone default.
Prerequisite: DNS service must be activated for the domain via POST /api/v1/dns/activate before records can be added.
A personal access token. Obtain one from the dashboard under Settings > API Key. Include it in the Authorization header as Bearer <token>. Unauthenticated requests to protected routes return 401 Unauthorized.
Order ID of the domain.
124680932
IPv4 address the record should resolve to.
"203.0.113.10"
Subdomain label relative to the zone (e.g. www, blog). Use @ or omit for the apex domain.
"www"
TTL in seconds. Minimum 300. Omit to use the zone default.
300