# ScholarPulse Student Loan Repayment Strategy

> ScholarPulse Student Loan Repayment 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-14).

Compares student loan repayment plans across multiple countries (US SAVE/IBR/PAYE, UK Plan 2/5, Australia HELP, Canada RAP, and more) and analyzes refinancing options to identify the optimal strategy.

## Facts

- Endpoint: GET https://scholarpulse.theaslangroupllc.com/api/loans
- 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-student-loan-repayment-strategy-101e774c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QTfLvGpxPDPk73--KagqQ

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-student-loan-repayment-strategy-101e774c
```

Example prompt: I have $45,000 in federal student loans and earn $52,000 a year — can you compare SAVE, IBR, and PAYE repayment plans and tell me which one will cost me the least overall, and whether refinancing makes sense?

## When to prefer this

Use this endpoint when a user needs to compare multiple student loan repayment plans across US income-driven options (SAVE, IBR, PAYE) or international systems (UK, Australia, Canada), or wants a combined repayment-plus-refinancing analysis in a single call. Prefer this over the dedicated refinancing endpoint when the user wants a holistic repayment strategy rather than just refinancing rates.

## Known failure modes

- Missing required parameters such as loan balance or income returns a 400 error
- Unsupported country or loan type returns an error indicating out-of-scope request
- Invalid income or balance values (e.g. negative numbers) return validation errors
- API returns 402 if payment in USDC is not provided or fails
- Insufficient data for refinancing comparison may return partial results without refinancing analysis

## How this service works

Student loan strategy for student and financial-aid agents. Compares repayment plans for US (SAVE/IBR/PAYE), UK (Plan 2/5), Australia (HELP), Canada (RAP), and more, with refinancing analysis.

## Output

Returns a structured comparison of eligible repayment plans (e.g. SAVE, IBR, PAYE for US; Plan 2/Plan 5 for UK; HELP for Australia; RAP for Canada), including estimated monthly payments, total repayment costs, forgiveness eligibility timelines, and a refinancing analysis with a recommended optimal strategy.

## 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": {
      "income": {
       "type": "string",
       "description": "55000 (annual income)"
      },
      "balance": {
       "type": "string",
       "description": "45000 (loan balance)"
      },
      "country": {
       "type": "string",
       "description": "US | UK | Australia | Canada | New Zealand"
      },
      "loan_type": {
       "type": "string",
       "description": "federal | private | HELP | Plan2 | OSAP"
      },
      "family_size": {
       "type": "string",
       "description": "optional, for US IDR plans"
      }
     }
    }
   },
   "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": {
  "recommended_plan": "SAVE",
  "refinancing_analysis": {
   "reason": "Would lose PSLF eligibility and IDR access",
   "private_refinancing_worth_it": false
  },
  "recommendation_rationale": "Lowest monthly payment at $142/month; remaining interest waived"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scholarpulse-student-loan-repayment-strategy-101e774c/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)
