# University of Nebraska-Lincoln — 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.

> Access data from unl.edu.

**Category:** Education | **Website:** [www.unl.edu/](https://www.unl.edu/) | **Docs:** [parse.bot/marketplace/2455e0e0-dc99-49ea-9a95-b8044e1e0718/unl-edu-api](https://parse.bot/marketplace/2455e0e0-dc99-49ea-9a95-b8044e1e0718/unl-edu-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-unl-edu-api-2455e0e0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_deadlines

Get upcoming deadline-type events from the University of Nebraska-Lincoln calendar. Returns events categorized as deadlines, ordered chronologically.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of deadline events to return. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-unl-edu-api-2455e0e0/get_deadlines \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>"}'
```

### get_events_by_date

Get University of Nebraska-Lincoln events for a specific date, with optional event type filtering. Returns all events scheduled on the given date.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date` | string | Yes | Date in YYYY-MM-DD format (e.g. 2026-07-15). |
| `event_type` | string | No | Filter by event type. When omitted, all types are returned. |
| `limit` | integer | No | Maximum number of events to return. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-unl-edu-api-2455e0e0/get_events_by_date \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date":"<string>","event_type":"<string>","limit":"<integer>"}'
```

### search_events

Search University of Nebraska-Lincoln events by keyword query and optional event type filter. When no query is provided, returns upcoming events. Results include full event details with dates, locations, contacts, and calendar origin.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_type` | string | No | Filter by event type. When omitted, all types are returned. |
| `limit` | integer | No | Maximum number of events to return. |
| `query` | string | No | Search query to match against event titles and descriptions. When empty, returns upcoming events. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-unl-edu-api-2455e0e0/search_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"event_type":"<string>","limit":"<integer>","query":"<string>"}'
```
