# Run402 Prototype Tier Subscription

> Run402 Prototype Tier Subscription is a paid API for AI agents from api.run402.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Sets a wallet to the prototype tier ($0.10 USDC) on Run402, auto-detecting whether to subscribe, renew, or upgrade

## Facts

- Endpoint: POST https://api.run402.com/tiers/v1/prototype
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-run402-com-27eb596a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qWoCPi7p5w8mv-0464xz4

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 api-run402-com-27eb596a -d '<json body>'
```

Example prompt: Set my wallet on Run402 to the prototype tier — I want to subscribe now for $0.10 USDC and get access activated.

## When to prefer this

Use this endpoint when you need to activate or renew the entry-level prototype tier on Run402 for $0.10 USDC. Choose this over the hobby tier endpoint when only basic/prototype-level API access is needed and cost minimization is important.

## Known failure modes

- Payment not received or insufficient USDC — returns 402 Payment Required
- Invalid or missing wallet address — returns 400 Bad Request
- Tier already active and not expired — may return idempotent subscribe or renew depending on state
- Network or provider outage — returns 5xx error

## How this service works

Set prototype tier ($0.10 USDC) — auto-detects subscribe/renew/upgrade

## Output

Returns the activated tier name ('prototype'), the action performed (subscribe/renew/upgrade), the wallet address, previous tier (null if new), lease start and expiry timestamps (7-day lease), and remaining allowance in USD micros.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "POST",
  "queryParams": {}
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-run402-com-27eb596a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.run402.com](https://www.zero.xyz/host/api.run402.com/llms.txt)
