Discover/Fastweb API
live

Fastweb APIfastweb.com

Access Fastweb scholarship listings by category, state, or major. Get award amounts, deadlines, provider info, financial aid articles, and student discounts.

Endpoint health
verified 9h ago
get_featured_scholarships
get_scholarships_by_state
get_scholarships_by_major
get_scholarship_detail
get_student_discounts
8/8 passing latest checkself-healing
Endpoints
8
Updated
22d ago

What is the Fastweb API?

The Fastweb API exposes 8 endpoints covering scholarship listings, detailed award data, financial aid articles, and student discounts from Fastweb.com. You can retrieve featured scholarships from the homepage, browse the full directory by category slug via get_scholarship_directory_categories, filter listings by U.S. state or academic major, and pull complete scholarship records including eligibility descriptions and deadline fields using get_scholarship_detail.

Try it

No input parameters required.

api.parse.bot/scraper/d73272bd-bc1f-4987-8927-3870cd569f5d/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/d73272bd-bc1f-4987-8927-3870cd569f5d/get_featured_scholarships' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace fastweb-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Fastweb Scholarship API — discover scholarships by major, state, or category."""
from parse_apis.fastweb_scholarship_api import Fastweb, Major, State, ScholarshipDetail, CategoryNotFound

client = Fastweb()

# Browse featured scholarships — quick overview of promoted opportunities.
for scholarship in client.scholarships.featured(limit=3):
    print(scholarship.title, scholarship.award, scholarship.deadline)

# Search by major using the Major enum for type safety.
eng = client.scholarships.by_major(major=Major.ENGINEERING, limit=1).first()
if eng:
    print(eng.title, eng.provider, eng.award)

# Search by state — find California-specific funding.
for s in client.scholarships.by_state(state=State.CALIFORNIA, limit=3):
    print(s.title, s.provider, s.deadline)

# Fetch full scholarship details by id_slug.
detail = client.scholarshipdetails.get(id_slug="191939-california-dream-act-service-incentive-grant-dsig")
print(detail.title, detail.provider, detail.description[:80])

# Typed error handling: catch a bad category slug.
try:
    for s in client.scholarships.by_category(slug="nonexistent-slug-xyz", limit=1):
        print(s.title)
except CategoryNotFound as exc:
    print(f"Category not found: {exc.slug}")

# Student discounts — browse available deals.
for discount in client.discounts.list(limit=3):
    print(discount.merchant, discount.offer)

print("exercised: scholarships.featured / by_major / by_state / scholarshipdetails.get / by_category / discounts.list")
All endpoints · 8 totalmissing one? ·

Returns currently featured and promoted scholarship opportunities from Fastweb's homepage. These are frequently updated sponsored listings. No input parameters required.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "scholarships": "array of featured scholarship objects"
  },
  "sample": {
    "data": {
      "scholarships": [
        {
          "award": "$5,000",
          "title": "$5,000 No-Essay Discover Scholarship Sweepstakes",
          "deadline": "June 30, 2026",
          "provider": null,
          "detail_url": null
        }
      ]
    },
    "status": "success"
  }
}

About the Fastweb API

Scholarship Discovery and Browsing

The API gives you two main paths into Fastweb's scholarship directory. get_featured_scholarships returns the current homepage promotions — frequently refreshed sponsored listings — with no input required. For structured browsing, get_scholarship_directory_categories returns every directory category as an array of objects containing name, slug, and url. Pass any slug into get_scholarships_by_category to get back an array of scholarships, each with title, provider, award, deadline, and detail_url. The same response shape appears when filtering by geography via get_scholarships_by_state (accepts a state name like 'Texas') or by field of study via get_scholarships_by_major (accepts a major name like 'Computer Science').

Scholarship Detail Records

get_scholarship_detail accepts an id_slug — the final path segment from any scholarship's detail_url, for example '77822-women-s-league-scholarship-uiuc' — and returns the full record. The response includes a details object with amount, deadline, and awards available, a provider string, a description covering eligibility and application requirements, and the canonical url back to the Fastweb listing. This makes it straightforward to build a detail page or sync records into a database without following external links manually.

Financial Aid Content and Discounts

Beyond scholarships, the API surfaces two supplementary content types. get_financial_aid_articles returns recent Fastweb editorial covering FAFSA, student loans, and loan forgiveness programs, each article object carrying a title and url. get_student_discounts returns merchant partner deals, with each object containing a merchant name and an offer description. These are useful for enriching a student finance tool or scholarship aggregator with adjacent content without scraping Fastweb's article and deals sections separately.

