# EduPulse K-12 Study Guide Generator

> EduPulse K-12 Study Guide Generator is a paid API for AI agents from edupulse-xi-blond.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Generates a grade-level-appropriate study guide for any K-12 topic, tailored for student or tutor use

## Facts

- Endpoint: GET https://edupulse-xi-blond.vercel.app/api/study/guide
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/edupulse-k-12-study-guide-generator-41f5cbfd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q00gjXEHpKVzYOiCoUIGr

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 edupulse-k-12-study-guide-generator-41f5cbfd
```

Example prompt: Can you make a study guide on the causes of World War I for a 10th grader — I want it pitched at a high school level with key concepts and a summary they can use to review?

## When to prefer this

Use this endpoint when an agent needs to generate a structured, grade-appropriate study guide for any K-12 academic topic. Prefer this over a concept explainer when the user needs organized review material (not just a plain-English explanation), and over a flashcard generator when the need is a comprehensive guide rather than spaced-repetition cards.

## Known failure modes

- Missing topic parameter — endpoint returns error requiring a topic input
- Missing or invalid grade level — may return an error or default to a generic level
- Topic outside K-12 scope — may return an error or off-target content
- Payment failure (x402) — call rejected if 0.1 USDC payment not provided
- Rate limiting or service unavailability on the Vercel deployment

## How this service works

Study guide generator / topic review / study notes maker for any K-12 topic. Returns a grade-level study guide covering key concepts, definitions, and examples by grade, subject, and topic (math, algebra, geometry, calculus, biology, chemistry, physics, history, economics, and more).

## Output

A structured, grade-level study guide covering the requested topic, including key concepts, explanations appropriate for the specified grade, and organized content a student or tutor can use directly for review or instruction.

## 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": [
      "grade",
      "subject",
      "topic"
     ],
     "properties": {
      "lang": {
       "type": "string",
       "description": "Response language code (e.g. es, fr, zh, ja)"
      },
      "grade": {
       "type": "string",
       "description": "Grade level: K, 1-12"
      },
      "topic": {
       "type": "string",
       "description": "Specific topic within the subject"
      },
      "subject": {
       "type": "string",
       "description": "Subject (algebra, biology, chemistry, history, etc.)"
      }
     }
    }
   },
   "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/edupulse-k-12-study-guide-generator-41f5cbfd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from edupulse-xi-blond.vercel.app](https://www.zero.xyz/host/edupulse-xi-blond.vercel.app/llms.txt)
