# Peaceisactive — 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 live streams of state legislature proceedings from all 50 US states in one place. Find real-time government feeds for any state to watch legislative sessions and stay informed on live political activity.

**Category:** Government & Public Data | **Website:** [www.peaceisactive.com/watch-government-live-feeds](https://www.peaceisactive.com/watch-government-live-feeds) | **Docs:** [parse.bot/marketplace/fcd231de-dfb9-4df1-981c-7b3fe9db67a9/peaceisactive-com-api](https://parse.bot/marketplace/fcd231de-dfb9-4df1-981c-7b3fe9db67a9/peaceisactive-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-peaceisactive-com-api-fcd231de/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_live_feeds_by_state

Returns live government feed information for a US state identified by its 2-letter abbreviation. Includes the state's legislature live feed links and descriptions, plus US federal government feed links (House, Senate, Supreme Court, C-SPAN) that are relevant to all states. Each feed entry contains the institution name, a description of what coverage is available, and the URLs where live streams can be accessed.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `state` | string | Yes | 2-letter US state abbreviation (e.g. 'CA', 'NY', 'TX'). Case-insensitive. |

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