Reliability & maintenanceVerified

The Fastweb API is a managed, monitored endpoint for fastweb.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when fastweb.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official fastweb.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
9h ago
Latest check
8/8 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a scholarship search tool that lets students filter awards by U.S. state using get_scholarships_by_state
  • Aggregate major-specific scholarship lists for a university advising portal using get_scholarships_by_major
  • Sync detailed scholarship records — including deadlines and award counts — into a CRM or student database via get_scholarship_detail
  • Display rotating featured scholarships on a financial aid dashboard using get_featured_scholarships
  • Populate a financial literacy section of a student app with current FAFSA and loan guidance from get_financial_aid_articles
  • Surface student merchant discounts alongside scholarship results using get_student_discounts
  • Map Fastweb directory taxonomy into your own category system using the slug and url fields from get_scholarship_directory_categories
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Fastweb have an official developer API?+
Fastweb does not publish a public developer API. Access to their scholarship data requires working through a third-party data layer like this one.
What fields does get_scholarship_detail return, and where does the id_slug come from?+
The endpoint returns a details object containing amount, deadline, and awards available; a provider string; a full description with eligibility criteria; the scholarship title; and the canonical url. The id_slug is the final path segment of the detail_url field returned by any of the listing endpoints — for example, '77822-women-s-league-scholarship-uiuc'.
Does the API support pagination for category, state, or major listings?+
The listing endpoints — get_scholarships_by_category, get_scholarships_by_state, and get_scholarships_by_major — return results for the requested slug without a page or offset parameter. Pagination is not currently exposed. You can fork this API on Parse and revise it to add page-based or cursor-based pagination if you need to walk deeper result sets.
Can I search scholarships by keyword or filter by award amount?+
The API currently covers browsing by category slug, U.S. state, and academic major. Free-text keyword search and award-amount filtering are not exposed as parameters. You can fork the API on Parse and revise it to add a keyword search endpoint or client-side filtering against the returned award field.
How fresh is the scholarship data — are deadlines and award amounts current?+
The data reflects what Fastweb currently shows on their listing and detail pages. Scholarship deadlines and award amounts on Fastweb are maintained by their team and the scholarship providers, so accuracy depends on how promptly those parties update their listings. For deadline-sensitive workflows, always surface the url field from get_scholarship_detail so end users can verify directly on Fastweb.
Page content last updated . Spec covers 8 endpoints from fastweb.com.
Related APIs in EducationSee all →
scholarships.com API
Search and browse the Scholarships.com directory by category — including academic major, residence state, ethnicity, gender, school year, and deadline. Retrieve scholarship listings within any category and subcategory, and fetch full details for individual scholarships including award amounts, eligibility criteria, application deadlines, and application links.
scholarshipportal.com API
Search and discover scholarships, degree programmes, and universities across StudyPortals' global education database, with the ability to filter by countries, disciplines, and other criteria. Get detailed information about specific scholarships and programmes to compare educational opportunities that match your academic interests.
gradschools.com API
Search graduate programs across multiple categories and discover articles about funding, financial aid, and admissions to help guide your grad school journey. Find specific program information and detailed resources all in one place to support your application and enrollment decisions.
grantwatch.com API
Search and browse thousands of grants from GrantWatch.com to find funding opportunities tailored to individuals, nonprofits, small businesses, and foundations. Get detailed grant information, filter by category, and discover newly posted grants to match your eligibility and funding needs.
cucas.cn API
Search for scholarships and study programs across Chinese universities, browse detailed scholarship information, and discover the latest funding opportunities available through China's official university admission system. Find universities and compare academic programs to plan your studies in China.
ucas.com API
Search and explore UK university courses, apprenticeships, and scholarships all in one place, while discovering detailed information about education providers and their offerings. Find the perfect educational path by filtering courses and apprenticeships by your preferences and accessing comprehensive provider details to inform your decisions.
filmfreeway.com API
Search and discover film festivals worldwide with detailed information including deadlines, submission categories, fees, rules, and organizer contacts. Access comprehensive festival profiles, photos, and grant opportunities listed on FilmFreeway.
wayup.com API
Search and filter college-focused job and internship listings from WayUp by category, job type, and location. Access detailed information about specific listings, including job descriptions, qualifications, company info, and posting dates.