# ScholarPulse Financial Aid Estimator

> ScholarPulse Financial Aid Estimator is a paid API for AI agents from scholarpulse.theaslangroupllc.com, paid per call via x402, $0.12/call, status unknown (last checked 2026-09-14).

Returns an estimated financial aid package for a student by income bracket using College Scorecard data, including net cost, Pell Grant eligibility, and institutional generosity metrics.

## Facts

- Endpoint: GET https://scholarpulse.theaslangroupllc.com/api/aid
- Price: $0.12/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scholarpulse-financial-aid-estimator-74c7bc0f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4-cesRxMVdfGpCP1B0z4Z

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 scholarpulse-financial-aid-estimator-74c7bc0f
```

Example prompt: Can you estimate the financial aid package my family would get from University of Michigan if our household income is around $55,000 a year — specifically the net cost, whether I'd qualify for Pell Grants, and how generous the school is compared to others?

## When to prefer this

Use this endpoint when an agent needs to estimate actual out-of-pocket college costs for a specific student income level, check Pell Grant eligibility, or compare institutional aid generosity using federal College Scorecard data — particularly for US colleges. Prefer over FAFSA strategy endpoints when the goal is net cost estimation rather than SAI calculation.

## Known failure modes

- College not found in College Scorecard database — returns 404 or empty result
- Income bracket outside supported range — returns validation error
- College Scorecard data unavailable or stale for requested institution — returns partial or cached result
- Missing required parameters such as college identifier — returns 400 bad request

## How this service works

Financial aid estimate for student and financial-aid agents. Returns expected aid package by income bracket via College Scorecard, net cost, Pell eligibility, and institutional generosity.

## Output

Returns an estimated financial aid package including expected grant and loan amounts broken down by income bracket, the net cost of attendance after aid, a Pell Grant eligibility determination, and an institutional generosity rating drawn from College Scorecard data.

## 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": {
      "assets": {
       "type": "string",
       "description": "optional"
      },
      "income": {
       "type": "string",
       "description": "75000 (household income)"
      },
      "college": {
       "type": "string",
       "description": "University of Michigan | Harvard | UT Austin | any US college name"
      },
      "family_size": {
       "type": "string"
      },
      "dependency_status": {
       "type": "string",
       "description": "dependent | independent (optional)"
      }
     }
    }
   },
   "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": {
  "college": "University of Michigan",
  "pell_grant": {
   "likely_eligible": false,
   "estimated_amount": "$0-500"
  },
  "four_year_estimate": "$74,000",
  "net_price_estimate": {
   "confidence": "high (College Scorecard data)",
   "estimated_for_this_household": 18500
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scholarpulse-financial-aid-estimator-74c7bc0f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scholarpulse.theaslangroupllc.com](https://www.zero.xyz/host/scholarpulse.theaslangroupllc.com/llms.txt)
