# Fastweb — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and browse thousands of scholarships from Fastweb by category, state, or major, while accessing detailed scholarship information, financial aid articles, and student discounts to help fund your education. Find featured opportunities and compare aid options all in one place.

**Category:** Education | **Website:** [fastweb.com/](https://fastweb.com/) | **Docs:** [parse.bot/marketplace/064fe597-9d53-4406-986d-07162f314768/fastweb-com-api](https://parse.bot/marketplace/064fe597-9d53-4406-986d-07162f314768/fastweb-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-fastweb-com-api-064fe597/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_featured_scholarships

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

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fastweb-com-api-064fe597/get_featured_scholarships \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_financial_aid_articles

Returns recent financial aid articles from Fastweb covering topics like FAFSA, student loans, financial aid strategies, and loan forgiveness programs. No input parameters required.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fastweb-com-api-064fe597/get_financial_aid_articles \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_scholarship_detail

Returns comprehensive details for a specific scholarship including full description, award amount, deadline, awards available, and provider. The id_slug is the final path segment from a scholarship's detail_url (e.g. '77822-women-s-league-scholarship-uiuc').

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `id_slug` | string | Yes | Scholarship ID and slug from a scholarship's detail_url field (e.g. '77822-women-s-league-scholarship-uiuc'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fastweb-com-api-064fe597/get_scholarship_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"id_slug":"<string>"}'
```

### get_scholarship_directory_categories

Returns all browseable scholarship categories from the Fastweb directory page. Each category includes a name, slug, and URL. Use the slug with get_scholarships_by_category to retrieve scholarships in that category.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fastweb-com-api-064fe597/get_scholarship_directory_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_scholarships_by_category

Returns scholarships for a specific category from the Fastweb directory. Accepts a category slug (obtainable from get_scholarship_directory_categories). Each scholarship includes title, provider, award amount, deadline, and a detail_url for use with get_scholarship_detail.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Category slug from the directory. Obtain from get_scholarship_directory_categories or construct directly (e.g. 'scholarships-for-women', 'scholarships-for-adopted-students'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fastweb-com-api-064fe597/get_scholarships_by_category \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_scholarships_by_major

Returns scholarships for a specific academic major or field of study. Constructs the directory slug from the major name (e.g. 'Engineering' becomes 'scholarships-for-engineering-majors'). Each scholarship includes title, provider, award amount, deadline, and detail_url.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `major` | string | Yes | Major or field of study name (e.g. 'Engineering', 'Computer Science', 'Nursing'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fastweb-com-api-064fe597/get_scholarships_by_major \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"major":"<string>"}'
```

### get_scholarships_by_state

Returns scholarships specific to a U.S. state. Constructs the directory slug from the state name (e.g. 'California' becomes 'california-scholarships'). Each scholarship includes title, provider, award amount, deadline, and detail_url.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `state` | string | Yes | U.S. state name (e.g. 'California', 'New York', 'Texas'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fastweb-com-api-064fe597/get_scholarships_by_state \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"state":"<string>"}'
```

### get_student_discounts

Returns available student discounts and deals from various merchants partnered with Fastweb. Each discount includes the merchant name and the offer description. No input parameters required.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fastweb-com-api-064fe597/get_student_discounts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
