Legistar
Legistar Clients API
List available municipalities. Costs 1 credit per request. Requires Bootstrap plan or above.
POST/api/v1/legistar/clients
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/jsonRequest
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
result = client.legistar.clients()
for name in result["data"]["clients"]:
print(name)Response
"count": 86
},
"response_time": 0,
"credits_used": 1,
"credits_remaining": 4992
}