# ScholarPulse Scholarship Deadline Tracker

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

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

## Facts

- Endpoint: GET https://scholarpulse.theaslangroupllc.com/api/deadline
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scholarpulse-scholarship-deadline-tracker-61c065f2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GRi1_mxWWMD-9TqeH6xv-

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-61c065f2
```

Example prompt: Can you show me all upcoming scholarship deadlines sorted by urgency — I want to see the amounts, what's required to apply, and flag any quick-win ones I should tackle first?

## When to prefer this

Use this endpoint when a student or scholarship agent needs time-sensitive, urgency-ranked scholarship deadlines with actionable detail. Prefer this over general scholarship search endpoints when the primary concern is timing and not missing application windows, especially when identifying quick-win opportunities is valuable.

## Known failure modes

- No deadlines found for the given filters — returns empty list
- Invalid parameter values result in 400 error
- Service unavailable or timeout returns 5xx error
- Stale data if scholarship database has not been recently refreshed

## How this service works

Scholarship deadline tracker for student and scholarship agents. Returns upcoming deadlines sorted by urgency, with requirements, amounts, and quick-win opportunities.

## Output

A ranked list of upcoming scholarship deadlines ordered by urgency, each entry including the scholarship name, deadline date, award amount, eligibility requirements, and whether it qualifies as a quick-win opportunity based on ease of application or competition 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": {
      "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-61c065f2/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)
