# ScholarPulse Scholarship Deadline Tracker

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

Returns upcoming scholarship deadlines sorted by urgency, with requirements, award amounts, and quick-win opportunities for students

## Facts

- Endpoint: GET https://scholarpulse-bice.vercel.app/api/deadline
- Price: $0.08/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-deadline-tracker-d21c61a1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HP4PwAPyXmD1fI_5JqOe2

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-deadline-tracker-d21c61a1
```

Example prompt: Show me the most urgent scholarship deadlines I should apply to right now — especially any quick-win opportunities with good award amounts that close in the next few weeks.

## When to prefer this

Use this endpoint when a student or scholarship agent needs a time-sensitive, urgency-ranked list of scholarship deadlines rather than a broad discovery search. It is ideal for deadline-driven workflows where prioritization matters — helping students avoid missing high-value opportunities. Prefer this over the general scholarship search endpoint when the goal is 'what do I need to apply to NOW' rather than 'what scholarships exist for me.'

## Known failure modes

- No deadlines returned if no scholarships match the student's profile criteria
- Stale deadline data if the underlying scholarship database hasn't been refreshed recently
- HTTP 402 if the x402 payment of $0.08 USDC is not provided
- HTTP 400 if required query parameters are malformed or missing
- Deadlines may reflect general scholarship pools rather than hyper-local or institution-specific awards

## 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

A list of upcoming scholarship deadlines sorted by urgency, each with the scholarship name, deadline date, award amount, eligibility requirements, and flags for quick-win opportunities that are easier or faster to apply for

## 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": {
      "level": {
       "type": "string",
       "description": "undergraduate | graduate | phd"
      },
      "major": {
       "type": "string",
       "description": "nursing | engineering | education (optional)"
      },
      "month": {
       "type": "string",
       "description": "next | this-month | next-3-months (optional)"
      },
      "state": {
       "type": "string",
       "description": "TX | CA (optional, US state for local scholarships)"
      },
      "country": {
       "type": "string",
       "description": "US | UK | India | Canada | any country"
      }
     }
    }
   },
   "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": {
  "quick_wins": [
   "Brown & Caldwell Scholarship — short application, $5K, STEM students"
  ],
  "upcoming_deadlines": [
   {
    "amount": "Up to $40,000/year",
    "deadline": "November 21, 2026",
    "difficulty": "very competitive",
    "scholarship": "Jack Kent Cooke Foundation Scholarship",
    "days_remaining": "45 days"
   }
  ]
 }
}
```

## More

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