# Bachelorsportal — 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 discover bachelor's degree programmes worldwide with detailed information about universities, tuition fees, programme duration, ratings, and available scholarships to help you find the perfect fit for your studies. Filter and compare programmes across institutions globally to make informed decisions about your higher education options.

**Category:** Education | **Website:** [www.bachelorsportal.com/](https://www.bachelorsportal.com/) | **Docs:** [parse.bot/marketplace/c016a3bc-09a2-433b-9ad0-50f00e4ce3cc/bachelorsportal-com-api](https://parse.bot/marketplace/c016a3bc-09a2-433b-9ad0-50f00e4ce3cc/bachelorsportal-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-bachelorsportal-com-api-c016a3bc/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_programme_details

Get detailed information about a specific bachelor's programme by its ID, including description, university, location, start date, and available scholarships. The programme ID is obtained from search_programmes results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `programme_id` | string | Yes | Numeric programme ID from search_programmes results (e.g. '82663'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bachelorsportal-com-api-c016a3bc/get_programme_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"programme_id":"<string>"}'
```

### search_programmes

Search bachelor's degree programmes with optional text query, country, and discipline filters. Returns paginated results with programme summaries including university, location, fees, duration, and ratings. Pagination is controlled by page and page_size; omitting all filters returns all programmes sorted by default relevance.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `country` | string | No | Country ID to filter programmes by location (e.g. '30' for United Kingdom). IDs correspond to the country_iso and internal identifiers used by the site. |
| `discipline` | string | No | Discipline ID to filter programmes by field of study (e.g. '281' for Computer Sciences). Discipline IDs are returned in the search API facets. |
| `page` | integer | No | Page number for pagination (1-based). |
| `page_size` | integer | No | Number of results per page (1-50). |
| `query` | string | No | Free-text search query for programme name or field of study (e.g. 'computer science', 'engineering'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bachelorsportal-com-api-c016a3bc/search_programmes \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"country":"<string>","discipline":"<string>","page":"<integer>","page_size":"<integer>","query":"<string>"}'
```
