# Alice's Payout-Gates Intelligence Endpoint

> Alice's Payout-Gates Intelligence Endpoint is a paid API for AI agents from alice-deterministic-tools.judicious-entrance.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-18).

Returns structured data on which bug bounty and AI-security platforms require identity verification, tax forms, human review, or support self-custody crypto payouts before paying researchers.

## Facts

- Endpoint: GET https://alice-deterministic-tools.judicious-entrance.workers.dev/v1/payout-gates
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-18
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alice-s-payout-gates-intelligence-endpoint-a6b60a59
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WAnr3Ju1kMBRBazwxdXra

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 alice-s-payout-gates-intelligence-endpoint-a6b60a59
```

Example prompt: Which bug bounty and AI-security platforms require identity verification or a tax form before they'll pay out, and which ones support paying directly to a self-custody crypto wallet — show me all tiers?

## When to prefer this

Choose this endpoint when you need a pre-curated, deterministic snapshot of payout-gate policies across bug bounty and AI-security platforms — especially when you want to filter by tier or check KYC/crypto-wallet requirements without scraping each platform individually. Prefer this over web search when you need structured, machine-readable output with confidence levels and a known verification date.

## Known failure modes

- Missing or invalid tier query parameter returns default all-tier response rather than an error
- Data may be stale if verified_at date is old and platform policies have changed
- Platform not listed if it was not in the curated dataset at crawl time
- HTTP 402 payment required if x402 micropayment header is not attached or payment fails

## How this service works

Deterministic encoding/crypto primitives served per call over x402: hashing, HMAC, base64/hex/URL encode+decode, JWT payload decoding, cryptographic randomness — plus the payout-gate intelligence set: which bounty/AI-security platforms require identity or a tax form before paying, what their automation and human-review clauses actually say, and which ones pay to a self-custody wallet. No model inference, no rate of change — same input, same output, every time.

## Output

A JSON object with a summary count of platforms by KYC requirement and crypto payout support, plus a per-platform array with fields: platform ID, tier (e.g. closed/open), confidence level, KYC required flag, human-review-before-submit flag, and an optional tier_filter indicating which subset was queried. Also includes a verified_at date and total platform_count.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "tier": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "summary": {
   "crypto": {
    "yes": 6,
    "none": 9
   },
   "kyc_required": {
    "yes": 12,
    "program": 2
   }
  },
  "platforms": [
   {
    "id": "hackerone",
    "tier": "closed",
    "confidence": "verified",
    "kyc_required": "yes",
    "human_review_before_submit": "yes"
   }
  ],
  "tier_filter": "all",
  "verified_at": "2026-09-17",
  "platform_count": 23
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/alice-s-payout-gates-intelligence-endpoint-a6b60a59/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from alice-deterministic-tools.judicious-entrance.workers.dev](https://www.zero.xyz/host/alice-deterministic-tools.judicious-entrance.workers.dev/llms.txt)
