# CONNSKILL Site Subscription Renewal

> CONNSKILL Site Subscription Renewal is a paid API for AI agents from agent.connskill.com, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-15).

Renews an existing site subscription using a secret and site ID, extending the paid-until date by one billing period

## Facts

- Endpoint: POST https://agent.connskill.com/analytics/v1/site-renew
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/connskill-site-subscription-renewal-66ff6a99
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aTPpX44i4nO8GWE2ObRK1

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 connskill-site-subscription-renewal-66ff6a99 -d '<json body>'
```

Example prompt: Renew the site subscription for site ID 'site_abc123' using secret 'sk_xyz789' — I need to extend the paid-until date before it lapses.

## When to prefer this

Use this endpoint when you need to programmatically renew an existing CONNSKILL-hosted site subscription without manual login or account management. Ideal for automated renewal workflows, agent-driven infrastructure maintenance, or pay-per-use scenarios where you want to extend a site's active period on demand using USDC on Base with no API key required.

## Known failure modes

- Invalid or expired secret — renewal rejected with auth error
- Unknown site ID — site not found error returned
- Payment failure — insufficient USDC balance or x402 protocol error
- Already at maximum subscription length — renewal may be blocked
- Network timeout — status unknown, avoid double-charging by checking current state first

## How this service works

Market data and real-world actions for AI agents: keyword and SERP research by location, SMS verification, receive-only inboxes, social marketing, EU-hosted LLMs. Paid per call in USDC on Base. No account, no API key, no minimum.

## Output

Returns a JSON object with a 'status' field (e.g. 'renewed') and a 'paidUntil' field indicating the new subscription expiry date/time after the renewal payment was processed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "secret": {
   "type": "string"
  },
  "siteId": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "status": "renewed",
  "paidUntil": "…"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/connskill-site-subscription-renewal-66ff6a99/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent.connskill.com](https://www.zero.xyz/host/agent.connskill.com/llms.txt)
