Open Scholarships
Openly-licensed directory of US scholarships and student aid
Open Scholarships is a machine-readable, CC BY 4.0 directory of US scholarships sourced from official pages. Filter by state, availability, or keyword to get structured records with sponsor, award amounts, deadlines, and eligibility. Responses ship with the required attribution string built in.
GET https://scholarships.grudged.io/api/scholarships?state=NV&availability=open
{
"total": 17,
"limit": 50,
"offset": 0,
"license": "CC-BY-4.0",
"results": [
{
"id": "us-aiaa-foundation-undergraduate-scholarships",
"name": "AIAA Foundation Undergraduate Scholarships",
"sponsor": "American Institute of Aeronautics and Astronautics",
"award": {
"amount_max": 10000,
"currency": "USD"
}
}
]
}curl "https://scholarships.grudged.io/api/scholarships?state=NV&availability=open"const res = await fetch("https://scholarships.grudged.io/api/scholarships?state=NV&availability=open");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://scholarships.grudged.io/api/scholarships?state=NV&availability=open")
print(res.json())/scholarships?state=NV&availability=openPROBEDOpenly-licensed directory of US scholarships and student aid
/scholarships?limit=5Scholarships — documented GET route.
/scholarships?page=1Scholarships — documented GET route.
/scholarships.jsonScholarships Json — documented GET route.
/api/scholarships?state=NV&level=high-school-seniorScholarships — documented GET route.
/api/scholarships?q=nursing&amount_min=5000Search results filtered by query parameters.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Open Scholarships: common questions
Is Open Scholarships free to use?
Yes — Open Scholarships is a free open data API. Free tier: Free — no key (CC BY 4.0; attribution required). Commercial use is allowed on the free tier.
Does Open Scholarships need an API key?
No — Open Scholarships needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Open Scholarships from the browser?
Yes — Open Scholarships returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Open Scholarships up right now?
As of our last scheduled check, Open Scholarships is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.