# InstaHuman Feedback API

> InstaHuman Feedback API is a paid API for AI agents from api.instahuman.com, paid per call via x402, $2/call, status unknown (last checked 2026-09-14).

Submits a web product URL or description for real human tester feedback, paying testers in USDC via x402.

## Facts

- Endpoint: POST https://api.instahuman.com/x402/feedback
- Price: $2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/instahuman-feedback-api-e181c6ac
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ftPhoiVEL7apRsR6uTzR4

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 instahuman-feedback-api-e181c6ac -d '<json body>'
```

Example prompt: Can you get real human feedback on my new landing page at https://myproduct.com — I want to know if the value proposition is clear and if the signup flow feels intuitive?

## When to prefer this

Choose this endpoint when you need authentic, qualitative feedback from real human users on a web product — not synthetic AI-generated opinions. Ideal for usability testing, landing page validation, or early-stage product research where human judgment and lived experience matter. Preferred over automated analysis tools when genuine human reaction and natural language commentary is the goal.

## Known failure modes

- Invalid or unreachable product URL returns an error
- Insufficient USDC balance causes payment failure via x402
- No testers available leads to timeout or delayed response
- Malformed request body returns 400 bad request
- Rate limiting if too many submissions in a short period

## How this service works

Real human feedback on your web product; testers paid in USDC.

## Output

The agent receives qualitative feedback responses from real human testers who have reviewed the submitted web product, including their impressions, usability observations, and any specific answers to prompted questions. Testers are compensated in USDC per the x402 payment protocol.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "the product/URL humans should evaluate"
  },
  "question": {
   "type": "string",
   "description": "what to probe"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "poll": {
   "type": "string"
  },
  "jobId": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/instahuman-feedback-api-e181c6ac/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.instahuman.com](https://www.zero.xyz/host/api.instahuman.com/llms.txt)
