Peaceisactive APIpeaceisactive.com ↗
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.
curl -X GET 'https://api.parse.bot/scraper/1f04476a-aed1-4f6a-a914-b4f3481f2209/get_live_feeds_by_state?state=TX' \ -H 'X-API-Key: $PARSE_API_KEY'
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.
| Param | Type | Description |
|---|---|---|
| staterequired | string | 2-letter US state abbreviation (e.g. 'CA', 'NY', 'TX'). Case-insensitive. |
{
"type": "object",
"fields": {
"state": "Full state name",
"state_feeds": "Array of state legislature feed entries, each with name, description, links, and section",
"federal_feeds": "Array of US federal government feed entries applicable to all states",
"state_abbreviation": "2-letter state abbreviation, uppercased"
},
"sample": {
"data": {
"state": "Texas",
"state_feeds": [
{
"name": "Texas",
"links": [
{
"url": "https://house.texas.gov",
"text": "house.texas.gov"
},
{
"url": "https://senate.texas.gov",
"text": "senate.texas.gov"
}
],
"section": "State Legislature Live Feeds (Full 50-State Directory)",
"description": "house.texas.gov and senate.texas.gov – Chamber and committee webcasts."
}
],
"federal_feeds": [
{
"name": "U.S. House of Representatives",
"links": [
{
"url": "https://live.house.gov",
"text": "live.house.gov"
}
],
"section": "United States Federal Government Live Feeds",
"description": "Live floor proceedings at live.house.gov and C-SPAN 1."
},
{
"name": "U.S. Senate",
"links": [
{
"url": "https://www.senate.gov/floor/",
"text": "senate.gov/floor"
}
],
"section": "United States Federal Government Live Feeds",
"description": "Live floor webcasts at senate.gov/floor and C-SPAN 2."
},
{
"name": "U.S. Supreme Court",
"links": [
{
"url": "https://www.supremecourt.gov",
"text": "supremecourt.gov"
}
],
"section": "United States Federal Government Live Feeds",
"description": "Live audio during argument sessions at supremecourt.gov ."
},
{
"name": "C-SPAN",
"links": [
{
"url": "https://www.c-span.org",
"text": "c-span.org"
}
],
"section": "United States Federal Government Live Feeds",
"description": "Coverage across all three branches and committee hearings at c-span.org ."
}
],
"state_abbreviation": "TX"
},
"status": "success"
}
}About the Peaceisactive API
The Peaceisactive API on Parse exposes 1 endpoint for the publicly available data on peaceisactive.com. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.