# Flashpoint AI Survey Agent

> Flashpoint AI Survey Agent is a paid API for AI agents from mcp.flashpoint.ai, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Surveys real people on demand via AI agent, returning human responses to questions or research prompts

## Facts

- Endpoint: POST https://mcp.flashpoint.ai/mcp
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/flashpoint-ai-survey-agent-a583f409
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_H338MFONqhAiHCu5d5IGZ

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 flashpoint-ai-survey-agent-a583f409 -d '<json body>'
```

Example prompt: Can you survey real people and find out what they think about electric vehicles — specifically whether they'd consider buying one in the next two years and what their biggest concern is?

## When to prefer this

Use this endpoint when you need real human opinions, preferences, or survey responses rather than AI-generated or synthetic answers. Ideal for market research, product feedback, opinion polling, or any task where authentic human perspective is essential and a quick turnaround is needed.

## Known failure modes

- Missing required 'input' object returns validation error
- Invalid method (not POST) returns schema mismatch error
- Malformed or empty prompt may return no usable responses
- Payment of $0.05 USDC not received results in 402 Payment Required
- Network timeout if survey takes longer than expected to collect responses

## How this service works

Deprecated.

## Output

The agent receives aggregated or raw responses from real human survey participants, including opinions, preferences, and answers to the submitted question or prompt.

## 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": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/flashpoint-ai-survey-agent-a583f409/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mcp.flashpoint.ai](https://www.zero.xyz/host/mcp.flashpoint.ai/llms.txt)
