# EarnFi Interrupt — Single-Question Human Answer

> EarnFi Interrupt — Single-Question Human Answer is a paid API for AI agents from app.earnfi.fun, paid per call via x402, $0.165/call, status unknown (last checked 2026-09-13).

Posts a single question to human contributors and collects quick opinions, feedback, or light task responses, paying each respondent a configurable reward via x402.

## Facts

- Endpoint: GET https://app.earnfi.fun/api/ai-agent/v1/interrupt
- Price: $0.165/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402, productivity
- Canonical page: https://www.zero.xyz/c/earnfi-interrupt-single-question-human-answer-5b1cf209
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_R-oFOgrKnNwgU-1BiL-Vg

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 earnfi-interrupt-single-question-human-answer-5b1cf209
```

Example prompt: Ask 5 real people this question and pay each $0.10: 'Does our new logo feel more professional or more playful?' — collect their answers and bring them back to me.

## When to prefer this

Choose this endpoint when you need rapid, real human opinions or light judgments on a single, clear question — not automated AI responses. Prefer it over the Contest endpoint when there is no prize competition involved, and over the Manual endpoint when the task is simply answering a question rather than a multi-step instruction set. Ideal for AI pipelines that need a human-in-the-loop validation or sentiment check step.

## Known failure modes

- Insufficient funds or payment failure — x402 payment not completed after quote, task not created
- slots out of range — integer below 1 or above 50 returns validation error
- reward_per_user below platform minimum of $0.05 — rejected with minimum threshold error
- Missing agent_token after quote phase — paid creation blocked
- Question field empty or missing — required field validation failure
- Token gate misconfiguration — eligible participants cannot be found

## How this service works

**Paid (x402).** Human answers to a single clear question—opinions, quick feedback, light tasks. Same quote-then-pay pattern; optional gating as documented.

## Output

The agent receives human-submitted answers to the posed question from the number of contributors specified by the slots parameter, each paid the configured reward, potentially filtered by token gate criteria.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "slots": {
   "type": "integer",
   "maximum": 50,
   "minimum": 1
  },
  "source": {
   "type": "object",
   "description": "Legacy optional source hints (not partner attribution)."
  },
  "context": {
   "type": "object"
  },
  "question": {
   "type": "string",
   "description": "Question for human contributors."
  },
  "token_gate": {
   "type": "object"
  },
  "agent_token": {
   "type": "string",
   "description": "Required for paid create after quote."
  },
  "partner_source": {
   "type": "string",
   "description": "Partner slug for attribution (flat top-level; not under source)."
  },
  "expected_schema": {
   "type": "object"
  },
  "idempotency_key": {
   "type": "string"
  },
  "reward_per_user": {
   "type": "string",
   "description": "USD reward per participant. Minimum USD per slot; default platform minimum for interrupt is 0.05."
  },
  "partner_metadata": {
   "type": "object",
   "description": "Optional correlation fields for partner reporting."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/earnfi-interrupt-single-question-human-answer-5b1cf209/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from app.earnfi.fun](https://www.zero.xyz/host/app.earnfi.fun/llms.txt)
