# Id Applyboard — 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 educational programs across 1,500+ universities and colleges to compare tuition costs, intake dates, school details, and success scores all in one place. Find the perfect program that matches your academic and financial needs without visiting multiple websites.

**Category:** Education | **Website:** [id.applyboard.com/](https://id.applyboard.com/) | **Docs:** [parse.bot/marketplace/e683a64a-9939-491b-bee2-fc1a1a3b8bf9/id-applyboard-com-api](https://parse.bot/marketplace/e683a64a-9939-491b-bee2-fc1a1a3b8bf9/id-applyboard-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-id-applyboard-com-api-e683a64a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_programs

Search educational programs across ApplyBoard's partner institutions. Returns paginated results with program details including tuition fees, intake dates, school information, and success scores. When query is omitted, returns all programs sorted by success score. Pagination is controlled by page and page_size parameters.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination (1-indexed). |
| `page_size` | integer | No | Number of results per page (1-100). |
| `query` | string | No | Search term for programs (e.g. 'Computer Science', 'Business', 'Nursing'). When omitted, returns all available programs. |
| `sort` | string | No | Sort order for results. The default '-success_score' sorts by descending success score (highest first). The API validates the value server-side. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-id-applyboard-com-api-e683a64a/search_programs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","page_size":"<integer>","query":"<string>","sort":"<string>"}'
```
