# FanPulse Fan Quiz Generator

> FanPulse Fan Quiz Generator is a paid API for AI agents from fanpulse-tau.vercel.app, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-13).

Generates 10 mixed-difficulty AI fan trivia questions with explanations for any franchise or artist

## Facts

- Endpoint: GET https://fanpulse-tau.vercel.app/api/fan/quiz
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fanpulse-fan-quiz-generator-183ba770
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__qW7NH99rasd0QCHG9dxs

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 fanpulse-fan-quiz-generator-183ba770
```

Example prompt: Can you generate a 10-question mixed-difficulty trivia quiz about the Harry Potter franchise, with explanations for each answer?

## When to prefer this

Use this endpoint when you need a ready-made, structured set of 10 fan trivia questions with explanations for a specific franchise or artist — ideal for trivia nights, fan apps, quiz bots, or community engagement features where you want mixed difficulty in one call.

## Known failure modes

- Unknown or too-obscure franchise returns low-quality or hallucinated questions
- Missing franchise/artist parameter returns an error or empty result
- Payment failure (x402) returns 402 Payment Required before quiz is generated
- Overly broad topic may produce generic rather than deep-cut questions

## How this service works

AI-generated fan trivia for fan and trivia agents. Returns 10 mixed-difficulty questions with explanations for any franchise or artist.

## Output

Returns a set of 10 trivia questions spanning mixed difficulty levels, each with the correct answer and an explanation, covering the specified franchise or artist.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "franchise"
     ],
     "properties": {
      "lang": {
       "type": "string",
       "description": "lang"
      },
      "topic": {
       "type": "string",
       "description": "topic"
      },
      "franchise": {
       "type": "string",
       "description": "franchise"
      },
      "difficulty": {
       "type": "string",
       "description": "easy|medium|hard|mixed"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fanpulse-fan-quiz-generator-183ba770/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fanpulse-tau.vercel.app](https://www.zero.xyz/host/fanpulse-tau.vercel.app/llms.txt)
