# EduPulse Homeschool Curriculum Finder

> EduPulse Homeschool Curriculum Finder is a paid API for AI agents from edupulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns personalized homeschool curriculum recommendations with side-by-side comparisons filtered by grade, subject, learning style, religious preference, and budget, always including a free or low-cost option.

## Facts

- Endpoint: GET https://edupulse.theaslangroupllc.com/api/edu/curriculum-match
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/edupulse-homeschool-curriculum-finder-23927272
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VJGpzFLxIClTmipM7d1MU

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-finder-23927272
```

Example prompt: Can you find me the best homeschool curriculum for my 4th grader in math and science? She's a hands-on visual learner, we prefer secular materials, and our budget is around $200 — and please include a free option too.

## When to prefer this

Use this endpoint when a user is a homeschooling parent or educator seeking curriculum recommendations tailored to a specific child's grade, subject area, learning style, religious/values preference, and budget constraint — especially when a side-by-side comparison and a free option are desired.

## Known failure modes

- Missing required parameters such as grade level or subject returns a 400 error
- Unsupported grade level or subject combination returns no matches
- Overly restrictive filter combination (e.g., very narrow religious preference + subject + budget) may return only the free option
- Service unavailability returns a 5xx error

## How this service works

Homeschool curriculum finder / what curriculum should I use / curriculum comparison. Returns personalized curriculum recommendations by grade, subject, learning style, religious preference, and budget with side-by-side comparisons, including a free or low-cost option.

## Output

A ranked list of personalized curriculum recommendations matching the specified grade, subject, learning style, religious preference, and budget, with side-by-side comparisons of each option and at least one free or low-cost alternative highlighted.

## 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-finder-23927272/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from edupulse.theaslangroupllc.com](https://www.zero.xyz/host/edupulse.theaslangroupllc.com/llms.txt)
