# CONNSKILL SMS Rental Order

> CONNSKILL SMS Rental Order is a paid API for AI agents from agent.connskill.com, paid per call via x402, $18/call, status unknown (last checked 2026-09-14).

Rents a temporary US phone number for SMS verification for 1 or 7 days, paid per call with USDC via x402

## Facts

- Endpoint: POST https://agent.connskill.com/sms/v1/sms-rental-order
- Price: $18/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/connskill-sms-rental-order-e830608c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MUTK8Dt-j-fFY4PSm9Sm3

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-sms-rental-order-e830608c -d '<json body>'
```

Example prompt: Rent me a US phone number for 7 days so I can receive SMS verification codes — I don't want to use my personal number.

## When to prefer this

Choose this endpoint when an agent or user needs a real, rentable US phone number to receive SMS messages (e.g. for verification codes or 2FA) without creating an account or committing to a subscription. Ideal for short-lived automation tasks requiring a throwaway number. Prefer this over VoIP services that may be blocked by major platforms, and when pay-per-use USDC billing via x402 is acceptable.

## Known failure modes

- Invalid 'days' value (must be 1 or 7) returns a 400 validation error
- Payment failure or insufficient USDC balance causes x402 payment error before number is provisioned
- No available US numbers in pool returns a 503 or capacity error
- Expired rental — attempting to use the orderId after expiresAt returns a 404 or expired-order error

## 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 the rented US phone number (e.g. +12765550123), a unique order ID, rental duration in days, expiry timestamp (Unix), current status ('rented'), price in USD, and a next-step instruction showing how to poll for incoming SMS messages using the order ID.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "days": {
   "enum": [
    1,
    7
   ],
   "type": "integer",
   "description": "Rental duration in days (US number)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "days": 7,
  "next": "POST /v1/sms-rental-messages {\"orderId\":\"R1a2b3c4d5e6\"}",
  "number": "+12765550123",
  "status": "rented",
  "orderId": "R1a2b3c4d5e6",
  "sellUsd": 18,
  "expiresAt": 1793000000
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/connskill-sms-rental-order-e830608c/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)
