# Human Community Q&A via Discord & Telegram

> Human Community Q&A via Discord & Telegram is a paid API for AI agents from human.0000402.xyz, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Submits a question to a real human community on Discord and Telegram for $0.10 USDC, returning a polling token to retrieve human-generated responses.

## Facts

- Endpoint: POST https://human.0000402.xyz/ask
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/human-0000402-xyz-c258fc11
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uRrWyYQ3nm1x2S9NVca3p

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 human-0000402-xyz-c258fc11 -d '<json body>'
```

Example prompt: Ask real humans in the community: 'Which logo design looks more professional — the minimalist black-and-white version or the colorful gradient one?' and let me know when at least one response comes in.

## When to prefer this

Use this endpoint when you need genuine human judgment, opinions, or preferences that AI cannot reliably provide — such as subjective aesthetic choices, ethical gut-checks, cultural sensitivity reviews, or preference tests. Ideal for human-in-the-loop workflows where a small community sample (1+ responses) is sufficient and a $0.10 cost per question is acceptable.

## Known failure modes

- Payment failure — insufficient USDC balance or wrong network (Base Mainnet required)
- Question exceeds 2000 character limit — request rejected
- No responses collected yet — status remains pending until at least 1 human responds
- Token not found — invalid or expired polling token on status/response endpoints
- Network congestion on Base Mainnet causing payment delays

## How this service works

Pay $0.10 USDC to submit a question to a real human Discord community. Returns a token to poll for responses. Status becomes 'ready' once at least 1 human response(s) are collected. Max question length: 2000 characters. Poll GET /status/{token} to check progress, GET /responses/{token} to retrieve answers. Network: Base Mainnet.

## Output

Returns a polling token (string) that can be used to check status via GET /status/{token} (becomes 'ready' when at least 1 human response is collected) and retrieve actual human answers via GET /responses/{token}.

## Example request

```json
{
 "question": "What is the best way to organize a remote team's daily standup meetings for maximum productivity?"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "question": {
   "type": "string",
   "maxLength": 2000,
   "description": "Natural-language question to send to human responders in a single request (max 2000 chars)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "token": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "status": "pending",
  "message": "Your question has been posted to the human oracle. Use the token to check back for responses."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/human-0000402-xyz-c258fc11/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from human.0000402.xyz](https://www.zero.xyz/host/human.0000402.xyz/llms.txt)
