# Ohiochannel — 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.

> Find livestream URLs for Ohio Channel broadcasts scheduled on any date you choose. Plan your viewing by checking what programs are scheduled to go live and when.

**Category:** Government & Public Data | **Website:** [ohiochannel.org/broadcast/broadcast-schedule](https://ohiochannel.org/broadcast/broadcast-schedule) | **Docs:** [parse.bot/marketplace/ece107d0-7452-476f-b9e8-d4354ed1ebf1/ohiochannel-org-api](https://parse.bot/marketplace/ece107d0-7452-476f-b9e8-d4354ed1ebf1/ohiochannel-org-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-ohiochannel-org-api-ece107d0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_schedule

Returns all scheduled livestreams for a given date, including stream URLs (HLS m3u8), program names, start/end times, channel names, and broadcast state. The endpoint queries all upcoming scheduled streams and filters to the requested date. Dates in the past or far future may return an empty streams array if no broadcasts are scheduled. All times are Eastern Time.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date` | string | Yes | Date to retrieve scheduled livestreams for, in YYYYMMDD format (e.g. 20260818). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ohiochannel-org-api-ece107d0/get_schedule \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date":"<string>"}'
```
