Legistar
Legistar Bodies API
List committees, councils and boards from any Legistar-powered municipality. Costs 1 credit per request. Requires Bootstrap plan or above.
POST/api/v1/legistar/bodies
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
active_onlybooleanWhen true, return only currently active bodies.
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.bodies(client="seattle")
print(result)Response
"count": 1
},
"response_time": 318,
"credits_used": 1,
"credits_remaining": 4996
}