# Alice's No-KYC Bounty Platform Intelligence

> Alice's No-KYC Bounty Platform Intelligence 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 a structured list of bug bounty and AI-security platforms that do not require KYC/identity verification or tax forms before paying, including their payout automation, human-review policies, and self-custody wallet support.

## Facts

- Endpoint: GET https://alice-deterministic-tools.judicious-entrance.workers.dev/v1/no-kyc-bounties
- 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-no-kyc-bounty-platform-intelligence-da21c073
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pefIkl6cU6x1vLjZ4Rp32

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-no-kyc-bounty-platform-intelligence-da21c073
```

Example prompt: Can you pull up the list of bug bounty and AI-security platforms that don't require KYC or a tax form before paying out — ideally ones that support self-custody wallet payouts? Show me all tiers.

## When to prefer this

Choose this endpoint when you need a deterministic, curated reference list of bug bounty or AI-security platforms that have no KYC or tax-form requirement, rather than scraping or inferring this from live platform pages. It is ideal for AI agents that need to autonomously select where to submit security research without triggering identity gating, or for developers researching payout automation clauses and self-custody wallet compatibility across platforms. It is not suitable for real-time policy change monitoring or for general crypto payment routing.

## Known failure modes

- Invalid tier query parameter value returns an error or empty result
- Payment failure via x402 protocol blocks response
- Stale data if verified_at date is old and platform policies have since changed
- No platforms returned if an overly restrictive tier filter is applied

## 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 containing an array of platform records, each with a platform ID, KYC requirement status (e.g. 'no'), and tier classification (e.g. 'open'). Also includes the applied tier filter, a verified_at date indicating when the data was last confirmed, available tier values, and an optional warning field. The data is deterministic — same query returns same result for the same verified snapshot.

## 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,
  "warning": "…",
  "platforms": [
   {
    "id": "hats-finance",
    "kyc": "no",
    "tier": "open"
   }
  ],
  "tier_filter": "all",
  "verified_at": "2026-09-17",
  "tiers_available": [
   "all",
   "open",
   "mixed",
   "unverified-seam"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/alice-s-no-kyc-bounty-platform-intelligence-da21c073/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)
