# ScholarPulse Merit Aid Strategy

> ScholarPulse Merit Aid Strategy 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-16).

Finds colleges that award the most automatic merit scholarships for a given GPA/SAT/ACT profile, with net cost estimates and a scholarship stacking strategy.

## Facts

- Endpoint: GET https://scholarpulse.theaslangroupllc.com/api/merit
- Price: $0.12/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scholarpulse-merit-aid-strategy-9ccb4470
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OdKViDCj822P5EYtSirOQ

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-merit-aid-strategy-9ccb4470
```

Example prompt: Can you find the colleges that give the most automatic merit scholarships for a student with a 3.9 GPA and a 1420 SAT score, and show me the net cost estimates along with a strategy for stacking awards?

## When to prefer this

Use this endpoint when a student or parent agent needs to identify which colleges automatically award merit scholarships based purely on academic credentials (GPA, SAT, ACT) — no separate essay application required — and wants both net cost comparisons and a multi-award stacking strategy. Prefer over general scholarship search endpoints when the focus is institutional automatic merit aid rather than external or need-based scholarships.

## Known failure modes

- Missing or invalid GPA/SAT/ACT inputs return a 400 error with parameter guidance
- Profile outside scholarship-eligible ranges may return empty or sparse results
- Payment not completed (x402) results in 402 Payment Required response
- Service unavailability returns 503 with retry guidance

## How this service works

Merit aid strategy for student and parent agents. Finds colleges that award the most automatic merit scholarships for a GPA/SAT/ACT profile, with net cost estimates and a stacking strategy.

## Output

Returns a ranked list of colleges that automatically award the most merit scholarships for the given GPA/SAT/ACT profile, including estimated net cost after merit aid at each institution and a personalized strategy for stacking multiple merit awards to minimize total college cost.

## 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": {
      "gpa": {
       "type": "string"
      },
      "major": {
       "type": "string",
       "description": "engineering | nursing | business (optional)"
      },
      "state": {
       "type": "string",
       "description": "TX | CA | OH (optional, for state merit programs)"
      },
      "test_score": {
       "type": "string",
       "description": "SAT 1400 | ACT 32 | IB 38 (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": {
  "total_potential_merit": "$80,000-$180,000 over 4 years",
  "automatic_scholarships": [
   {
    "school": "University of Alabama",
    "award_name": "Presidential Scholarship",
    "annual_amount": "Full tuition",
    "gpa_threshold": "3.5 unweighted",
    "test_threshold": "SAT 1380 / ACT 31",
    "total_4yr_value": "$56,000+",
    "estimated_net_cost": "$12,000/year"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scholarpulse-merit-aid-strategy-9ccb4470/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)
