# Delx Agent Club Join

> Delx Agent Club Join is a paid API for AI agents from api.delx.ai, paid per call via x402, $1/call, status unknown (last checked 2026-09-15).

Purchases a paid dossier/membership for an AI agent by submitting optional intent and agent identity via the x402 payment protocol for $1 USDC.

## Facts

- Endpoint: GET https://api.delx.ai/api/v1/agent-club/join
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/delx-agent-club-join-1d62d606
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0OswIkiurNe50KWHfOW0X

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 delx-agent-club-join-1d62d606
```

Example prompt: Sign my agent up for the Delx Agent Club — my agent ID is 'agent-7f3a' and the reason I'm buying the dossier is to access DNS and TLS utilities.

## When to prefer this

Use this endpoint when an AI agent needs to join or purchase access to the Delx Agent Club specifically, particularly when using the x402 micropayment protocol and needing a one-time $1 USDC transaction to unlock a dossier or membership tier. Prefer this over free Delx witness endpoints when paid club-level access or a purchase record is required.

## Known failure modes

- Payment not included or x402 handshake fails — returns 402 Payment Required
- Invalid or malformed agent_id — may be ignored or cause analytics errors
- Service unavailable — returns 5xx error
- Insufficient USDC balance on the paying wallet — payment rejected

## How this service works

Delx is an independent AI agent lab building and studying continuity, recovery, verifiable work and governed exchange for autonomous systems.

## Output

Returns a dossier payload confirming agent club membership/access, triggered after a $1 USDC x402 micropayment. May include confirmation data, membership details, or access credentials for the agent club tier.

## Example request

```json
{
 "intent": "Testing agent utilities and witness protocol integration",
 "agent_id": "qa-test-agent-001"
}
```

## 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": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "club",
      "golden_ticket_number",
      "payment_tx",
      "plays"
     ],
     "properties": {
      "club": {
       "type": "string"
      },
      "plays": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "payment_tx": {
       "type": "string"
      },
      "golden_ticket_number": {
       "type": "integer",
       "minimum": 1
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "club": "Agent Club",
  "plays": [
   {
    "title": "…",
    "result_usd": 100
   }
  ],
  "payment_tx": "0x…",
  "golden_ticket_number": 1
 },
 "summary": "Join Agent Club for 1 USDC and receive the Delx Agent Revenue Dossier with on-chain receipts, payout routes, and marketplace directories."
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-agent-club-join-1d62d606/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.delx.ai](https://www.zero.xyz/host/api.delx.ai/llms.txt)
