Discover/LA City API
live

LA City APIlacity.org

Access LA City Council meeting calendars, archived meetings back to 2008, council files, referrals, journals, and board/commission data via a structured API.

Endpoint health
verified 7d ago
get_archived_meeting_years
get_council_file_detail
get_boards_and_commissions_list
get_archived_meetings_by_year
get_meeting_calendar
8/8 passing latest checkself-healing
Endpoints
8
Updated
21d ago

What is the LA City API?

The LA City Clerk API provides 8 endpoints covering the full lifecycle of Los Angeles City Council activity — from upcoming meeting schedules to council file documents and committee referrals. Use get_council_file_detail to retrieve a file's complete document list and activity history by council file number, or get_archived_meetings_by_year to pull historical meeting records going back to 2008. Every response returns structured fields ready for programmatic use.

Try it

No input parameters required.

api.parse.bot/scraper/c51b39b0-385e-4482-b5bb-38af98531e45/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/c51b39b0-385e-4482-b5bb-38af98531e45/get_meeting_calendar' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace lacity-org-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: LA City Clerk SDK — meetings, council files, and governance documents."""
from parse_apis.la_city_clerk_api import LACityClerk, CouncilFileNotFound

client = LACityClerk()

# List upcoming meetings with documents and video links
for meeting in client.meetings.upcoming(limit=3):
    print(meeting.title, meeting.date, meeting.time, meeting.video_url)

# Search council files by keyword and drill into the first result
summary = client.councilfilesummaries.search(query="budget", limit=1).first()
if summary:
    detail = summary.details()
    print(detail.title, detail.council_file_number)
    for doc in detail.documents[:3]:
        print(doc.title, doc.url)

# List all committees
for committee in client.committees.list(limit=5):
    print(committee.name, committee.id)

# List current referral memos
for referral in client.referrals.list(limit=3):
    print(referral.title, referral.date)

# Typed error handling for a non-existent council file
try:
    bad = client.councilfilesummaries.search(query="99-9999", limit=1).first()
    if bad:
        bad.details()
except CouncilFileNotFound as exc:
    print(f"Council file not found: {exc.cf_number}")

# Browse archived meetings for a specific year
for meeting in client.meetings.by_year(year=2024, limit=3):
    print(meeting.title, meeting.date_time)

print("exercised: meetings.upcoming / councilfilesummaries.search / details / committees.list / referrals.list / meetings.by_year")
All endpoints · 8 totalmissing one? ·

List current and upcoming meetings from the City Clerk calendar. Returns meeting details including title, date/time, committee, associated documents, and video URLs. Results are not paginated; the full list of upcoming meetings is returned in a single response.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "meetings": "array of meeting objects with id, title, date_time, date, time, committee_id, committee_name, meeting_type_id, documents, and video_url"
  },
  "sample": {
    "data": {
      "meetings": [
        {
          "id": 18287,
          "date": "Jun 12, 2026",
          "time": "08:30 AM",
          "title": "Personnel and Hiring Committee",
          "date_time": "2026-06-12T08:30:00",
          "documents": [
            {
              "id": 83305,
              "type": "HTML Agenda",
              "title": "HTML Agenda",
              "pdf_url": "https://lacity.primegov.com/Public/CompiledDocument?meetingTemplateId=155150&compileOutputType=1",
              "html_url": "https://lacity.primegov.com/Portal/Meeting?meetingTemplateId=155150"
            }
          ],
          "video_url": "https://youtube.com/watch?v=faGMcn8Q6xw",
          "committee_id": 110,
          "committee_name": null,
          "meeting_type_id": 1378
        }
      ]
    },
    "status": "success"
  }
}

About the LA City API

Meeting Calendars and Archives

get_meeting_calendar returns current and upcoming meetings with fields including id, title, date_time, committee_name, documents, and video URLs. For historical data, get_archived_meetings_by_year accepts a year integer (2008–2026) and returns the same meeting structure. To know which years are available before querying, call get_archived_meeting_years first — it returns a plain array of integers that can be fed directly into the year parameter.

Council Files and Search

search_council_files accepts a query string — either a keyword like "budget" or a council file number like "24-0001" — and returns matching records with council_file_number, title, last_changed_date, and a direct url. To go deeper, pass a file number from those results into get_council_file_detail, which returns the file's full title, an array of documents (each with title, url, and date), and an activity_history array with dated entries describing each action and associated links.

Referrals, Journals, and Committees

