# Run402 Team Tier Subscription

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

Sets the team tier ($20 USDC) on Run402 infrastructure for AI agents, auto-detecting whether to subscribe, renew, or upgrade.

## Facts

- Endpoint: POST https://api.run402.com/tiers/v1/team
- Price: $20/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/run402-team-tier-subscription-edde95e0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_S3YNPYO71xx0FLyDrM__4

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 run402-team-tier-subscription-edde95e0 -d '<json body>'
```

Example prompt: Sign me up for the Run402 team tier — go ahead and subscribe or upgrade my account automatically, whichever applies.

## When to prefer this

Use this endpoint when you need team-level access on Run402 and want auto-detection of whether to subscribe fresh, renew an expiring lease, or upgrade from a lower tier (prototype at $0.10 or hobby at $5.00). Choose this over the hobby or prototype tier endpoints when the use case requires team-scale infrastructure.

## Known failure modes

- Insufficient USDC balance to cover $20 payment — payment failure
- Invalid or missing wallet address — authentication error
- Tier already at a higher level and downgrade not supported — conflict error
- Network or facilitator timeout during payment processing
- Malformed request body — schema validation error

## How this service works

Set team tier ($20.00 USDC) — auto-detects subscribe/renew/upgrade

## Output

Returns a JSON object confirming the tier set to 'team', the action taken (subscribe, renew, or upgrade), the wallet address associated with the subscription, and the lease expiration timestamp.

## 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/run402-team-tier-subscription-edde95e0/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)
