Register a new domain
Claim the name a project needs the moment it is decided. One call places the order and pays from your pre-funded balance, no checkout page and no card to type.
An agent that builds a site should be able to buy the domain too. AgentRefills lets it register a new name, renew one before it lapses and pay for it in the same run, all under the spend caps and approval rules you set.
Domains are one of six product families behind a single API. An agent calls the same tools it uses for gift cards or compute, and gets a name it can actually point DNS at.
Claim the name a project needs the moment it is decided. One call places the order and pays from your pre-funded balance, no checkout page and no card to type.
Keep the names you already run alive. An agent watching expiry dates can renew on schedule so a live site never drops offline over a missed renewal.
When an agent provisions compute and scaffolds an app, it can grab a matching domain in the same workflow, so a fresh project ships with a real address from day one.
Buying a domain is the same purchase flow as everything else on AgentRefills. Amounts are integer minor units, a client_ref makes the call idempotent, and anything over your threshold pauses for a human before money moves.
# Register the domain the agent just picked import requests resp = requests.post( "https://agentrefills.com/v1/purchases", headers={"Authorization": f"Bearer {API_KEY}"}, json={ "brand": "domains", "sku": "register-1yr", "domain": "my-new-project.com", "amount_minor": 1200, # $12.00, integer cents "client_ref": "proj-8842-domain", }, ) task = resp.json() if task["status"] == "APPROVAL_REQUIRED": # Over your threshold: a human is pinged in Slack. # Re-send the same client_ref later to resume, never double-charge. wait_for_approval(task["task_id"])
The point is not to hand an agent an open wallet. It is to let it finish a task without a human stapled to every small purchase, while you keep hard limits and a clean record.
A routine domain registration inside your cap goes through on its own. The agent keeps moving and only stops for the amounts you flagged as worth a look.
Daily and monthly caps, a brand allowlist and a kill switch mean a runaway loop cannot outspend the limits you set. The ceiling is yours, not the agent's.
Every registration and renewal lands in a double-entry ledger and a trace you can replay. When finance asks what a domain cost and why, the answer is one query away.
Start in the free sandbox, set your caps and approval threshold, then let an agent register and renew names as part of the build. No floats, no double charges, full audit.