# ScholarPulse Scholarship Search

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

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

## Facts

- Endpoint: GET https://scholarpulse-bice.vercel.app/api/search
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scholarpulse-scholarship-search-725efb07
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_J1UqxBhGr7Vx__IyBbCJx

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-725efb07
```

Example prompt: Can you find scholarships that match my profile — I'm a junior pursuing a computer science degree in the US, currently maintaining a 3.7 GPA, and I'm looking for undergraduate-level awards?

## When to prefer this

Use this endpoint when you need to match a student to relevant scholarships based on their specific academic profile, major, country, and degree level. Prefer this over general web search when structured, filtered scholarship results are needed and the student's academic attributes are known.

## Known failure modes

- No scholarships found for the given profile combination — returns empty result set
- Invalid or unsupported country code — returns error or empty results
- Unrecognized major field — may return zero matches or generic results
- Missing required parameters such as education level — may return an error or overly broad results
- Service unavailable or payment authorization failure — returns HTTP error

## How this service works

ScholarPulse: real-time scholarship and student finance intelligence for 190+ countries. Scholarship search, Erasmus+, FAFSA strategy, loan forgiveness, degree ROI, and merit aid. Pay-per-query via x402 on Base.

## Output

Returns a list of matched scholarships including names, eligibility requirements, award amounts, and application details filtered to the student's academic profile, major, country, and education level.

## 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-725efb07/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scholarpulse-bice.vercel.app](https://www.zero.xyz/host/scholarpulse-bice.vercel.app/llms.txt)
