# EduPulse Homeschool Law Lookup

> EduPulse Homeschool Law Lookup 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-14).

Returns state-by-state homeschool legal requirements including notification rules, curriculum mandates, testing requirements, and compliance checklists.

## Facts

- Endpoint: GET https://edupulse-xi-blond.vercel.app/api/edu/homeschool-laws
- 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-law-lookup-f83a6881
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Gpvf009E2j-9pFNjspGpr

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-law-lookup-f83a6881
```

Example prompt: What are the homeschool laws for Texas — specifically the notification rules, any required curriculum subjects, and whether standardized testing is mandatory? Give me a compliance checklist I can follow.

## When to prefer this

Use this endpoint when a parent or homeschool agent needs authoritative, structured legal requirements for homeschooling in a specific US state, especially when compliance checklists, notification deadlines, or curriculum mandates are needed. Prefer this over general web search when structured, agent-consumable legal data is required rather than narrative blog content.

## Known failure modes

- Unsupported or unrecognized US state name returns an error
- Missing required state parameter returns a 400 bad request
- Payment not processed returns a 402 Payment Required
- Laws may be outdated if the underlying data has not been refreshed after legislative changes
- Non-US jurisdictions are not supported

## 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

Returns a structured breakdown of the requested state's homeschool legal requirements, including notification procedures, required curriculum subjects, standardized testing mandates, record-keeping obligations, and a step-by-step compliance checklist for parents.

## 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"
      },
      "state": {
       "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": {
  "getting_started": {
   "who_to_notify": "California Department of Education",
   "notice_required": "File Private School Affidavit (PSA) with CDE by October 15 each year"
  },
  "regulation_tier": "moderate-regulation",
  "state_or_country": "California",
  "tier_explanation": "California requires filing a Private School Affidavit annually",
  "assessment_requirements": {
   "portfolio_review": null,
   "standardized_testing": "None required for homeschool families filing as a private school"
  },
  "curriculum_requirements": {
   "required_subjects": [
    "English",
    "Mathematics",
    "Social Sciences",
    "Science",
    "Fine Arts",
    "Health",
    "PE"
   ],
   "approved_curriculum_list_required": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/edupulse-homeschool-law-lookup-f83a6881/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)
