get
government-members
/governments/us/states/{state}/legislature/unicameral/current
Get current unicameral legislature members
Returns current members of a unicameral state legislature. Nebraska is the only state with one, so this returns an empty list for every other state rather than an error.
Parameters
| name | type | required | description |
|---|---|---|---|
| statepath | string | required | Two-letter state code (lowercase) |
| pagequery | integerdefault 1 | — | Page number for pagination |
| limitquery | integerdefault 50 | — | Number of items per page |
Example
curl
curl "https://civiclens.io/api/v1/governments/us/states/ca/legislature/unicameral/current"200 response
{
"data": [],
"pagination": {
"page": 1,
"limit": 1000,
"total": 0,
"hasMore": false
},
"meta": {
"lastUpdated": "2026-09-15T21:33:47.989Z",
"government": {
"country": "us",
"level": "state",
"branch": "legislative",
"chamber": "unicameral",
"stateCode": "ca"
}
}
}A live response, trimmed to the first records. sourceUrl values are shown redacted in documentation; the API returns the full value.
Responses
200List of government members
400Bad request - invalid parameters
404Resource not found
500Internal server error
Try it
PlaygroundLive responses from the real API
curl
curl "https://civiclens.io/api/v1/governments/us/states/ca/legislature/unicameral/current"