Extend an existing rental's expires_at by N billing periods
Extend an existing rental's expires_at by N billing periods. Pay-on-success: USDC settles only after the extension is actually in place, normally within a minute. Stack cap periods ∈ [1, 12]; price is the original (sku, region) rate × periods, and a probe without ?token= is quoted a sample at the entry rate. Same-box, same-IP — no mid-rental failover. Returns {status: 'renewing', predicted_expires_at} until settle completes; original expires_at remains in force until then.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://vps.phoneagent.xyz/rentals/:id/renew
| Category | Market data |
|---|---|
| Provider host | vps.phoneagent.xyz |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 0 from 0 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-26 | no x402 terms | 404 | 575 ms |
Example input (from the provider)
{
"body": {
"periods": 1
},
"bodyType": "json",
"method": "POST",
"pathParams": {
"id": "Unique identifier (UUID format)"
},
"queryParams": {
"periods": "1",
"token": "rt_xxxxxxxxxxxx"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"type": "object"
},
"bodyType": {
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"queryParams": {
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"current_expires_at": {
"description": "Existing expires_at; remains in force until renewal settles.",
"type": "integer"
},
"manual_step": {
"description": "What you have to do. Normally nothing \u2014 kept for agents written against the original shape.",
"type": "string"
},
"periods": {
"description": "Periods actually applied \u2014 compare against what you asked for.",
"type": "integer"
},
"predicted_expires_at": {
"description": "What expires_at will become after worker settles + re-cancels.",
"type": "integer"
},
"price_usdc": {
"description": "What the signed authorization is for, in USDC.",
"type": "string"
},
"rental_id": {
"type": "string"
},
"status": {
"enum": [
"renewing"
],
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}