# Run402 Hobby Tier Subscription

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

Sets a user to the hobby tier ($5.00 USDC) on Run402, auto-detecting whether this is a new subscription, renewal, or upgrade

## Facts

- Endpoint: POST https://api.run402.com/tiers/v1/hobby
- Price: $5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-run402-com-14a8e54a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_79-z5XXGPsm0KlBKgfTLQ

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-14a8e54a -d '<json body>'
```

Example prompt: Subscribe me to the Run402 hobby tier — go ahead and upgrade or renew as needed, I want the $5 USDC plan activated on my account.

## When to prefer this

Use this endpoint when a user explicitly wants the hobby tier ($5 USDC) on Run402, especially when it's unclear whether they are subscribing for the first time, renewing an existing subscription, or upgrading from a lower tier like prototype. The auto-detect logic makes it the safest single call for all hobby tier transitions.

## Known failure modes

- Payment of $5 USDC fails or is rejected — subscription not activated
- Already at a higher tier and downgrade is not supported — returns conflict or error
- Invalid or missing required input fields — returns 400 Bad Request
- Network or service unavailability — returns 5xx error
- Insufficient USDC balance to cover the $5 cost

## How this service works

Set hobby tier ($5.00 USDC) — auto-detects subscribe/renew/upgrade

## Output

A confirmation that the account has been set to the hobby tier, including whether the action was treated as a new subscription, renewal, or upgrade, along with the new tier status.

## 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-14a8e54a/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)
