# EduPulse Homeschool Curriculum Matcher

> EduPulse Homeschool Curriculum Matcher 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).

Returns personalized homeschool curriculum recommendations with side-by-side comparisons filtered by grade level, subject, learning style, and budget.

## Facts

- Endpoint: GET https://edupulse-xi-blond.vercel.app/api/edu/curriculum-match
- 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-homeschool-curriculum-matcher-2f913744
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bBUbVI-9rB8OInMDdc8w9

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-homeschool-curriculum-matcher-2f913744
```

Example prompt: Can you find me homeschool curriculum options for my 7-year-old in 2nd grade who is a hands-on kinesthetic learner — we need something for language arts and our budget is around $300 per year?

## When to prefer this

Use this endpoint when a homeschooling parent or agent needs personalized curriculum recommendations with structured comparisons across multiple programs. Prefer this over generic search when filtering by learning style, grade level, subject, and budget simultaneously with side-by-side output is required.

## Known failure modes

- No curricula found matching the combination of grade, subject, learning style, and budget — returns empty results or a closest-match fallback
- Invalid or unsupported grade level or subject returns a 400-level error
- Budget too low for any available curriculum options — returns a warning with lowest-cost alternatives
- Service unavailable or timeout on the vercel deployment — returns 5xx error

## How this service works

Global education intelligence API — 14 endpoints for students, test-takers, homeschool families, and lifelong learners worldwide. Study guide generation (any subject, any grade level, 190+ countries), adaptive quiz with explanations, concept explainer, backwards-planned study schedule (with Magoosh/Kaplan/Coursera exam prep links), authentic exam-style practice questions (GRE/GMAT/Bar/CPA/NCLEX/LSAT/MCAT/Series 7 and 200+ exams), flashcard sets for spaced repetition, exam format explainer, full mock exam simulation, misconception diagnosis (pinpoints the exact knowledge gap behind a wrong answer), rubric-based exam grading with detailed feedback, homeschool co-op/support-group finder, homeschool curriculum matcher, college admissions essay review, and homeschool legal-requirements lookup by jurisdiction. All require x402 micropayment (USDC on Base).

## Output

A ranked list of personalized curriculum recommendations matching the specified grade, subject, learning style, and budget, including side-by-side comparisons of key features, pricing, and fit scores for each option.

## 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",
     "properties": {
      "lang": {
       "type": "string"
      },
      "grade": {
       "type": "string"
      },
      "style": {
       "type": "string"
      },
      "subject": {
       "type": "string"
      },
      "religious": {
       "type": "string"
      }
     }
    }
   },
   "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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "profile": {
   "grade": "3",
   "subject": "math",
   "age_range": "8-9",
   "learning_style": "traditional"
  },
  "top_recommendations": [
   {
    "publisher": "Saxon Publishers",
    "strengths": [
     "Incremental learning",
     "Heavy review spiral",
     "Proven track record"
    ],
    "curriculum": "Saxon Math 3",
    "price_range": "$85-$120",
    "parent_prep_time": "low",
    "student_independence": "medium"
   },
   {
    "publisher": "Demme Learning",
    "strengths": [
     "Manipulatives-based",
     "Video instruction",
     "Great for visual learners"
    ],
    "curriculum": "Math-U-See Beta",
    "price_range": "$110-$140",
    "parent_prep_time": "medium",
    "student_independence": "medium"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/edupulse-homeschool-curriculum-matcher-2f913744/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)
