# Renew a Domain Registration

> Renew a Domain Registration is a free API for AI agents from domains.rapidruntime.com, callable via MPP, Free, status unknown (last checked 2026-09-14).

Extends the registration period of an existing domain by 1–10 years, charging the renewal price (with premium domain support).

## Facts

- Endpoint: POST https://domains.rapidruntime.com/api/v1/domains/{domain}/renew
- Price: Free
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Provider: domains.rapidruntime.com
- Website: https://domains.rapidruntime.com
- Canonical page: https://www.zero.xyz/c/domains-rapidruntime-com-renew-a-domain-registration-e217d8ae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FInM3jA0pl8crxyEqxkog

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability domains-rapidruntime-com-renew-a-domain-registration-e217d8ae -d '<json body>'
```

Example prompt: Renew my domain 'myawesomeblog.com' through RapidRuntime for two more years — it's a standard domain so no premium price needed.

## When to prefer this

Use this endpoint when you need to extend the registration of an already-owned domain. Should be preceded by a pricing check for premium domains. Prefer this over re-registration flows; it is the canonical renewal action for domains managed under this MPP-backed registrar.

## Known failure modes

- Domain not found in account — returns error if the domain path parameter doesn't match a registered domain
- Missing purchasePrice for premium domain — renewal rejected if premium domain requires price confirmation
- Years out of range — error if renewal period is less than 1 or greater than 10
- Insufficient funds or payment failure — transaction rejected
- Domain in locked or transfer-pending state — renewal may be blocked

## How this service works

Extend domain registration. Check pricing first for premium domains.

## Output

Returns an order ID, updated domain object with new expiry date, lock status, autorenew flag, and full WHOIS contact details, plus the total amount paid for the renewal.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "years": {
   "type": "number",
   "maximum": 10,
   "minimum": 1,
   "description": "Renewal years (default 1)"
  },
  "purchasePrice": {
   "type": "number",
   "description": "Required for premium domains"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "domain",
  "order",
  "totalPaid"
 ],
 "properties": {
  "order": {
   "type": "number"
  },
  "domain": {
   "type": "object",
   "required": [
    "domainName",
    "locked",
    "autorenewEnabled",
    "expireDate",
    "createDate"
   ],
   "properties": {
    "locks": {
     "type": "array",
     "items": {
      "type": "string"
     }
    },
    "locked": {
     "type": "boolean"
    },
    "contacts": {
     "type": "object",
     "required": [
      "registrant",
      "admin",
      "tech",
      "billing"
     ],
     "properties": {
      "tech": {
       "type": "object",
       "required": [
        "firstName",
        "lastName",
        "address1",
        "city",
        "state",
        "zip",
        "country",
        "email",
        "phone"
       ],
       "properties": {
        "fax": {
         "type": "string"
        },
        "zip": {
         "type": "string"
        },
        "city": {
         "type": "string"
        },
        "email": {
         "type": "string"
        },
        "phone": {
         "type": "string"
        },
        "state": {
         "type": "string"
        },
        "country": {
         "type": "string"
        },
        "address1": {
         "type": "string"
        },
        "address2": {
         "type": "string"
        },
        "lastName": {
         "type": "string"
        },
        "firstName": {
         "type": "string"
        },
        "companyName": {
         "type": "string"
        }
       }
      },
      "admin": {
       "type": "object",
       "required": [
        "firstName",
        "lastName",
        "address1",
        "city",
        "state",
        "zip",
        "country",
        "email",
        "phone"
       ],
       "properties": {
        "fax": {
         "type": "string"
        },
        "zip": {
         "type": "string"
        },
        "city": {
         "type": "string"
        },
        "email": {
         "type": "string"
        },
        "phone": {
         "type": "string"
        },
        "state": {
         "type": "string"
        },
        "country": {
         "type": "string"
        },
        "address1": {
         "type": "string"
        },
        "address2": {
         "type": "string"
        },
        "lastName": {
         "type": "string"
        },
        "firstName": {
         "type": "string"
        },
        "companyName": {
         "type": "string"
        }
     
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/domains-rapidruntime-com-renew-a-domain-registration-e217d8ae/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from domains.rapidruntime.com](https://www.zero.xyz/host/domains.rapidruntime.com/llms.txt)
