# EduPulse Financial-Aid Appeal Screen

> EduPulse Financial-Aid Appeal Screen is a paid API for AI agents from edupulse.theaslangroupllc.com, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Screens a student's financial-aid situation and routes it to the correct US federal aid appeal lane (HEA §479A professional judgment, dependency override, unsub-only, homeless-youth) with statutory citations, documentation checklists, and denial-risk warnings.

## Facts

- Endpoint: GET https://edupulse.theaslangroupllc.com/api/aid/appeal-check
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/edupulse-financial-aid-appeal-screen-8a2e8efa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7lTIkRH5VXqz6xyyWm2ZG

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-financial-aid-appeal-screen-8a2e8efa
```

Example prompt: My dad was laid off three months ago and our family income dropped significantly — can you screen my situation to figure out which financial-aid appeal lane I qualify for under FAFSA rules, what documents I'll need, and whether there are any denial risks I should know about?

## When to prefer this

Choose this endpoint when a student or advisor needs to determine the correct US federal financial-aid appeal lane before drafting any appeal letter or submitting documentation. It is purely a screening/routing tool with no LLM hallucination risk, making it preferable to general AI advice for high-stakes federal aid decisions. Use before the companion appeal-letter generation endpoint.

## Known failure modes

- Situation does not fit any recognized appeal lane — returns honest non-qualifier answer
- Missing required circumstance details — returns incomplete routing
- Edge cases where multiple lanes could apply — may require human financial aid counselor review
- Input describes non-US or non-federal aid system — outside scope of endpoint

## How this service works

Financial-aid appeal screen (US federal aid / FAFSA): routes a situation to the correct legal lane — HEA §479A professional judgment (job loss, medical, divorce, disaster), dependency override, unsub-only certification, or homeless-youth determination — with statutory citations, the documentation checklist, deny-risk screens (IPA medical math, era gates), and honest non-qualifier answers. Deterministic, no LLM.

## Output

Returns the appropriate federal aid appeal lane (e.g. HEA §479A professional judgment subcategory, dependency override, unsub-only, or homeless-youth determination), the statutory citation, a checklist of required documentation, denial-risk screens including IPA medical math and era gates, and an honest assessment if the situation does not qualify for any appeal.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "circumstance"
 ],
 "properties": {
  "age": {
   "type": "string",
   "description": "Student age"
  },
  "ipa_usd": {
   "type": "string",
   "description": "Income protection allowance from the FAFSA Submission Summary"
  },
  "award_year": {
   "type": "string",
   "description": "YYYY-YY (default current); era-gated rules key off this"
  },
  "circumstance": {
   "type": "string",
   "description": "Situation key, e.g. job_loss, medical_expenses, divorce_separation, parental_abandonment, parents_refuse_fafsa, unaccompanied_homeless (29 keys — full list in /openapi.json)"
  },
  "income_after_usd": {
   "type": "string",
   "description": "Income appeals: now/projected"
  },
  "income_before_usd": {
   "type": "string",
   "description": "Income appeals: before the change"
  },
  "contact_poses_risk": {
   "type": "string",
   "description": "true|false — dependency-override gateway"
  },
  "medical_expenses_usd": {
   "type": "string",
   "description": "For the IPA medical deny-risk screen (with ipa_usd)"
  },
  "school_says_no_appeals": {
   "type": "string",
   "description": "true if the school claims it does not do adjustments"
  },
  "unable_to_contact_parent": {
   "type": "string",
   "description": "true|false — dependency-override gateway"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/edupulse-financial-aid-appeal-screen-8a2e8efa/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)
