Legistar
Legistar Events API
Search council meetings, hearings and events from any Legistar-powered municipality. Costs 1 credit per request. Requires Bootstrap plan or above.
POST/api/v1/legistar/events
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsonclientstringrequiredMunicipality identifier (e.g. 'seattle', 'nyc', 'chicago').
Example: seattle
body_namestringFilter by committee or council body name.
sincestringISO date, return events from this date onward.
untilstringISO date, return events up to this date.
order_bystringOData orderby clause.
limitnumberResults per page, 1-100. Default 20.
offsetnumberSkip N results. Default 0.
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
result = client.legistar.events(client="seattle")
print(result)Response
"count": 1
},
"response_time": 654,
"credits_used": 1,
"credits_remaining": 4998
}