get

government-members

/governments/us/federal/{state}/legislature/current

Get a state’s full congressional delegation

Returns both chambers at once — the state’s U.S. Representatives and Senators. Pass `congress` as the identifier to get every sitting member of Congress instead of one state’s delegation.

Parameters

nametyperequireddescription
statepathstringrequiredTwo-letter state code (lowercase)
pagequeryintegerdefault 1Page number for pagination
limitqueryintegerdefault 50Number of items per page

Example

curl
curl "https://civiclens.io/api/v1/governments/us/federal/ca/legislature/current"
200 response
{
  "data": [
    {
      "id": "j57ab3pjwzehc8yxbdcftzt2md850whm",
      "ocdPersonId": "bioguide:D000623",
      "bioGuideId": "D000623",
      "name": "Mark DeSaulnier",
      "firstName": "Mark",
      "lastName": "DeSaulnier",
      "title": "Representative",
      "profileImage": "https://svnkcjvhjsabii6v.public.blob.vercel-storage.com/photos/j57ab3pjwzehc8yxbdcftzt2md850whm-wCcfAcWGI2raDDHsjoqEK7iPU44iUs.jpg",
      "dateOfBirth": "1952-03-31",
      "birthPlace": "Lowell, Massachusetts",
      "party": "Democratic",
      "bio": "Mark DeSaulnier was born in Lowell, Massachusetts, and lives in Concord, California. DeSaulnier earned a high school diploma from Cranwell Preparatory School and a B.A. in history from the College of the Holy Cross in 1974. His career experience includes owning a business and working as a probation officer, a truck driver, a hotel services employee, and a politician. He served on the Contra Costa County Board of Supervisors and as the mayor of Concord. DeSaulnier served on the California Air Resources Board, the Bay Area Air Quality Management District, the Metropolitan Transportation Commission, and the California Toxic Substances Research and Teaching Program Advisory Committee.",
      "education": [
        "High school: Cranwell Preparatory School",
        "Bachelor's: College of the Holy Cross, 1974"
      ],
      "profession": [
        "Politician"
      ],
      "government": {
        "country": "us",
        "level": "federal",
        "branch": "legislative",
        "stateCode": "ca",
        "chamber": "lower",
        "district": "10",
        "termStart": "2025-01-01"
      },
      "contactInfo": {
        "capitolOffice": {
          "address": "2134 Rayburn House Office Building, Washington, DC 20515",
          "phone": "(202) 225-2095"
        },
        "phone": "(202) 225-2095",
        "website": "https://desaulnier.house.gov/"
      },
      "socialMedia": {
        "facebook": "RepMarkDeSaulnier",
        "instagram": "repdesaulnier",
        "twitter": "RepDeSaulnier"
      },
      "personalWebsite": "https://desaulnierforcongress.com/",
      "sourceUrl": "<redacted in documentation>",
      "addedToRole": 1776387713705.8237,
      "updatedAt": 1788922890289
    },
    {
      "id": "j57awdwf56xdpavajsnhsy9fhs8506b1",
      "ocdPersonId": "bioguide:M001163",
      "bioGuideId": "M001163",
      "name": "Doris O. Matsui",
      "firstName": "Doris",
      "lastName": "Matsui",
      "title": "Representative",
      "profileImage": "https://svnkcjvhjsabii6v.public.blob.vercel-storage.com/photos/j57awdwf56xdpavajsnhsy9fhs8506b1-DEB0raIZ74yMYTcOwWqWMSfEo2aNaV.png",
      "dateOfBirth": "1944-09-25",
      "birthPlace": "Poston, Arizona",
      "party": "Democratic",
      "bio": "Doris Matsui was born in Poston, Arizona. Matsui earned a B.A. from the University of California at Berkeley in 1966. Her career experience includes working as a professional advocate, deputy assistant with the Office of the Public Liaison with the Bill Clinton presidential administration, and a staffer with the transition team for then-President-elect Bill Clinton. Matsui has served as a member of the board of regents of the Smithsonian and the chairwoman of the board of the KVIE public television station.",
      "education": [
        "Bachelor's: University of California, Berkeley, 1966"
      ],
      "religion": "Christian: Methodist",
      "government": {
        "country": "us",
        "level": "federal",
        "branch": "legislative",
        "stateCode": "ca",
        "chamber": "lower",
        "district": "07",
        "termStart": "2025-01-01"
      },
      "contactInfo": {
        "capitolOffice": {
          "address": "2206 Rayburn House Office Building, Washington, DC 20515",
          "phone": "(202) 225-7163"
        },
        "phone": "(202) 225-7163",
        "website": "https://matsui.house.gov"
      },
      "socialMedia": {
        "facebook": "doris.matsui",
        "instagram": "repdorismatsui",
        "twitter": "DorisMatsui",
        "youtube": "RepDorisMatsui"
      },
      "personalWebsite": "https://www.matsuiforcongress.com/",
      "sourceUrl": "<redacted in documentation>",
      "addedToRole": 1776387715227.3374,
      "updatedAt": 1788922890492
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 1000,
    "total": 54,
    "hasMore": false
  },
  "meta": {
    "lastUpdated": "2026-09-15T21:33:46.972Z",
    "government": {
      "country": "us",
      "level": "federal",
      "branch": "legislative",
      "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/federal/ca/legislature/current"