get_referrals lists current referral memos sent from City Council to committees, each with title, url, and date. get_journals_minutes provides the same structure for official meeting journals and minutes — the formal action records of council sessions. get_boards_and_commissions_list returns every city board, commission, and committee in the meeting portal as objects with name and id, which correspond to the committee_id fields found in meeting responses.

Reliability & maintenanceVerified

The LA City API is a managed, monitored endpoint for lacity.org — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when lacity.org changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official lacity.org API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
7d ago
Latest check
8/8 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Monitor upcoming LA City Council committee meetings by polling get_meeting_calendar for schedule changes and new video URLs.
  • Build a council file tracker that alerts stakeholders when a specific file number gains new activity using get_council_file_detail activity_history.
  • Research historical voting patterns by retrieving archived meetings by year and cross-referencing committee names and document records.
  • Index LA legislative documents for full-text search by combining search_council_files results with document URLs from get_council_file_detail.
  • Display current committee referrals on a civic dashboard using get_referrals to show which items are pending committee review.
  • Map the complete list of city boards and commissions from get_boards_and_commissions_list to build a directory of city governance bodies.
  • Archive council meeting minutes by year using get_journals_minutes and get_archived_meetings_by_year for public records research.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does lacity.org have an official developer API?+
The Los Angeles City Clerk website does not publish a documented public developer API. This Parse API surfaces the same council file, meeting, and document data available on lacity.org in a structured, queryable format.
What does `get_council_file_detail` return beyond what `search_council_files` shows?+
search_council_files returns a summary: council_file_number, title, last_changed_date, and a URL. get_council_file_detail returns the full record for a specific file number, including a documents array (each entry has title, url, and date) and an activity_history array with dated entries and action descriptions — data not available in the search summary.
How far back does archived meeting data go?+
The get_archived_meetings_by_year endpoint covers years from 2008 through 2026. Call get_archived_meeting_years to get the exact list of available years before querying, since not all years in that range may have data.
Does the API return vote counts or roll-call records for individual council members?+
Not currently. The endpoints cover meeting metadata, document URLs, activity history descriptions, and referral/journal entries — but do not expose per-member vote tallies or roll-call breakdowns. You can fork this API on Parse and revise it to add an endpoint targeting that data.
Are meeting documents returned as full text, or only as links?+
Documents are returned as metadata objects with a title, url, and date — not as full text content. The url fields point to the source documents. The API does not currently fetch or parse document body text. You can fork it on Parse and revise to add a document-parsing endpoint if full-text extraction is needed.
Page content last updated . Spec covers 8 endpoints from lacity.org.
Related APIs in Government PublicSee all →
losangelescounty.gov API
Search Los Angeles County public records, code violations, and department information, while accessing board meeting minutes, transcripts, and agendas all in one place. Quickly find contact details for county departments and stay informed on official meetings without navigating multiple county websites.
losangeles.gov API
Search for building permits, inspection records, and property details for Los Angeles addresses to access permit histories, parcel information, code enforcement records, and occupancy certificates. Track retrofit programs and get comprehensive permit summaries to research property compliance and construction activity in LA.
cambridgema.iqm2.com API
Access municipal meeting schedules, details, and documents from an IQM2-powered government meeting portal. Search across boards, commissions, and calendar years to retrieve meeting information, document links (agendas, minutes, final actions), group listings, and RSS feed notifications for local government proceedings.
lacma.org API
Search LACMA's art collection, discover current and upcoming exhibitions, browse events and programs, and view detailed artwork information all from one place. Plan your museum visit with access to exhibition details, visitor information, and the complete catalog of artworks on display.
losangeles.craigslist.org API
Search and browse Craigslist Los Angeles listings with powerful filtering options, including keyword search, price ranges, category filters, and location-based results. Retrieve full listing details across all major categories including for sale, housing, jobs, and more.
arts.ca.gov API
Discover California arts funding opportunities by browsing grant programs, searching awarded grantees, and accessing resources from the California Arts Council. Find relevant grants and grantee information while staying updated with the latest news and resources in California's arts funding landscape.
passport.cityofnewyork.us API
Search and browse public procurement solicitations from New York City's official sourcing portal to find RFx (Request for Proposals, Quotes, and Information) opportunities. Filter solicitations by keyword to quickly identify relevant contracting opportunities that match your business needs.
harriscountytx.gov API
Access official Harris County government data including election results, county services and facilities like parks and libraries, public notices, and Commissioners Court meeting schedules. Stay informed about local government activities and find information about Harris County services all in one place.