# ScholarPulse Scholarship Search

> ScholarPulse Scholarship Search is a paid API for AI agents from scholarpulse.theaslangroupllc.com, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-13).

Searches and returns matched scholarships based on a student's academic profile, major, country, and education level.

## Facts

- Endpoint: GET https://scholarpulse.theaslangroupllc.com/api/search
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scholarpulse-scholarship-search-60445710
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZXwrn8rQIKKsrr5lHj1ac

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-scholarship-search-60445710
```

Example prompt: Find me scholarships I'm eligible for — I'm a junior-level undergraduate majoring in computer science, based in the United States, with a 3.7 GPA.

## When to prefer this

Use this endpoint when you need to find domestic scholarships matched to a specific student's academic profile, major, country of study, and education level. Prefer the sibling global scholarship search endpoint for cross-border or international study funding needs, and the deadline tracker endpoint when the primary concern is upcoming application deadlines.

## Known failure modes

- Missing or invalid required parameters (major, country, or level) returns a 400 error
- No scholarships found for the given profile returns an empty results list
- Unsupported country or major codes may return no matches
- Payment failure or insufficient USDC balance results in a 402 Payment Required response

## How this service works

Scholarship search for student and scholarship agents. Returns matched scholarships by academic profile, major, country, and level.

## Output

Returns a list of matched scholarships including scholarship name, award amount, eligibility requirements, application deadlines, and how well the student's profile matches each opportunity.

## 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",
       "description": "optional"
      },
      "level": {
       "type": "string",
       "description": "undergraduate | graduate | phd | professional"
      },
      "major": {
       "type": "string",
       "description": "nursing | computer-science | engineering | business | education | any field"
      },
      "income": {
       "type": "string",
       "description": "optional — household income for need-based filter"
      },
      "country": {
       "type": "string",
       "description": "US | UK | India | Canada | Germany | any country"
      },
      "demographic": {
       "type": "string",
       "description": "first-gen | veteran | international | stem-women (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": {
  "scholarships": [
   {
    "name": "Gates Scholarship",
    "amount": "Full cost of attendance",
    "sponsor": "Bill & Melinda Gates Foundation",
    "deadline": "September 15, 2026",
    "match_reason": "Matches first-gen, STEM, income criteria",
    "match_strength": "strong"
   }
  ],
  "application_priority": "Apply to Gates first — highest value, early deadline",
  "total_potential_value": "$45,000–$180,000"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scholarpulse-scholarship-search-60445710/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)
