# Alice's Deterministic Toolkit – Platform Fit (Bounty/AI-Security Payout Intelligence)

> Alice's Deterministic Toolkit – Platform Fit (Bounty/AI-Security Payout 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 structured intelligence on whether a specific bug bounty or AI-security platform requires KYC/identity verification or a tax form before paying out, what their automation and human-review policies say, and whether they pay to self-custody wallets.

## Facts

- Endpoint: GET https://alice-deterministic-tools.judicious-entrance.workers.dev/v1/platform-fit
- 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-deterministic-toolkit-platform-fit-bounty-ai-security-payout-6ee99c51
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W-ztvzjA9k8IAsaqdlb4s

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-deterministic-toolkit-platform-fit-bounty-ai-security-payout-6ee99c51
```

Example prompt: Does HackerOne require identity verification or a tax form before they pay out a bounty, and do they support paying to a self-custody wallet?

## When to prefer this

Choose this endpoint when an agent or user needs deterministic, curated intelligence about bug bounty or AI-security platform payout policies — specifically KYC requirements, tax form obligations, automation vs human-review clauses, and self-custody wallet eligibility. Prefer this over general web search when you need structured, versioned, confidence-rated policy data that doesn't change with each inference. Not suitable for real-time platform status or live payment processing.

## Known failure modes

- Unknown or unsupported platform name returns no match or low-confidence result
- Stale policy data if platform has updated its KYC or payout rules after the verified_at date
- Missing 'platform' query parameter returns a validation error
- Platform name typo or variant (e.g. 'hack1' vs 'hackerone') may fail to match the canonical ID
- Payment failure via x402 protocol blocks the call before a result is returned

## 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 the queried platform's ID, KYC requirements (identity rail name and whether it's required), payment tier classification (e.g. closed/open), confidence level of the data, and the date the information was last verified. Example fields: ok, query, platform.id, platform.kyc.rail, platform.kyc.required, platform.tier, platform.confidence, verified_at.

## 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": {
      "platform": {
       "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,
  "query": "hackerone",
  "platform": {
   "id": "hackerone",
   "kyc": {
    "rail": "Veriff",
    "required": "yes"
   },
   "tier": "closed",
   "confidence": "verified"
  },
  "verified_at": "2026-09-17"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/alice-s-deterministic-toolkit-platform-fit-bounty-ai-security-payout-6ee99c51/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)
