diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 77e28a1..d58a190 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,6 +25,7 @@ jobs: bun-version: 1.4.0 - run: bun install - run: bun run lint + - run: python3 test/police-source-discovery.test.py - run: bun test env: DATABASE_URL: postgres://unused:unused@localhost:5432/unused diff --git a/.gitignore b/.gitignore index cbf27d1..104b6fe 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ node_modules/ +__pycache__/ .env .env.local *.log diff --git a/README.md b/README.md index 481b0f6..23543e0 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Adapters are one file each in `packages/adapters/src`. One hundred and twenty-ei | automotive | `fueleconomy-catalog`, `nhtsa-recalls`, `nhtsa-complaints`, `nhtsa-safety-ratings` | no | | markets | `iso-mic-exchanges`, `alpaca-corporate-actions`, `alpaca-news`, `alpaca-assets`, `equity-history`, `nasdaq-halts`, `ecb-fx-rates`, `sec-fundamentals` | Alpaca (`APCA_API_KEY_ID`, `APCA_API_SECRET_KEY`, `APCA_FEED` iex or sip); SEC wants `CONTACT_EMAIL` in the user agent | | crypto | `coingecko-assets`, `crypto-pairs` | keyless (`COINGECKO_API_KEY` optional; `CRYPTO_PROXY_URL` for Binance.US from a datacenter) | -| crime | `socrata-crime`, `uk-police-crime`, `fbi-crime-estimates` | FBI only (free api.data.gov key) | +| crime | `socrata-crime`, `uk-police-crime`, `fbi-crime-estimates`, `police-updates` (39 California police feeds; [source coverage](docs/police-sources.md)) | FBI only (free api.data.gov key) | | public-money | `usaspending-awards`, `ocds-tenders`, `ted-notices` | no | | housing | `uk-land-registry`, `freddie-mac-rates`, `building-permits` | no | | jobs | `bls-series`, `eurostat`, `warn-layoffs`, `agenticjobs` | no | diff --git a/apps/web/package.json b/apps/web/package.json index 9d64407..a4335d5 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -10,6 +10,7 @@ }, "dependencies": { "@logicsrc/openaccess": "^0.3.0", + "@nichedb/adapters": "workspace:*", "@nichedb/auth": "workspace:*", "@nichedb/config": "workspace:*", "@nichedb/core": "workspace:*", diff --git a/apps/web/src/routes/pages.js b/apps/web/src/routes/pages.js index 1f34d81..faf16bd 100644 --- a/apps/web/src/routes/pages.js +++ b/apps/web/src/routes/pages.js @@ -22,6 +22,7 @@ import { Landing, SearchPage, } from '../views/pages.jsx'; +import { PoliceCoveragePage } from '../views/police-coverage.jsx'; /** * What a free reader gets where a members-only collection would be. @@ -79,6 +80,19 @@ export function registerPages(app) { }); app.get('/rings', (c) => c.redirect('/c/webrings', 301)); + app.get('/c/crime/coverage', async (c) => + c.html( + await render( + , + ), + ), + ); + app.get('/c/:slug', async (c) => { const collection = await q.getCollection(c.req.param('slug')); if (!collection) return c.notFound(); diff --git a/apps/web/src/views/components.jsx b/apps/web/src/views/components.jsx index ec72cc1..1f423d3 100644 --- a/apps/web/src/views/components.jsx +++ b/apps/web/src/views/components.jsx @@ -127,7 +127,16 @@ export const ItemRow = ({ item, showSource = true, enrichers = null, reserveThum {' · '} {item.kind} {item.distance_m != null ? ( - · {(Number(item.distance_m) / 1000).toFixed(2)} km from point or coverage + + {' '} + · {(Number(item.distance_m) / 1000).toFixed(2)} km{' '} + {item.kind === 'police-update' + ? 'to publishing city reference point' + : 'from point or coverage'} + + ) : null} + {item.kind === 'police-update' ? ( + · city-level announcement · publication date ) : null} {item.url ? ( <> diff --git a/apps/web/src/views/pages.jsx b/apps/web/src/views/pages.jsx index b3e6787..f39ecb5 100644 --- a/apps/web/src/views/pages.jsx +++ b/apps/web/src/views/pages.jsx @@ -97,6 +97,14 @@ export const CollectionPage = ({ >

{collection.name}

{collection.description}

+ {collection.slug === 'crime' ? ( +

+ California police source coverage ·{' '} + + Police updates in this area + +

+ ) : null}

items · today · {stats.sources} sources · {stats.feeds} feeds @@ -378,6 +386,13 @@ export const ItemPage = ({ ) : null}

{item.summary ?

{item.summary}

: null} + {item.kind === 'police-update' ? ( +

+ Published by {item.data?.publisher}. This is a police announcement. The date is its + publication time; the geographic location is the Census reference point for{' '} + {item.data?.jurisdiction}. The incident time and exact location are not supplied here. +

+ ) : null} { + const eligible = POLICE_CITIES.filter((city) => city.population > minimum); + const cities = eligible.filter( + (city) => + (!pending || !city.ingestion) && + `${city.name} ${city.references.map((r) => r.url).join(' ')}` + .toLowerCase() + .includes(search.toLowerCase()), + ); + return ( + +

+ Crime › California sources +

+

California police sources

+

+ {eligible.length} cities over {minimum.toLocaleString()} residents.{' '} + {eligible.filter((city) => city.ingestion).length} have reviewed public feeds configured for + hourly checks. Other cities have source leads to follow while feed coverage is expanded. +

+

+ Read California police updates. Announcements can include + traffic advisories, crime releases and community notices. Geographic filters locate the + publishing city, and dates show when the announcement was published. +

+
+ {' '} + {' '} + {' '} + +
+

+ {cities.length} cities shown. Population: Census {POLICE_SCOPE.populationYear} estimates. +

+ + + + + + + + + + {cities.map((city) => ( + + + + + + ))} + +
CityFeed coverageSource links
+ {city.name} +
+ {city.population.toLocaleString()} residents +
+ {city.ingestion ? ( + <> + + Reviewed {city.ingestion.format === 'nixle' ? 'Nixle' : 'RSS'} feed + +
+ + Hourly when enabled · checked {city.ingestion.checkedAt.slice(0, 10)} + + + ) : ( + Source leads only + )} +
+
    + {city.references.map((reference) => ( +
  • + + {reference.kind} ↗ + {' '} + + {reference.reviewed ? 'reviewed' : 'candidate'} + +
  • + ))} +
+
+

+ Source leads may need jurisdiction and freshness checks. County sheriff pages may cover + multiple cities. Social account links are available to visit; automated social ingestion is + not included. Public feeds can change or become unavailable. +

+

+ Census population source +

+
+ ); +}; diff --git a/bun.lock b/bun.lock index 3f99d07..e0d14ab 100644 --- a/bun.lock +++ b/bun.lock @@ -23,6 +23,7 @@ "version": "0.26.0", "dependencies": { "@logicsrc/openaccess": "^0.3.0", + "@nichedb/adapters": "workspace:*", "@nichedb/auth": "workspace:*", "@nichedb/config": "workspace:*", "@nichedb/core": "workspace:*", diff --git a/docs/data/police-ingestion-ca.json b/docs/data/police-ingestion-ca.json new file mode 100644 index 0000000..56a3172 --- /dev/null +++ b/docs/data/police-ingestion-ca.json @@ -0,0 +1,314 @@ +{ + "Apple Valley": { + "url": "https://local.nixle.com/sbsd---apple-valley-police-department/", + "format": "nixle", + "publisher": "SBSD - Apple Valley Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/apple-valley/", + "checkedAt": "2026-09-13T19:19:20.995088+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Arcadia": { + "url": "https://local.nixle.com/arcadia-police-department/", + "format": "nixle", + "publisher": "Arcadia Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/arcadia/", + "checkedAt": "2026-09-13T19:19:20.996070+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Berkeley": { + "url": "https://local.nixle.com/berkeley-police-department/", + "format": "nixle", + "publisher": "Berkeley Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/berkeley/", + "checkedAt": "2026-09-13T19:19:20.996292+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Chino Hills": { + "url": "https://local.nixle.com/sbsd---chino-hills-police-department/", + "format": "nixle", + "publisher": "SBSD - Chino Hills Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/chino-hills/", + "checkedAt": "2026-09-13T19:19:20.996513+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Costa Mesa": { + "url": "https://local.nixle.com/costa-mesa-police-department/", + "format": "nixle", + "publisher": "Costa Mesa Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/costa-mesa/", + "checkedAt": "2026-09-13T19:19:20.996704+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Daly City": { + "url": "https://local.nixle.com/daly-city-police-department/", + "format": "nixle", + "publisher": "Daly City Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/daly-city/", + "checkedAt": "2026-09-13T19:19:20.996874+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Escondido": { + "url": "https://local.nixle.com/escondido-police-department/", + "format": "nixle", + "publisher": "Escondido Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/escondido/", + "checkedAt": "2026-09-13T19:19:20.997196+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Fairfield": { + "url": "https://local.nixle.com/fairfield-ca-police-department/", + "format": "nixle", + "publisher": "Fairfield, CA Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/fairfield/", + "checkedAt": "2026-09-13T19:19:21.834007+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Folsom": { + "url": "https://local.nixle.com/folsom-police-department/", + "format": "nixle", + "publisher": "Folsom Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/folsom/", + "checkedAt": "2026-09-13T19:19:22.532991+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Fremont": { + "url": "https://local.nixle.com/fremont-police-department-ca/", + "format": "nixle", + "publisher": "Fremont Police Department (CA)", + "evidenceUrl": "https://local.nixle.com/city/ca/fremont/", + "checkedAt": "2026-09-13T19:19:23.950956+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Gilroy": { + "url": "https://local.nixle.com/gilroy-police-department/", + "format": "nixle", + "publisher": "Gilroy Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/gilroy/", + "checkedAt": "2026-09-13T19:19:24.727165+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Hesperia": { + "url": "https://local.nixle.com/sbsd---hesperia-police-department/", + "format": "nixle", + "publisher": "SBSD - Hesperia Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/hesperia/", + "checkedAt": "2026-09-13T19:19:25.523116+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Highland": { + "url": "https://local.nixle.com/sbsd---highland-police-department/", + "format": "nixle", + "publisher": "SBSD - Highland Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/highland/", + "checkedAt": "2026-09-13T19:19:26.069527+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Manteca": { + "url": "https://local.nixle.com/manteca-police-department/", + "format": "nixle", + "publisher": "Manteca Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/manteca/", + "checkedAt": "2026-09-13T19:19:29.844334+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "National City": { + "url": "https://local.nixle.com/national-city-police-department/", + "format": "nixle", + "publisher": "National City Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/national-city/", + "checkedAt": "2026-09-13T19:19:30.595688+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Novato": { + "url": "https://local.nixle.com/novato-police-ca/", + "format": "nixle", + "publisher": "Novato Police, CA", + "evidenceUrl": "https://local.nixle.com/city/ca/novato/", + "checkedAt": "2026-09-13T19:19:31.345058+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Oakland": { + "url": "https://local.nixle.com/oakland-police-department-ca/", + "format": "nixle", + "publisher": "Oakland Police Department CA", + "evidenceUrl": "https://local.nixle.com/city/ca/oakland/", + "checkedAt": "2026-09-13T19:19:32.125369+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Palo Alto": { + "url": "https://local.nixle.com/palo-alto-police-department/", + "format": "nixle", + "publisher": "Palo Alto Police Department", + "evidenceUrl": "https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections", + "checkedAt": "2026-09-13T19:03:12.637970+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Petaluma": { + "url": "https://local.nixle.com/petaluma-police-department/", + "format": "nixle", + "publisher": "Petaluma Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/petaluma/", + "checkedAt": "2026-09-13T19:19:33.043055+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Pleasanton": { + "url": "https://local.nixle.com/pleasanton-police-department/", + "format": "nixle", + "publisher": "Pleasanton Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/pleasanton/", + "checkedAt": "2026-09-13T19:19:34.560058+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Rancho Cucamonga": { + "url": "https://local.nixle.com/sbsd---rancho-cucamonga-police-department/", + "format": "nixle", + "publisher": "SBSD - Rancho Cucamonga Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/rancho-cucamonga/", + "checkedAt": "2026-09-13T19:19:35.321167+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Redwood City": { + "url": "https://local.nixle.com/redwood-city-police-department/", + "format": "nixle", + "publisher": "Redwood City Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/redwood-city/", + "checkedAt": "2026-09-13T19:19:36.030761+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "San Leandro": { + "url": "https://local.nixle.com/san-leandro-police-department/", + "format": "nixle", + "publisher": "San Leandro Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/san-leandro/", + "checkedAt": "2026-09-13T19:19:38.241109+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "San Mateo": { + "url": "https://local.nixle.com/san-mateo-ca-police-department/", + "format": "nixle", + "publisher": "San Mateo, CA Police Department", + "evidenceUrl": "https://www.cityofsanmateo.org/2729/Social-Media-Mobile-Apps", + "checkedAt": "2026-09-13T19:03:15.256613+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "San Rafael": { + "url": "https://local.nixle.com/san-rafael-police-department/", + "format": "nixle", + "publisher": "San Rafael Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/san-rafael/", + "checkedAt": "2026-09-13T19:19:38.997997+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Santa Clara": { + "url": "https://local.nixle.com/santa-clara-police-department/", + "format": "nixle", + "publisher": "Santa Clara Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/santa-clara/", + "checkedAt": "2026-09-13T19:19:41.195739+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Santa Maria": { + "url": "https://local.nixle.com/santa-maria-police-department/", + "format": "nixle", + "publisher": "Santa Maria Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/santa-maria/", + "checkedAt": "2026-09-13T19:19:42.716791+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Simi Valley": { + "url": "https://local.nixle.com/simi-valley-police-department/", + "format": "nixle", + "publisher": "Simi Valley Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/simi-valley/", + "checkedAt": "2026-09-13T19:19:43.269924+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Stockton": { + "url": "https://local.nixle.com/stockton-police-department-ca/", + "format": "nixle", + "publisher": "Stockton Police Department, CA", + "evidenceUrl": "https://local.nixle.com/city/ca/stockton/", + "checkedAt": "2026-09-13T19:19:43.978293+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Sunnyvale": { + "url": "https://local.nixle.com/sunnyvale-department-of-public-safety/", + "format": "nixle", + "publisher": "Sunnyvale Department of Public Safety", + "evidenceUrl": "https://local.nixle.com/city/ca/sunnyvale/", + "checkedAt": "2026-09-13T19:19:44.697291+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Turlock": { + "url": "https://local.nixle.com/turlock-police-department-ca/", + "format": "nixle", + "publisher": "Turlock Police Department, CA", + "evidenceUrl": "https://turlockca.gov/aboutturlock/socialmedia/", + "checkedAt": "2026-09-13T19:03:18.782038+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Tustin": { + "url": "https://local.nixle.com/tustin-ca-police-department/", + "format": "nixle", + "publisher": "Tustin, CA Police Department", + "evidenceUrl": "https://www.tustinca.org/176/Crime-Trends", + "checkedAt": "2026-09-13T19:03:19.297447+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Union City": { + "url": "https://local.nixle.com/union-city-police-department-ca/", + "format": "nixle", + "publisher": "Union City Police Department, CA", + "evidenceUrl": "https://local.nixle.com/city/ca/union-city/", + "checkedAt": "2026-09-13T19:19:45.450035+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Victorville": { + "url": "https://local.nixle.com/sbsd---victorville-police-department/", + "format": "nixle", + "publisher": "SBSD - Victorville Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/victorville/", + "checkedAt": "2026-09-13T19:19:46.154934+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Yucaipa": { + "url": "https://local.nixle.com/sbsd---yucaipa-police-department/", + "format": "nixle", + "publisher": "SBSD - Yucaipa Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/yucaipa/", + "checkedAt": "2026-09-13T19:19:46.908258+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "Pasadena": { + "url": "https://www.cityofpasadena.net/police/news/feed/", + "format": "rss", + "publisher": "Pasadena Police Department", + "evidenceUrl": "https://www.cityofpasadena.net/police/news/", + "checkedAt": "2026-09-13T19:03:13.380550+00:00", + "review": "Official police publisher; public RSS contains current police announcements." + }, + "Salinas": { + "url": "https://police.salinas.gov/feed/", + "format": "rss", + "publisher": "Salinas Police Department", + "evidenceUrl": "https://police.salinas.gov/", + "checkedAt": "2026-09-13T19:03:14.043058+00:00", + "review": "Official police publisher; public RSS contains current police announcements." + }, + "Tracy": { + "url": "https://tracypd.com/feed", + "format": "rss", + "publisher": "Tracy Police Department", + "evidenceUrl": "https://tracypd.com/", + "checkedAt": "2026-09-13T19:03:17.149087+00:00", + "review": "Official police publisher; public RSS contains current police announcements." + }, + "Hemet": { + "url": "https://hemetpd.com/feed/", + "format": "rss", + "publisher": "Hemet Police Department", + "evidenceUrl": "https://www.hemetca.gov/DocumentCenter/View/12232/General-Plan-Progress-Report-2025", + "checkedAt": "2026-09-13T19:22:30.700425+00:00", + "review": "City general plan references hemetpd.com; RSS has current police announcements." + } +} diff --git a/docs/data/police-source-overrides.json b/docs/data/police-source-overrides.json new file mode 100644 index 0000000..79fb779 --- /dev/null +++ b/docs/data/police-source-overrides.json @@ -0,0 +1,289 @@ +{ + "CA:San Jose": { + "department_urls": ["https://www.sjpd.org/about-us/inside-sjpd/press-releases"], + "channels": [ + { + "kind": "newsroom", + "url": "https://www.sjpd.org/about-us/inside-sjpd/press-releases", + "evidence_url": "https://www.sjpd.org/about-us/organization/office-of-the-chief-of-police/media-relations-pio", + "verification": "reviewed-official-page", + "access": "search-readable; direct-http-403" + }, + { + "kind": "x", + "url": "https://x.com/SJPD_PIO", + "evidence_url": "https://info.sjpd.org/records/pc-13650_library/Unit%20Guidelines/Media%20Relations%20Unit%20Guidelines%20UPDATE%201-4-2024_Redacted.pdf", + "verification": "official-department-publication", + "access": "not-tested" + } + ] + }, + "CA:Cupertino": { + "department_urls": ["https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff"], + "channels": [ + { + "kind": "newsroom", + "url": "https://sheriff.santaclaracounty.gov/about-us/newsroom-press-releases", + "evidence_url": "https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff", + "verification": "reviewed-contract-agency", + "access": "public-html", + "coverage_note": "County sheriff; filter releases to Cupertino. Do not assign every county incident to this city." + } + ] + }, + "CA:Palo Alto": { + "department_urls": [ + "https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections", + "https://www.paloalto.gov/Departments/Police/Public-Information-Portal/News-Releases" + ] + }, + "CA:Mountain View": { + "department_urls": [ + "https://www.mountainview.gov/our-city/departments/police/news/-arch-1/-fsiteid-1/-locale-en" + ], + "channels": [ + { + "kind": "newsroom", + "url": "https://www.mountainview.gov/our-city/departments/police/news/-arch-1/-fsiteid-1/-locale-en", + "evidence_url": "https://www.mountainview.gov/our-city/departments/police/news/-arch-1/-fsiteid-1/-locale-en", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + } + ] + }, + "CA:Milpitas": { + "department_urls": ["https://www.milpitas.gov/1101/Police"] + }, + "CA:Santa Clara": { + "department_urls": [ + "https://www.santaclaraca.gov/our-city/departments-g-z/police-department", + "https://www.santaclaraca.gov/our-city/departments-g-z/police-department/crime/arrest-log" + ], + "channels": [ + { + "kind": "incident-log", + "url": "https://www.santaclaraca.gov/our-city/departments-g-z/police-department/crime/arrest-log", + "evidence_url": "https://www.santaclaraca.gov/our-city/departments-g-z/police-department/crime/arrest-log", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + }, + { + "kind": "x", + "url": "https://x.com/SantaClaraPD", + "evidence_url": "https://www.santaclaraca.gov/home/showpublisheddocument/88189/639080556114870000", + "verification": "official-department-reference", + "access": "not-tested" + } + ] + }, + "CA:Sunnyvale": { + "department_urls": ["https://www.sunnyvale.ca.gov/your-government/about/social-media-center"], + "channels": [ + { + "kind": "social-directory", + "url": "https://www.sunnyvale.ca.gov/your-government/about/social-media-center", + "evidence_url": "https://www.sunnyvale.ca.gov/your-government/about/social-media-center", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + } + ] + }, + "CA:Antioch": { + "department_urls": [], + "channels": [ + { + "kind": "department-page", + "url": "https://www.antiochca.gov/186/Police-Department", + "evidence_url": "https://www.antiochca.gov/186/Police-Department", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + } + ] + }, + "CA:Brentwood": { + "department_urls": [], + "channels": [ + { + "kind": "department-page", + "url": "https://www.brentwoodca.gov/government/police", + "evidence_url": "https://www.brentwoodca.gov/government/police", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + } + ] + }, + "CA:Dublin": { + "department_urls": [], + "channels": [ + { + "kind": "alerts", + "url": "https://dublin.ca.gov/alertcenter.aspx?CID=1", + "evidence_url": "https://dublin.ca.gov/alertcenter.aspx?CID=1", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + } + ] + }, + "CA:Fremont": { + "department_urls": [], + "channels": [ + { + "kind": "department-page", + "url": "https://www.fremontpolice.gov/", + "evidence_url": "https://www.fremontpolice.gov/", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + }, + { + "kind": "x", + "url": "https://x.com/FremontPD", + "evidence_url": "https://www.fremont.gov/about/news-media/social-media-center", + "verification": "official-department-reference", + "access": "not-tested" + } + ] + }, + "CA:Livermore": { + "channels": [ + { + "kind": "newsroom", + "url": "https://police.livermoreca.gov/community/news-press-releases", + "evidence_url": "https://police.livermoreca.gov/community/news-press-releases", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + } + ] + }, + "CA:Manteca": { + "channels": [ + { + "kind": "crime-map-directory", + "url": "https://www.manteca.gov/627/Crime-Information", + "evidence_url": "https://www.manteca.gov/627/Crime-Information", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + } + ] + }, + "CA:Anaheim": { + "channels": [ + { + "kind": "department-page", + "url": "https://pd.anaheim.net/", + "evidence_url": "https://pd.anaheim.net/", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + } + ] + }, + "CA:Fullerton": { + "channels": [ + { + "kind": "social-directory", + "url": "https://linktr.ee/fullertonpd", + "evidence_url": "https://linktr.ee/fullertonpd", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "url": "https://www.cityoffullerton.com/government/departments/police", + "evidence_url": "https://www.cityoffullerton.com/government/departments/police", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "url": "https://www.cityoffullerton.com/government/departments/police/crime-trends/latest-news", + "evidence_url": "https://linktr.ee/fullertonpd", + "verification": "reviewed-primary-web-source", + "access": "HTTP-403; reference-only" + } + ] + }, + "CA:Hemet": { + "channels": [ + { + "kind": "newsroom", + "url": "https://hemetpd.com/", + "evidence_url": "https://hemetpd.com/", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + }, + { + "kind": "feed-candidate", + "url": "https://hemetpd.com/feed/", + "evidence_url": "https://hemetpd.com/", + "verification": "reviewed-police-publisher-feed", + "access": "not-tested", + "link_text": "Hemet Police Department RSS" + } + ] + }, + "CA:Los Angeles": { + "channels": [ + { + "kind": "newsroom", + "url": "https://www.lapdonline.org/newsroom/", + "evidence_url": "https://www.lapdonline.org/newsroom/", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + } + ] + }, + "CA:Oceanside": { + "channels": [ + { + "kind": "newsroom", + "url": "https://www.oceansidepolice.com/about-opd/press-releases", + "evidence_url": "https://www.oceansidepolice.com/about-opd/press-releases", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + } + ] + }, + "CA:Rancho Cordova": { + "channels": [ + { + "kind": "department-page", + "url": "https://www.ranchocordovapd.com/", + "evidence_url": "https://www.ranchocordovapd.com/", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + } + ] + }, + "CA:San Buenaventura (Ventura)": { + "channels": [ + { + "kind": "newsroom", + "url": "https://www.cityofventura.ca.gov/Blog.aspx?CID=5", + "evidence_url": "https://www.cityofventura.ca.gov/Blog.aspx?CID=5", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + } + ] + }, + "CA:Vallejo": { + "channels": [ + { + "kind": "newsroom", + "url": "https://www.vallejopd.net/public_information/news/press_releases", + "evidence_url": "https://www.vallejopd.net/public_information/news/press_releases", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + } + ] + }, + "CA:Newport Beach": { + "channels": [ + { + "kind": "newsroom", + "url": "https://www.nbpd.org/what-s-new/press-releases", + "evidence_url": "https://www.nbpd.org/what-s-new/press-releases", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + } + ] + } +} diff --git a/docs/data/police-sources/channels.csv b/docs/data/police-sources/channels.csv new file mode 100644 index 0000000..f2d9ebf --- /dev/null +++ b/docs/data/police-sources/channels.csv @@ -0,0 +1,1716 @@ +id,name,state,population,population_year,geography,status,distance_from_link_km,kind,url,evidence_url,verification,access +162:0600562,Alameda,CA,76876,2025,incorporated-place,channels-found,62.09,department-page,https://www.alamedaca.gov/Departments/Police-Department/Crime-Activity,https://www.alamedaca.gov/Home,official-domain-or-referral,public-html +162:0600562,Alameda,CA,76876,2025,incorporated-place,channels-found,62.09,alerts,https://www.alamedaca.gov/RESIDENTS/Alerts-Advisories,https://www.alamedaca.gov/Departments/Police-Department/Crime-Activity,linked-from-official-page,not-tested +162:0600562,Alameda,CA,76876,2025,incorporated-place,channels-found,62.09,incident-log,https://alameda.citizenrims.com/map,https://www.alamedaca.gov/Departments/Police-Department/Crime-Activity,linked-from-official-page,not-tested +162:0600562,Alameda,CA,76876,2025,incorporated-place,channels-found,62.09,incident-log,https://www.alamedaca.gov/files/assets/public/v/27/departments/alameda/police/hate-crime-stats/apd-hate-crime-log-2023-present-june-2026.pdf,https://www.alamedaca.gov/Departments/Police-Department/Crime-Activity,linked-from-official-page,not-tested +162:0600562,Alameda,CA,76876,2025,incorporated-place,channels-found,62.09,incident-log,https://www.alamedaca.gov/files/assets/public/v/2/departments/alameda/police/hate-crime-log-public.xlsx.pdf,https://www.alamedaca.gov/Departments/Police-Department/Crime-Activity,linked-from-official-page,not-tested +162:0600562,Alameda,CA,76876,2025,incorporated-place,channels-found,62.09,department-page,https://www.alamedaca.gov/Shortcut-Content/News-Media,https://www.alamedaca.gov/Departments/Police-Department/Crime-Activity,official-domain-or-referral,public-html +162:0600562,Alameda,CA,76876,2025,incorporated-place,channels-found,62.09,newsroom,https://www.alamedaca.gov/Shortcut-Content/News-Media/City-of-Alameda-Making-Library-Access-Easier-for-Students,https://www.alamedaca.gov/Shortcut-Content/News-Media,linked-from-official-page,not-tested +162:0600562,Alameda,CA,76876,2025,incorporated-place,channels-found,62.09,newsroom,https://www.alamedaca.gov/Shortcut-Content/News-Media/Alameda-Free-Library-Event-Alert-September-2026,https://www.alamedaca.gov/Shortcut-Content/News-Media,linked-from-official-page,not-tested +162:0600562,Alameda,CA,76876,2025,incorporated-place,channels-found,62.09,newsroom,https://www.alamedaca.gov/Shortcut-Content/News-Media/Proposed-Commercial-Zoning-Changes,https://www.alamedaca.gov/Shortcut-Content/News-Media,linked-from-official-page,not-tested +162:0600562,Alameda,CA,76876,2025,incorporated-place,channels-found,62.09,newsroom,https://www.alamedaca.gov/Shortcut-Content/News-Media/Oakland-Alameda-Water-Shuttle-Returns,https://www.alamedaca.gov/Shortcut-Content/News-Media,linked-from-official-page,not-tested +162:0600562,Alameda,CA,76876,2025,incorporated-place,channels-found,62.09,newsroom,https://www.alamedaca.gov/Shortcut-Content/News-Media/Alameda-Police-Month-in-Review-July-2026,https://www.alamedaca.gov/Shortcut-Content/News-Media,linked-from-official-page,not-tested +162:0600562,Alameda,CA,76876,2025,incorporated-place,channels-found,62.09,newsroom,https://www.alamedaca.gov/Shortcut-Content/News-Media/Assault-with-a-Deadly-Weapon-Press-Release-8.15.2026,https://www.alamedaca.gov/Shortcut-Content/News-Media,linked-from-official-page,not-tested +162:0600562,Alameda,CA,76876,2025,incorporated-place,channels-found,62.09,alerts,https://www.alamedaca.gov/Shortcut-Content/News-Media/Traffic-Advisory-Oakland-Alameda-Water-Shuttle-Out-of-Service,https://www.alamedaca.gov/Shortcut-Content/News-Media,linked-from-official-page,not-tested +162:0600562,Alameda,CA,76876,2025,incorporated-place,channels-found,62.09,alerts,https://www.ebmud.com/customers/alerts/,https://www.alamedaca.gov/RESIDENTS/Alerts-Advisories,linked-from-official-page,not-tested +162:0600562,Alameda,CA,76876,2025,incorporated-place,channels-found,62.09,alerts,https://www.alamedaca.gov/RESIDENTS/ALERTS-COVID-19,https://www.alamedaca.gov/RESIDENTS/Alerts-Advisories,linked-from-official-page,not-tested +162:0600562,Alameda,CA,76876,2025,incorporated-place,channels-found,62.09,alerts,https://www.acgov.org/emergencysite/,https://www.alamedaca.gov/RESIDENTS/Alerts-Advisories,linked-from-official-page,not-tested +162:0600884,Alhambra,CA,79820,2025,incorporated-place,department-found,491.53,department-page,https://alhambraca.gov/271/Crime-Statistics,https://alhambraca.gov/271/Crime-Statistics,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0600884,Alhambra,CA,79820,2025,incorporated-place,department-found,491.53,department-page,https://www.alhambraca.gov/834/Police,https://www.alhambraca.gov/834/Police,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0600884,Alhambra,CA,79820,2025,incorporated-place,department-found,491.53,department-page,https://www.cityofalhambra.org/834,https://www.cityofalhambra.org/834,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0602000,Anaheim,CA,341008,2025,incorporated-place,department-found,533.93,department-page,https://pd.anaheim.net/,https://pd.anaheim.net/,reviewed-primary-web-source,search-readable; automation-unverified +162:0602252,Antioch,CA,118958,2025,incorporated-place,department-found,82.72,department-page,https://www.antiochca.gov/186/Police-Department,https://www.antiochca.gov/186/Police-Department,reviewed-primary-web-source,search-readable; automation-unverified +162:0602252,Antioch,CA,118958,2025,incorporated-place,department-found,82.72,department-page,https://www.antiochca.gov/police/contact-information/,https://www.antiochca.gov/police/contact-information/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0602252,Antioch,CA,118958,2025,incorporated-place,department-found,82.72,department-page,https://www.antiochca.gov/446/Crime-Statistics,https://www.antiochca.gov/446/Crime-Statistics,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0602364,Apple Valley,CA,75247,2025,incorporated-place,channels-found,521.95,newsroom,https://www.applevalley.org/services/police-department/police-news,https://www.applevalley.org/services/police-department/police-news,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0602364,Apple Valley,CA,75247,2025,incorporated-place,channels-found,521.95,department-page,https://www.applevalleymn.gov/114/Police-Department,https://www.applevalleymn.gov/114/Police-Department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0602364,Apple Valley,CA,75247,2025,incorporated-place,channels-found,521.95,nixle,https://local.nixle.com/sbsd---apple-valley-police-department/,https://local.nixle.com/city/ca/apple-valley/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0602462,Arcadia,CA,54117,2025,incorporated-place,channels-found,493.98,department-page,https://www.arcadiacapolice.gov/index.php,https://arcadiaca.gov/,official-domain-or-referral,public-html +162:0602462,Arcadia,CA,54117,2025,incorporated-place,channels-found,493.98,department-page,https://www.arcadiacapolice.gov/crime_trends/index.php,https://www.arcadiacapolice.gov/index.php,official-domain-or-referral,public-html +162:0602462,Arcadia,CA,54117,2025,incorporated-place,channels-found,493.98,department-page,https://www.arcadiacapolice.gov/about_us/index.php,https://arcadiaca.gov/,official-domain-or-referral,public-html +162:0602462,Arcadia,CA,54117,2025,incorporated-place,channels-found,493.98,department-page,https://www.arcadiacapolice.gov/services/weekly_police_activity.php,https://www.arcadiacapolice.gov/about_us/index.php,official-domain-or-referral,public-html +162:0602462,Arcadia,CA,54117,2025,incorporated-place,channels-found,493.98,department-page,https://www.arcadiacapolice.gov/services/request_a_police_record.php,https://www.arcadiacapolice.gov/services/request_a_police_record.php,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0602462,Arcadia,CA,54117,2025,incorporated-place,channels-found,493.98,department-page,https://www.arcadiacapolice.gov/about_us/contact_us.php,https://www.arcadiacapolice.gov/about_us/contact_us.php,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0602462,Arcadia,CA,54117,2025,incorporated-place,channels-found,493.98,department-page,https://www.arcadiaca.gov/government/police/services/index.php,https://www.arcadiaca.gov/government/police/services/index.php,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0602462,Arcadia,CA,54117,2025,incorporated-place,channels-found,493.98,nixle,https://local.nixle.com/arcadia-police-department/,https://local.nixle.com/city/ca/arcadia/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0603526,Bakersfield,CA,422165,2025,incorporated-place,department-found,334.55,department-page,https://www.gov.ca.gov/2024/04/30/chp-bakersfield-public-safety-2/,https://www.gov.ca.gov/2024/04/30/chp-bakersfield-public-safety-2/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0603666,Baldwin Park,CA,68880,2025,incorporated-place,channels-found,502.14,department-page,https://www.baldwinparkpolice.com/,https://www.baldwinpark.com/,discovered-department-page; review-jurisdiction,public-html +162:0603666,Baldwin Park,CA,68880,2025,incorporated-place,channels-found,502.14,alerts,https://www.baldwinparkpolice.com/AlertCenter.aspx,https://www.baldwinparkpolice.com/,linked-from-municipal-or-department-page; review-scope,not-tested +162:0603666,Baldwin Park,CA,68880,2025,incorporated-place,channels-found,502.14,facebook,https://www.facebook.com/BaldwinParkPD/,https://www.baldwinparkpolice.com/,linked-from-municipal-or-department-page; review-scope,not-tested +162:0603666,Baldwin Park,CA,68880,2025,incorporated-place,channels-found,502.14,instagram,https://www.instagram.com/baldwinparkpd/,https://www.baldwinparkpolice.com/,linked-from-municipal-or-department-page; review-scope,not-tested +162:0603666,Baldwin Park,CA,68880,2025,incorporated-place,channels-found,502.14,alerts,https://www.baldwinparkpolice.com/List.aspx,https://www.baldwinparkpolice.com/AlertCenter.aspx,linked-from-municipal-or-department-page; review-scope,not-tested +162:0603666,Baldwin Park,CA,68880,2025,incorporated-place,channels-found,502.14,feed-directory,https://www.baldwinparkpolice.com/Rss.aspx,https://www.baldwinparkpolice.com/AlertCenter.aspx,linked-from-municipal-or-department-page; review-scope,not-tested +162:0603666,Baldwin Park,CA,68880,2025,incorporated-place,channels-found,502.14,alerts,https://www.baldwinparkpolice.com/list.aspx?Mode=Subscribe,https://www.baldwinparkpolice.com/AlertCenter.aspx,linked-from-municipal-or-department-page; review-scope,not-tested +162:0604758,Beaumont,CA,60835,2025,incorporated-place,channels-found,586.24,department-page,https://beaumontca.gov/1366/Police,https://beaumontca.gov/,official-domain-or-referral,public-html +162:0604758,Beaumont,CA,60835,2025,incorporated-place,channels-found,586.24,facebook,https://www.facebook.com/beaumontCApolice,https://beaumontca.gov/1366/Police,linked-from-official-page,not-tested +162:0604758,Beaumont,CA,60835,2025,incorporated-place,channels-found,586.24,instagram,https://www.instagram.com/beaumontca_pd/,https://beaumontca.gov/1366/Police,linked-from-official-page,not-tested +162:0604758,Beaumont,CA,60835,2025,incorporated-place,channels-found,586.24,incident-log,https://beaumontpd.citizenrims.com/map,https://beaumontca.gov/1366/Police,linked-from-official-page,not-tested +162:0604758,Beaumont,CA,60835,2025,incorporated-place,channels-found,586.24,alerts,https://beaumontca.gov/1340/Emergency-Alerts,https://beaumontca.gov/1366/Police,linked-from-official-page,not-tested +162:0604758,Beaumont,CA,60835,2025,incorporated-place,channels-found,586.24,alerts,https://beaumontca.gov/list.aspx,https://beaumontca.gov/1366/Police,linked-from-official-page,not-tested +162:0604758,Beaumont,CA,60835,2025,incorporated-place,channels-found,586.24,department-page,https://beaumontca.gov/1169/Crime,https://beaumontca.gov/1366/Police,official-domain-or-referral,public-html +162:0604758,Beaumont,CA,60835,2025,incorporated-place,channels-found,586.24,incident-log,https://beaumontpd.citizenrims.com,https://beaumontca.gov/1169/Crime,linked-from-official-page,not-tested +162:0604758,Beaumont,CA,60835,2025,incorporated-place,channels-found,586.24,department-page,https://beaumontca.gov/1196/Crime-Tips,https://beaumontca.gov/1366/Police,official-domain-or-referral,public-html +162:0604758,Beaumont,CA,60835,2025,incorporated-place,channels-found,586.24,department-page,https://beaumontca.gov/1166/Transparency,https://beaumontca.gov/1366/Police,official-domain-or-referral,public-html +162:0604982,Bellflower,CA,74719,2025,incorporated-place,channels-found,508.16,department-page,https://irvinepd.gov/2026/06/25/residential-burglary-crew-arrested-2/,https://irvinepd.gov/2026/06/25/residential-burglary-crew-arrested-2/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0604982,Bellflower,CA,74719,2025,incorporated-place,channels-found,508.16,newsroom,https://origin.www.longbeach.gov/police/press-releases/at-risk-missing-person---juan-munoz/,https://origin.www.longbeach.gov/police/press-releases/at-risk-missing-person---juan-munoz/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0604982,Bellflower,CA,74719,2025,incorporated-place,channels-found,508.16,newsroom,https://www.longbeach.gov/police/press-releases/traffic-fatality--2200-block-of-bellflower-boulevard/,https://www.longbeach.gov/police/press-releases/traffic-fatality--2200-block-of-bellflower-boulevard/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0606000,Berkeley,CA,121911,2025,incorporated-place,channels-found,75.97,department-page,https://berkeleyca.gov/safety-health/police,https://berkeleyca.gov/,official-domain-or-referral,public-html +162:0606000,Berkeley,CA,121911,2025,incorporated-place,channels-found,75.97,alerts,https://member.everbridge.net/index/453003085612570,https://berkeleyca.gov/safety-health/police,linked-from-official-page,not-tested +162:0606000,Berkeley,CA,121911,2025,incorporated-place,channels-found,75.97,department-page,https://berkeleyca.gov/community-recreation/news,https://berkeleyca.gov/safety-health/police,official-domain-or-referral,public-html +162:0606000,Berkeley,CA,121911,2025,incorporated-place,channels-found,75.97,department-page,https://berkeleyca.gov/safety-health/police/report-crime,https://berkeleyca.gov/safety-health/police,official-domain-or-referral,public-html +162:0606000,Berkeley,CA,121911,2025,incorporated-place,channels-found,75.97,department-page,https://berkeleyca.gov/safety-health/police-accountability,https://berkeleyca.gov/,official-domain-or-referral,public-html +162:0606000,Berkeley,CA,121911,2025,incorporated-place,channels-found,75.97,alerts,https://berkeleyca.gov/safety-health/disaster-preparedness/emergency-notifications,https://berkeleyca.gov/safety-health/police-accountability,linked-from-official-page,not-tested +162:0606000,Berkeley,CA,121911,2025,incorporated-place,channels-found,75.97,alerts,https://berkeleyca.gov/safety-health/public-health/public-health-alerts-and-advisories,https://berkeleyca.gov/safety-health/police-accountability,linked-from-official-page,not-tested +162:0606000,Berkeley,CA,121911,2025,incorporated-place,channels-found,75.97,nixle,https://local.nixle.com/berkeley-police-department/,https://local.nixle.com/city/ca/berkeley/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0608142,Brentwood,CA,66607,2025,incorporated-place,channels-found,79.44,department-page,https://www.brentwoodca.gov/government/police,https://www.brentwoodca.gov/government/police,reviewed-primary-web-source,search-readable; automation-unverified +162:0608142,Brentwood,CA,66607,2025,incorporated-place,channels-found,79.44,department-page,https://www.brentwoodca.gov/government/police/contact-us,https://www.brentwoodca.gov/government/police/contact-us,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0608142,Brentwood,CA,66607,2025,incorporated-place,channels-found,79.44,newsroom,https://www.brentwoodca.gov/government/police/news,https://www.brentwoodca.gov/government/police/news,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0608786,Buena Park,CA,81741,2025,incorporated-place,channels-found,518.08,department-page,https://www.ocsheriff.gov/occrimestoppers,https://www.ocsheriff.gov/occrimestoppers,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0608786,Buena Park,CA,81741,2025,incorporated-place,channels-found,518.08,department-page,https://oag.ca.gov/fingerprints/locations/buena-park-police-department,https://oag.ca.gov/fingerprints/locations/buena-park-police-department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0608786,Buena Park,CA,81741,2025,incorporated-place,channels-found,518.08,newsroom,https://www.oag.ca.gov/news/press-releases/california-department-justice-investigating-buena-park-police-department-officer,https://www.oag.ca.gov/news/press-releases/california-department-justice-investigating-buena-park-police-department-officer,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,department-page,https://www.burbankca.gov/web/police-department,https://www.burbankca.gov/,official-domain-or-referral,public-html +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,newsroom,https://www.burbankca.gov/web/police-department/newsroom,https://www.burbankca.gov/web/police-department,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,newsroom,https://www.burbankca.gov/web/police-department/news/-/police_newsdetail/20124/burbank-police-news-release-man-arrested-for-lewd-behavior,https://www.burbankca.gov/web/police-department,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,newsroom,https://www.burbankca.gov/web/police-department/news/-/police_newsdetail/20124/burbank-pd-news-release-burbank-police-participated-in-statewide-organized-retail-theft-operation,https://www.burbankca.gov/web/police-department,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,instagram,https://www.instagram.com/burbankpolice/,https://www.burbankca.gov/web/police-department,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,facebook,https://www.facebook.com/BurbankPD/,https://www.burbankca.gov/web/police-department,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,x,https://x.com/burbankpd,https://www.burbankca.gov/web/police-department,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,nixle,https://local.nixle.com/burbank-police-department-california/,https://www.burbankca.gov/web/police-department,linked-from-official-page,public-nixle-archive +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,nextdoor,https://nextdoor.com/agency-post/ca/burbank/burbank-police-department/city-of-burbank-and-burbank-police-department-are-not-affiliated-with-a-private-police-department-survey-186592471/,https://www.burbankca.gov/web/police-department,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,alerts,https://www.burbankca.gov/email-notifications,https://www.burbankca.gov/web/police-department,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,department-page,https://www.burbankca.gov/web/police-department/crime,https://www.burbankca.gov/web/police-department,official-domain-or-referral,public-html +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,crime-map,https://www.communitycrimemap.com/,https://www.burbankca.gov/web/police-department/crime,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,alerts,http://www.vinelink.com/,https://www.burbankca.gov/web/police-department/crime,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,newsroom,https://www.burbankca.gov/web/police-department/news/-/police_newsdetail/20124/burbank-pd-news-release-dui-checkpoint-results-3,https://www.burbankca.gov/web/police-department/newsroom,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,incident-log,https://www.burbankca.gov/web/police-department/news/-/police_newsdetail/20124/burbank-pd-community-bulletin-first-amendment-auditors,https://www.burbankca.gov/web/police-department/newsroom,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,newsroom,https://www.burbankca.gov/web/police-department/news/-/police_newsdetail/20124/burbank-pd-news-release-dui-checkpoint-scheduled-for-august-14-2026,https://www.burbankca.gov/web/police-department/newsroom,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,newsroom,https://www.burbankca.gov/web/police-department/news/-/police_newsdetail/20124/burbank-pd-news-release-alpr-technology-helps-detectives-solve-wallet-theft-case-of-elderly-victim,https://www.burbankca.gov/web/police-department/newsroom,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,newsroom,https://www.burbankca.gov/web/police-department/news/-/police_newsdetail/20124/burbank-pd-news-release-registered-sex-offender-arrested-following-indecent-exposure,https://www.burbankca.gov/web/police-department/newsroom,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,newsroom,https://www.burbankca.gov/web/police-department/news/-/police_newsdetail/20124/burbank-pd-news-release-fatal-traffic-collision-involving-electric-motorcycle,https://www.burbankca.gov/web/police-department/newsroom,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,newsroom,https://www.burbankca.gov/web/police-department/news/-/police_newsdetail/20124/burbank-pd-news-release-man-arrested-for-lewd-behavior,https://www.burbankca.gov/web/police-department/newsroom,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,newsroom,https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=1,https://www.burbankca.gov/web/police-department/newsroom,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,newsroom,https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=2,https://www.burbankca.gov/web/police-department/newsroom,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,newsroom,https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=3,https://www.burbankca.gov/web/police-department/newsroom,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,newsroom,https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=4,https://www.burbankca.gov/web/police-department/newsroom,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,newsroom,https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=5,https://www.burbankca.gov/web/police-department/newsroom,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,newsroom,https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=6,https://www.burbankca.gov/web/police-department/newsroom,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,newsroom,https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=7,https://www.burbankca.gov/web/police-department/newsroom,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,newsroom,https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=8,https://www.burbankca.gov/web/police-department/newsroom,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,newsroom,https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=9,https://www.burbankca.gov/web/police-department/newsroom,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,newsroom,https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=10,https://www.burbankca.gov/web/police-department/newsroom,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,newsroom,https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=11,https://www.burbankca.gov/web/police-department/newsroom,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,newsroom,https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=12,https://www.burbankca.gov/web/police-department/newsroom,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,newsroom,https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=13,https://www.burbankca.gov/web/police-department/newsroom,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,newsroom,https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=14,https://www.burbankca.gov/web/police-department/newsroom,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,newsroom,https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=15,https://www.burbankca.gov/web/police-department/newsroom,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,newsroom,https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=16,https://www.burbankca.gov/web/police-department/newsroom,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,newsroom,https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=17,https://www.burbankca.gov/web/police-department/newsroom,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,newsroom,https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=18,https://www.burbankca.gov/web/police-department/newsroom,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,newsroom,https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=19,https://www.burbankca.gov/web/police-department/newsroom,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,newsroom,https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=20,https://www.burbankca.gov/web/police-department/newsroom,linked-from-official-page,not-tested +162:0608954,Burbank,CA,102988,2025,incorporated-place,channels-found,470.94,department-page,https://www.burbankca.gov/web/police-department/film-burbank,https://www.burbankca.gov/,official-domain-or-referral,public-html +162:0610046,Camarillo,CA,68652,2025,incorporated-place,channels-found,426.45,department-page,https://oag.ca.gov/fingerprints/locations/camarillo-police-department,https://oag.ca.gov/fingerprints/locations/camarillo-police-department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0610046,Camarillo,CA,68652,2025,incorporated-place,channels-found,426.45,newsroom,https://sheriff.venturacounty.gov/?p=9065,https://sheriff.venturacounty.gov/?p=9065,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0610046,Camarillo,CA,68652,2025,incorporated-place,channels-found,426.45,announcement,https://sheriff.venturacounty.gov/wp-content/uploads/2023/10/20030826OIS200324690_report_finalcompressed.pdf,https://sheriff.venturacounty.gov/wp-content/uploads/2023/10/20030826OIS200324690_report_finalcompressed.pdf,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0611194,Carlsbad,CA,112260,2025,incorporated-place,department-found,623.13,department-page,https://www.carlsbadca.gov/Departments/police,https://www.carlsbadca.gov/Departments/police,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0611194,Carlsbad,CA,112260,2025,incorporated-place,department-found,623.13,department-page,https://www.carlsbadca.gov/departments/police/-npage-3,https://www.carlsbadca.gov/departments/police/-npage-3,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0611194,Carlsbad,CA,112260,2025,incorporated-place,department-found,623.13,department-page,https://www.carlsbadca.gov/departments/police/-npage-2,https://www.carlsbadca.gov/departments/police/-npage-2,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0611530,Carson,CA,90808,2025,incorporated-place,department-found,504.73,department-page,https://ci.carson.ca.us/CityManager/PublicSafety.aspx,https://ci.carson.ca.us/CityManager/PublicSafety.aspx,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0611530,Carson,CA,90808,2025,incorporated-place,department-found,504.73,department-page,https://www.carsoncity.gov/government/departments-g-z/sheriff-s-office/crime-in-our-area,https://www.carsoncity.gov/government/departments-g-z/sheriff-s-office/crime-in-our-area,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0612048,Cathedral City,CA,52375,2025,incorporated-place,department-found,623.84,department-page,https://www.cathedralcity.gov/departments/police-department/online-services-reporting,https://www.cathedralcity.gov/departments/police-department/online-services-reporting,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0612048,Cathedral City,CA,52375,2025,incorporated-place,department-found,623.84,department-page,https://www.cathedralcity.gov/departments/police-department/services-operations,https://www.cathedralcity.gov/departments/police-department/services-operations,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0612048,Cathedral City,CA,52375,2025,incorporated-place,department-found,623.84,department-page,https://www.cathedralcity.gov/departments/police-department,https://www.cathedralcity.gov/departments/police-department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0613014,Chico,CA,105081,2025,incorporated-place,channels-found,279.92,department-page,https://chicoca.gov/City-Services/Public-Safety/index.html,https://chicoca.gov/,official-domain-or-referral,public-html +162:0613014,Chico,CA,105081,2025,incorporated-place,channels-found,279.92,incident-log,https://chicoca.gov/City-Services/Public-Safety/__catapult_pages/4ab3d961-5958-4376-b4c5-4fbadab060c9/Police-Department.html,https://chicoca.gov/City-Services/Public-Safety/index.html,linked-from-official-page,not-tested +162:0613014,Chico,CA,105081,2025,incorporated-place,channels-found,279.92,incident-log,https://chicoca.gov/City-Services/Public-Safety/City-Services/Public-Safety/Police-Department/Police-Department-Online-Crime-Report/index.html,https://chicoca.gov/City-Services/Public-Safety/index.html,linked-from-official-page,not-tested +162:0613014,Chico,CA,105081,2025,incorporated-place,channels-found,279.92,newsroom,https://chicoca.gov/City-Services/Public-Safety/City-Services/Public-Safety/Police-Department/Police-Department-Press-Releases/index.html,https://chicoca.gov/City-Services/Public-Safety/index.html,linked-from-official-page,not-tested +162:0613014,Chico,CA,105081,2025,incorporated-place,channels-found,279.92,newsroom,https://chicoca.gov/City-Services/Public-Safety/Our-Community/Latest-News--Chico-TV/City-of-Chico-Press-Releases/index.html,https://chicoca.gov/City-Services/Public-Safety/index.html,linked-from-official-page,not-tested +162:0613014,Chico,CA,105081,2025,incorporated-place,channels-found,279.92,newsroom,https://chicoca.gov/City-Services/Public-Safety/__catapult_pages/c84db201-df65-486e-a338-b43b51c11755/Police-Department-Press-Releases.html,https://chicoca.gov/City-Services/Public-Safety/index.html,linked-from-official-page,not-tested +162:0613014,Chico,CA,105081,2025,incorporated-place,channels-found,279.92,alerts,https://public.coderedweb.com/CNE/en-US/BFA19C579EA5,https://chicoca.gov/City-Services/Public-Safety/index.html,linked-from-official-page,not-tested +162:0613014,Chico,CA,105081,2025,incorporated-place,channels-found,279.92,incident-log,https://chicoca.gov/City-Services/Public-Safety/__catapult_pages/1434a321-6462-4bc1-b275-f46a28f9cac5/Police-Department-Online-Crime-Report.html,https://chicoca.gov/City-Services/Public-Safety/index.html,linked-from-official-page,not-tested +162:0613014,Chico,CA,105081,2025,incorporated-place,channels-found,279.92,department-page,https://chicoca.gov/City-Services/Public-Safety/Fire-Department/index.html,https://chicoca.gov/,official-domain-or-referral,public-html +162:0613014,Chico,CA,105081,2025,incorporated-place,channels-found,279.92,incident-log,https://chicoca.gov/City-Services/Public-Safety/Fire-Department/__catapult_pages/4ab3d961-5958-4376-b4c5-4fbadab060c9/index.html,https://chicoca.gov/City-Services/Public-Safety/Fire-Department/index.html,linked-from-official-page,not-tested +162:0613014,Chico,CA,105081,2025,incorporated-place,channels-found,279.92,incident-log,https://chicoca.gov/City-Services/Public-Safety/Fire-Department/City-Services/Public-Safety/Police-Department/Police-Department-Online-Crime-Report/index.html,https://chicoca.gov/City-Services/Public-Safety/Fire-Department/index.html,linked-from-official-page,not-tested +162:0613014,Chico,CA,105081,2025,incorporated-place,channels-found,279.92,newsroom,https://chicoca.gov/City-Services/Public-Safety/Fire-Department/City-Services/Public-Safety/Police-Department/Police-Department-Press-Releases/index.html,https://chicoca.gov/City-Services/Public-Safety/Fire-Department/index.html,linked-from-official-page,not-tested +162:0613014,Chico,CA,105081,2025,incorporated-place,channels-found,279.92,newsroom,https://chicoca.gov/City-Services/Public-Safety/Fire-Department/Our-Community/Latest-News--Chico-TV/City-of-Chico-Press-Releases/index.html,https://chicoca.gov/City-Services/Public-Safety/Fire-Department/index.html,linked-from-official-page,not-tested +162:0613014,Chico,CA,105081,2025,incorporated-place,channels-found,279.92,alerts,https://www.smart911.com/smart911/ref/reg.action?pa=buttecounty,https://chicoca.gov/City-Services/Public-Safety/Fire-Department/index.html,linked-from-official-page,not-tested +162:0613210,Chino,CA,96957,2025,incorporated-place,channels-found,530.37,department-page,https://www.cityofchino.org/1740/Police,https://www.cityofchino.org/,discovered-department-page; review-jurisdiction,public-html +162:0613210,Chino,CA,96957,2025,incorporated-place,channels-found,530.37,facebook,https://www.facebook.com/chinopolicedept/,https://www.cityofchino.org/1740/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0613210,Chino,CA,96957,2025,incorporated-place,channels-found,530.37,instagram,https://www.instagram.com/CHINOPOLICEDEPT/,https://www.cityofchino.org/1740/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0613210,Chino,CA,96957,2025,incorporated-place,channels-found,530.37,alerts,https://www.cityofchino.org/CivicAlerts.aspx?AID=420,https://www.cityofchino.org/1740/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0613210,Chino,CA,96957,2025,incorporated-place,channels-found,530.37,alerts,https://www.cityofchino.org/CivicAlerts.aspx?AID=413,https://www.cityofchino.org/1740/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0613210,Chino,CA,96957,2025,incorporated-place,channels-found,530.37,alerts,https://www.cityofchino.org/CivicAlerts.aspx?AID=395,https://www.cityofchino.org/1740/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0613210,Chino,CA,96957,2025,incorporated-place,channels-found,530.37,alerts,https://www.cityofchino.org/CivicAlerts.aspx?AID=394,https://www.cityofchino.org/1740/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0613210,Chino,CA,96957,2025,incorporated-place,channels-found,530.37,alerts,https://www.cityofchino.org/CivicAlerts.aspx?AID=341,https://www.cityofchino.org/1740/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0613210,Chino,CA,96957,2025,incorporated-place,channels-found,530.37,alerts,https://www.cityofchino.org/CivicAlerts.aspx?AID=266,https://www.cityofchino.org/1740/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0613210,Chino,CA,96957,2025,incorporated-place,channels-found,530.37,alerts,https://www.cityofchino.org/CivicAlerts.aspx?AID=35,https://www.cityofchino.org/1740/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0613210,Chino,CA,96957,2025,incorporated-place,channels-found,530.37,alerts,https://www.cityofchino.org/CivicAlerts.aspx?AID=37,https://www.cityofchino.org/1740/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0613210,Chino,CA,96957,2025,incorporated-place,channels-found,530.37,alerts,https://www.cityofchino.org/CivicAlerts.aspx?AID=33,https://www.cityofchino.org/1740/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0613210,Chino,CA,96957,2025,incorporated-place,channels-found,530.37,alerts,https://www.cityofchino.org/CivicAlerts.aspx?AID=34,https://www.cityofchino.org/1740/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0613210,Chino,CA,96957,2025,incorporated-place,channels-found,530.37,alerts,https://www.cityofchino.org/CivicAlerts.aspx?CID=1%2C8,https://www.cityofchino.org/1740/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0613210,Chino,CA,96957,2025,incorporated-place,channels-found,530.37,x,https://x.com/chinopolicedept,https://www.cityofchino.org/1740/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0613210,Chino,CA,96957,2025,incorporated-place,channels-found,530.37,department-page,https://www.cityofchino.org/1759/Transparency,https://www.cityofchino.org/1740/Police,discovered-department-page; review-jurisdiction,public-html +162:0613210,Chino,CA,96957,2025,incorporated-place,channels-found,530.37,alerts,https://www.cityofchino.org/CivicAlerts.aspx?CID=1,https://www.cityofchino.org/1759/Transparency,linked-from-municipal-or-department-page; review-scope,not-tested +162:0613210,Chino,CA,96957,2025,incorporated-place,channels-found,530.37,department-page,https://www.cityofchino.org/276/Crime-Information,https://www.cityofchino.org/1740/Police,discovered-department-page; review-jurisdiction,public-html +162:0613210,Chino,CA,96957,2025,incorporated-place,channels-found,530.37,crime-map,https://www.crimemapping.com/,https://www.cityofchino.org/276/Crime-Information,linked-from-municipal-or-department-page; review-scope,not-tested +162:0613210,Chino,CA,96957,2025,incorporated-place,channels-found,530.37,department-page,https://www.cityofchino.org/618/Chino-Newsletters,https://www.cityofchino.org/1740/Police,discovered-department-page; review-jurisdiction,public-html +162:0613214,Chino Hills,CA,77519,2025,incorporated-place,channels-found,529.11,department-page,https://www.chinohills.org/Calendar.aspx?EID=8100,https://www.chinohills.org/,discovered-department-page; review-jurisdiction,public-html +162:0613214,Chino Hills,CA,77519,2025,incorporated-place,channels-found,529.11,feed-directory,https://www.chinohills.org/rss.aspx,https://www.chinohills.org/Calendar.aspx?EID=8100,linked-from-municipal-or-department-page; review-scope,not-tested +162:0613214,Chino Hills,CA,77519,2025,incorporated-place,channels-found,529.11,alerts,https://www.chinohills.org/1947/Notify-Me-Sign-Up,https://www.chinohills.org/Calendar.aspx?EID=8100,linked-from-municipal-or-department-page; review-scope,not-tested +162:0613214,Chino Hills,CA,77519,2025,incorporated-place,channels-found,529.11,department-page,https://www.chinohills.org/1702/Transparency,https://www.chinohills.org/Calendar.aspx?EID=8100,discovered-department-page; review-jurisdiction,public-html +162:0613214,Chino Hills,CA,77519,2025,incorporated-place,channels-found,529.11,newsroom,https://www.chinohills.org/Archive.aspx?AMID=48,https://www.chinohills.org/1702/Transparency,linked-from-municipal-or-department-page; review-scope,not-tested +162:0613214,Chino Hills,CA,77519,2025,incorporated-place,channels-found,529.11,newsroom,https://www.chinohills.org/Archive.asp?AMID=48,https://www.chinohills.org/rss.aspx,linked-from-municipal-or-department-page; review-scope,not-tested +162:0613214,Chino Hills,CA,77519,2025,incorporated-place,channels-found,529.11,nixle,https://local.nixle.com/sbsd---chino-hills-police-department/,https://local.nixle.com/city/ca/chino-hills/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0613392,Chula Vista,CA,275533,2025,incorporated-place,channels-found,681.82,newsroom,https://www.chulavistaca.gov/departments/police-department/about-us/transparency-and-accountability/press-log,https://www.chulavistaca.gov/departments/police-department/about-us/transparency-and-accountability/press-log,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0613392,Chula Vista,CA,275533,2025,incorporated-place,channels-found,681.82,department-page,https://www.chulavistaca.gov/departments/police-department,https://www.chulavistaca.gov/departments/police-department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0613392,Chula Vista,CA,275533,2025,incorporated-place,channels-found,681.82,department-page,https://www.chulavistaca.gov/departments/police-department/services,https://www.chulavistaca.gov/departments/police-department/services,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0613588,Citrus Heights,CA,86348,2025,incorporated-place,channels-found,171.28,department-page,https://www.citrusheights.net/245/Online-Reporting,https://www.citrusheights.net/,discovered-department-page; review-jurisdiction,public-html +162:0613588,Citrus Heights,CA,86348,2025,incorporated-place,channels-found,171.28,newsroom,https://www.citrusheights.net/1481/Media-Releases,https://www.citrusheights.net/245/Online-Reporting,linked-from-municipal-or-department-page; review-scope,not-tested +162:0613588,Citrus Heights,CA,86348,2025,incorporated-place,channels-found,171.28,facebook,https://www.facebook.com/CitrusHeightsPD/,https://www.citrusheights.net/245/Online-Reporting,linked-from-municipal-or-department-page; review-scope,not-tested +162:0613588,Citrus Heights,CA,86348,2025,incorporated-place,channels-found,171.28,x,https://x.com/citrusheightspd,https://www.citrusheights.net/245/Online-Reporting,linked-from-municipal-or-department-page; review-scope,not-tested +162:0613588,Citrus Heights,CA,86348,2025,incorporated-place,channels-found,171.28,nextdoor,https://nextdoor.com/agency-detail/ca/citrus-heights/citrus-heights-police-department/,https://www.citrusheights.net/245/Online-Reporting,linked-from-municipal-or-department-page; review-scope,not-tested +162:0613588,Citrus Heights,CA,86348,2025,incorporated-place,channels-found,171.28,department-page,https://www.citrusheights.net/347/Incident-Logs,https://www.citrusheights.net/245/Online-Reporting,discovered-department-page; review-jurisdiction,public-html +162:0613588,Citrus Heights,CA,86348,2025,incorporated-place,channels-found,171.28,department-page,https://www.citrusheights.net/272/Internet-Crime,https://www.citrusheights.net/245/Online-Reporting,discovered-department-page; review-jurisdiction,public-html +162:0613588,Citrus Heights,CA,86348,2025,incorporated-place,channels-found,171.28,incident-log,https://www.citrusheights.net/DocumentCenter/View/29802/07272026---CHPD-Announces-New-Online-Crime-Reporting-System,https://www.citrusheights.net/1481/Media-Releases,linked-from-municipal-or-department-page; review-scope,not-tested +162:0613588,Citrus Heights,CA,86348,2025,incorporated-place,channels-found,171.28,alerts,https://citrusheights.net/DocumentCenter/View/23691/09012024---Pedestrian-Safety-Starts-with-You---Stay-Alert-to-Protect-People-Walking-September-is-Pedestrian-Safety-Month-in-California,https://www.citrusheights.net/1481/Media-Releases,linked-from-municipal-or-department-page; review-scope,not-tested +162:0613588,Citrus Heights,CA,86348,2025,incorporated-place,channels-found,171.28,department-page,https://www.citrusheights.net/1254/Police-Department,https://www.citrusheights.net/,discovered-department-page; review-jurisdiction,public-html +162:0614218,Clovis,CA,129347,2025,incorporated-place,channels-found,205.92,nextdoor,https://nextdoor.com/agency-post/ca/clovis/clovis-police-department/june-2026-spotlight-497232963/,https://nextdoor.com/agency-post/ca/clovis/clovis-police-department/june-2026-spotlight-497232963/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0614218,Clovis,CA,129347,2025,incorporated-place,channels-found,205.92,nextdoor,https://nextdoor.com/agency-detail/ca/clovis/clovis-police-department/,https://nextdoor.com/agency-detail/ca/clovis/clovis-police-department/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0614218,Clovis,CA,129347,2025,incorporated-place,channels-found,205.92,x,https://x.com/clovispolice_ca,https://x.com/ClovisPolice_CA/with_replies,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0614890,Colton,CA,53383,2025,incorporated-place,channels-found,547.43,department-page,https://police.coltonca.gov/,https://police.coltonca.gov/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0614890,Colton,CA,53383,2025,incorporated-place,channels-found,547.43,newsroom,https://police.coltonca.gov/news-releases/,https://police.coltonca.gov/news-releases/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0614890,Colton,CA,53383,2025,incorporated-place,channels-found,547.43,department-page,https://police.coltonca.gov/records/,https://police.coltonca.gov/records/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0615044,Compton,CA,90500,2025,incorporated-place,channels-found,501.53,announcement,https://www.comptoncity.org/Home/Components/News/News/152/16,https://www.comptoncity.org/Home/Components/News/News/152/16,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0615044,Compton,CA,90500,2025,incorporated-place,channels-found,501.53,newsroom,https://www.longbeach.gov/police/press-releases/at-risk-missing-person---charles-garner-iii/,https://www.longbeach.gov/police/press-releases/at-risk-missing-person---charles-garner-iii/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0615044,Compton,CA,90500,2025,incorporated-place,channels-found,501.53,department-page,https://www.comptoncity.org/services/police-services,https://www.comptoncity.org/services/police-services,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0616000,Concord,CA,123261,2025,incorporated-place,department-found,81.19,department-page,https://www.cityofconcord.org/183/Police,https://www.cityofconcord.org/,discovered-department-page; review-jurisdiction,public-html +162:0616000,Concord,CA,123261,2025,incorporated-place,department-found,81.19,department-page,https://www.cityofconcord.org/1136/Crime-Map,https://www.cityofconcord.org/183/Police,discovered-department-page; review-jurisdiction,public-html +162:0616000,Concord,CA,123261,2025,incorporated-place,department-found,81.19,department-page,https://www.cityofconcord.org/830/Transparency-Portal,https://www.cityofconcord.org/183/Police,discovered-department-page; review-jurisdiction,public-html +162:0616000,Concord,CA,123261,2025,incorporated-place,department-found,81.19,department-page,https://www.cityofconcord.org/248/Major-Crimes-Unit-MCU,https://www.cityofconcord.org/183/Police,discovered-department-page; review-jurisdiction,public-html +162:0616000,Concord,CA,123261,2025,incorporated-place,department-found,81.19,department-page,https://www.cityofconcord.org/police,https://www.cityofconcord.org/police,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0616000,Concord,CA,123261,2025,incorporated-place,department-found,81.19,department-page,https://www.cityofconcord.org/1063/Crime-and-Incident-Data,https://www.cityofconcord.org/1063/Crime-and-Incident-Data,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0616350,Corona,CA,161734,2025,incorporated-place,channels-found,545.94,crime-map,https://www.crimemapping.com/map/ca/corona,https://www.coronaca.gov/,linked-from-official-page,not-tested +162:0616350,Corona,CA,161734,2025,incorporated-place,channels-found,545.94,department-page,https://www.coronaca.gov/departments/police,https://www.coronaca.gov/,official-domain-or-referral,public-html +162:0616350,Corona,CA,161734,2025,incorporated-place,channels-found,545.94,newsroom,https://www.coronaca.gov/news,https://www.coronaca.gov/departments/police,linked-from-official-page,not-tested +162:0616350,Corona,CA,161734,2025,incorporated-place,channels-found,545.94,instagram,https://www.instagram.com/coronapd/reels/,https://www.coronaca.gov/departments/police,linked-from-official-page,not-tested +162:0616350,Corona,CA,161734,2025,incorporated-place,channels-found,545.94,alerts,https://www.coronaca.gov/i-want-to/enotifications,https://www.coronaca.gov/departments/police,linked-from-official-page,not-tested +162:0616350,Corona,CA,161734,2025,incorporated-place,channels-found,545.94,newsroom,https://www.coronaca.gov/news/fatal-traffic-collision-7,https://www.coronaca.gov/news,linked-from-official-page,not-tested +162:0616350,Corona,CA,161734,2025,incorporated-place,channels-found,545.94,newsroom,https://www.coronaca.gov/news/assault-with-a-deadly-weapon-suspect-shot-by-police-2,https://www.coronaca.gov/news,linked-from-official-page,not-tested +162:0616350,Corona,CA,161734,2025,incorporated-place,channels-found,545.94,department-page,https://www.coronaca.gov/departments/police/permits,https://www.coronaca.gov/,official-domain-or-referral,public-html +162:0616350,Corona,CA,161734,2025,incorporated-place,channels-found,545.94,newsroom,https://www.coronaca.gov/news?category=Press+Releases,https://www.coronaca.gov/departments/police/permits,linked-from-official-page,not-tested +162:0616350,Corona,CA,161734,2025,incorporated-place,channels-found,545.94,department-page,https://www.coronaca.gov/departments/police/community-engagement/explorers,https://www.coronaca.gov/,official-domain-or-referral,public-html +162:0616532,Costa Mesa,CA,108881,2025,incorporated-place,channels-found,539.81,department-page,https://www.costamesaca.gov/government/departments-and-divisions/police/department-divisions/administration/media-public-affairs,https://www.costamesaca.gov/government/departments-and-divisions/police/department-divisions/administration/media-public-affairs,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0616532,Costa Mesa,CA,108881,2025,incorporated-place,channels-found,539.81,department-page,https://www.costamesaca.gov/government/departments-and-divisions/police/police-information,https://www.costamesaca.gov/government/departments-and-divisions/police/police-information,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0616532,Costa Mesa,CA,108881,2025,incorporated-place,channels-found,539.81,department-page,https://www.costamesaca.gov/government/departments-and-divisions/police/police-information/crime-statistics,https://www.costamesaca.gov/government/departments-and-divisions/police/police-information/crime-statistics,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0616532,Costa Mesa,CA,108881,2025,incorporated-place,channels-found,539.81,nixle,https://local.nixle.com/costa-mesa-police-department/,https://local.nixle.com/city/ca/costa-mesa/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0617610,Cupertino,CA,58333,2025,incorporated-place,channels-found,12.38,newsroom,https://sheriff.santaclaracounty.gov/about-us/newsroom-press-releases,https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff,reviewed-contract-agency,public-html +162:0617610,Cupertino,CA,58333,2025,incorporated-place,channels-found,12.38,department-page,https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff,curated department URL,official-domain-or-referral,public-html +162:0617610,Cupertino,CA,58333,2025,incorporated-place,channels-found,12.38,alerts,https://www.cupertino.gov/Residents/Emergency-Management/Alert-SCC,https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff,linked-from-official-page,not-tested +162:0617610,Cupertino,CA,58333,2025,incorporated-place,channels-found,12.38,alerts,https://www.cupertino.gov/Residents/Utilities/Street-Sweeping-Notifications,https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff,linked-from-official-page,not-tested +162:0617610,Cupertino,CA,58333,2025,incorporated-place,channels-found,12.38,alerts,https://www.cupertino.gov/Our-Community/Online-Services/Notifications-News-Social-Media,https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff,linked-from-official-page,not-tested +162:0617610,Cupertino,CA,58333,2025,incorporated-place,channels-found,12.38,newsroom,https://www.cupertino.gov/Your-City/News-and-Updates/Press-Release,https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff,linked-from-official-page,not-tested +162:0617610,Cupertino,CA,58333,2025,incorporated-place,channels-found,12.38,alerts,https://www.cupertino.gov/I-Want-To/Sign-Up-For,https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff,linked-from-official-page,not-tested +162:0617610,Cupertino,CA,58333,2025,incorporated-place,channels-found,12.38,alerts,https://www.cupertino.gov/I-Want-To/Sign-Up-For/Email-Notification,https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff,linked-from-official-page,not-tested +162:0617610,Cupertino,CA,58333,2025,incorporated-place,channels-found,12.38,alerts,https://www.cupertino.gov/I-Want-To/Sign-Up-For/Street-Sweeping-Notification,https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff,linked-from-official-page,not-tested +162:0617610,Cupertino,CA,58333,2025,incorporated-place,channels-found,12.38,newsroom,https://www.cupertino.gov/I-Want-To/View-City-Data/Citys-Press-Releases,https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff,linked-from-official-page,not-tested +162:0617610,Cupertino,CA,58333,2025,incorporated-place,channels-found,12.38,incident-log,https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff/Crime-Reports,https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff,linked-from-official-page,not-tested +162:0617610,Cupertino,CA,58333,2025,incorporated-place,channels-found,12.38,alerts,https://www.cupertino.gov/Your-City/Divisions/Communications/eNotification-Sign-Up,https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff,linked-from-official-page,not-tested +162:0617610,Cupertino,CA,58333,2025,incorporated-place,channels-found,12.38,department-page,https://www.cupertino.gov/News-articles,https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff,official-domain-or-referral,public-html +162:0617610,Cupertino,CA,58333,2025,incorporated-place,channels-found,12.38,announcement,https://www.cupertino.gov/News-articles/Independent-Audit-Identifies-10.7-Million-Non-Allocable-Unjustified-Costs-in-County-Sheriff-Proposal,https://www.cupertino.gov/News-articles,linked-from-official-page,not-tested +162:0617610,Cupertino,CA,58333,2025,incorporated-place,channels-found,12.38,department-page,https://www.cupertino.gov/Your-City/Divisions/Communications/Cupertino-SCENE-Newsletter,https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff,official-domain-or-referral,public-html +162:0617610,Cupertino,CA,58333,2025,incorporated-place,channels-found,12.38,newsroom,https://www.cupertino.gov/Your-City/Divisions/Communications/Press-Releases,https://www.cupertino.gov/Your-City/Divisions/Communications/Cupertino-SCENE-Newsletter,linked-from-official-page,not-tested +162:0617610,Cupertino,CA,58333,2025,incorporated-place,channels-found,12.38,department-page,https://www.cupertino.gov/Parks-Recreation/Senior-Center/Socials,https://www.cupertino.gov/Your-City/Divisions/Communications/Cupertino-SCENE-Newsletter,official-domain-or-referral,public-html +162:0617610,Cupertino,CA,58333,2025,incorporated-place,channels-found,12.38,department-page,https://www.cupertino.gov/Your-City/Divisions/Public-Safety,https://www.cupertino.gov/Home,official-domain-or-referral,public-html +162:0617610,Cupertino,CA,58333,2025,incorporated-place,channels-found,12.38,alerts,https://www.cupertino.gov/Your-City/Divisions/Public-Safety/Emergency-Management/Emergency-Alerts-Warnings-and-Notifications,https://www.cupertino.gov/Your-City/Divisions/Public-Safety,linked-from-official-page,not-tested +162:0617918,Daly City,CA,101261,2025,incorporated-place,channels-found,68.7,department-page,https://www.dalycity.org/1231/Police,https://www.dalycity.org/,discovered-department-page; review-jurisdiction,public-html +162:0617918,Daly City,CA,101261,2025,incorporated-place,channels-found,68.7,facebook,https://www.facebook.com/dalycitypolice/,https://www.dalycity.org/1231/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0617918,Daly City,CA,101261,2025,incorporated-place,channels-found,68.7,x,https://x.com/dalycitypd,https://www.dalycity.org/1231/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0617918,Daly City,CA,101261,2025,incorporated-place,channels-found,68.7,instagram,https://www.instagram.com/explore/locations/5264698/daly-city-police-department/,https://www.dalycity.org/1231/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0617918,Daly City,CA,101261,2025,incorporated-place,channels-found,68.7,youtube,https://www.youtube.com/user/DalyCityPolice,https://www.dalycity.org/1231/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0617918,Daly City,CA,101261,2025,incorporated-place,channels-found,68.7,nextdoor,https://nextdoor.com/agency-detail/ca/daly-city/daly-city-police-department/,https://www.dalycity.org/1231/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0617918,Daly City,CA,101261,2025,incorporated-place,channels-found,68.7,incident-log,https://www.dalycity.org/906/Crime-Alert-Bulletins,https://www.dalycity.org/1231/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0617918,Daly City,CA,101261,2025,incorporated-place,channels-found,68.7,department-page,https://www.dalycity.org/905/DCPD-Social-Media,https://www.dalycity.org/1231/Police,discovered-department-page; review-jurisdiction,public-html +162:0617918,Daly City,CA,101261,2025,incorporated-place,channels-found,68.7,department-page,https://www.dalycity.org/514/Safety-Prevention,https://www.dalycity.org/1231/Police,discovered-department-page; review-jurisdiction,public-html +162:0617918,Daly City,CA,101261,2025,incorporated-place,channels-found,68.7,alerts,https://www.dalycity.org/528/GPS-Wanted-Alert,https://www.dalycity.org/514/Safety-Prevention,linked-from-municipal-or-department-page; review-scope,not-tested +162:0617918,Daly City,CA,101261,2025,incorporated-place,channels-found,68.7,department-page,https://www.dalycity.org/m/newsflash/home/detail/1014,https://www.dalycity.org/,discovered-department-page; review-jurisdiction,public-html +162:0617918,Daly City,CA,101261,2025,incorporated-place,channels-found,68.7,department-page,https://www.dalycity.org/m/newsflash,https://www.dalycity.org/m/newsflash/home/detail/1014,discovered-department-page; review-jurisdiction,public-html +162:0617918,Daly City,CA,101261,2025,incorporated-place,channels-found,68.7,feed-directory,https://www.dalycity.org/rss.aspx,https://www.dalycity.org/m/newsflash,linked-from-municipal-or-department-page; review-scope,not-tested +162:0617918,Daly City,CA,101261,2025,incorporated-place,channels-found,68.7,alerts,https://www.dalycity.org/list.aspx?Mode=Subscribe,https://www.dalycity.org/m/newsflash,linked-from-municipal-or-department-page; review-scope,not-tested +162:0617918,Daly City,CA,101261,2025,incorporated-place,channels-found,68.7,nixle,https://local.nixle.com/daly-city-police-department/,https://local.nixle.com/city/ca/daly-city/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0618100,Davis,CA,66110,2025,incorporated-place,channels-found,147.06,department-page,https://www.cityofdavis.org/city-hall/police-department/online-crime-reporting,https://www.cityofdavis.org/city-hall/police-department/online-crime-reporting,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0618100,Davis,CA,66110,2025,incorporated-place,channels-found,147.06,department-page,https://www.cityofdavis.org/city-hall/police-department/contact-us-6030,https://www.cityofdavis.org/city-hall/police-department/contact-us-6030,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0618100,Davis,CA,66110,2025,incorporated-place,channels-found,147.06,department-page,https://www.cityofdavis.org/city-hall/police-department/,https://www.cityofdavis.org/city-hall/police-department/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0618100,Davis,CA,66110,2025,incorporated-place,channels-found,147.06,nixle,https://local.nixle.com/city-of-davis-police/,https://local.nixle.com/city/ca/davis/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0618394,Delano,CA,52334,2025,incorporated-place,department-found,290.3,department-page,https://www.cityofdelano.org/105/Police-Department,https://www.cityofdelano.org/105/Police-Department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0618394,Delano,CA,52334,2025,incorporated-place,department-found,290.3,department-page,https://www.cityofdelano.org/708/Office-of-the-Chief-of-Police,https://www.cityofdelano.org/708/Office-of-the-Chief-of-Police,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0619192,Diamond Bar,CA,51884,2025,incorporated-place,department-found,518.51,department-page,https://www.diamondbarca.gov/189/Public-Safety,https://www.diamondbarca.gov/189/Public-Safety,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0619192,Diamond Bar,CA,51884,2025,incorporated-place,department-found,518.51,announcement,https://oag.ca.gov/system/files/attachments/press-docs/AB%201191%20Crime%20Gun%20Report.pdf,https://oag.ca.gov/system/files/attachments/press-docs/AB%201191%20Crime%20Gun%20Report.pdf,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0619766,Downey,CA,108468,2025,incorporated-place,channels-found,503.77,newsroom,https://www.downeyca.org/our-city/departments/police/department-news,https://www.downeyca.org/our-city/departments/police/department-news,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0619766,Downey,CA,108468,2025,incorporated-place,channels-found,503.77,department-page,https://www.downeyca.org/our-city/departments/police/file-online-report,https://www.downeyca.org/our-city/departments/police/file-online-report,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0619766,Downey,CA,108468,2025,incorporated-place,channels-found,503.77,department-page,https://www.downeyca.org/our-city/departments/police/crime-prevention-and-safety,https://www.downeyca.org/our-city/departments/police/crime-prevention-and-safety,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0620018,Dublin,CA,71602,2025,incorporated-place,channels-found,52.71,alerts,https://dublin.ca.gov/alertcenter.aspx?CID=1,https://dublin.ca.gov/alertcenter.aspx?CID=1,reviewed-primary-web-source,search-readable; automation-unverified +162:0620018,Dublin,CA,71602,2025,incorporated-place,channels-found,52.71,department-page,https://www.dublin.ca.gov/2294/Police-Services,https://www.dublin.ca.gov/2294/Police-Services,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0620018,Dublin,CA,71602,2025,incorporated-place,channels-found,52.71,department-page,https://dublin.ca.gov/130/Police-Events,https://dublin.ca.gov/130/Police-Events,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0621230,Eastvale,CA,70594,2025,incorporated-place,department-found,536.94,department-page,https://www.eastvaleca.gov/services/law-enforcement-services/crime-statistics,https://www.eastvaleca.gov/services/law-enforcement-services/crime-statistics,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0621230,Eastvale,CA,70594,2025,incorporated-place,department-found,536.94,department-page,https://www.eastvaleca.gov/government/police-services,https://www.eastvaleca.gov/government/police-services,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0621712,El Cajon,CA,101755,2025,incorporated-place,channels-found,670.43,newsroom,https://www.elcajon.gov/your-government/departments/police-department/information-you-may-need/police-department-news/happening-now,https://www.elcajon.gov/your-government/departments/police-department/information-you-may-need/police-department-news/happening-now,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0621712,El Cajon,CA,101755,2025,incorporated-place,channels-found,670.43,newsroom,https://www.elcajon.gov/your-government/departments/police-department/information-you-may-need/police-department-news/happening-now/-arch-1,https://www.elcajon.gov/your-government/departments/police-department/information-you-may-need/police-department-news/happening-now/-arch-1,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0621712,El Cajon,CA,101755,2025,incorporated-place,channels-found,670.43,department-page,https://www.elcajon.gov/your-government/departments/police,https://www.elcajon.gov/your-government/departments/police,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0622230,El Monte,CA,105075,2025,incorporated-place,department-found,499.07,department-page,https://www.elmonteca.gov/209/Police,https://www.elmonteca.gov/209/Police,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0622230,El Monte,CA,105075,2025,incorporated-place,department-found,499.07,department-page,https://www.elmonteca.gov/m/directory/department?did=13,https://www.elmonteca.gov/m/directory/department?did=13,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0622230,El Monte,CA,105075,2025,incorporated-place,department-found,499.07,department-page,https://www.ci.el-monte.ca.us/m/directory/department?did=13,https://www.ci.el-monte.ca.us/m/directory/department?did=13,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0622020,Elk Grove,CA,185007,2025,incorporated-place,department-found,139.13,department-page,https://elkgrove.gov/departments-and-divisions/police-department,https://elkgrove.gov/departments-and-divisions/police-department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0622020,Elk Grove,CA,185007,2025,incorporated-place,department-found,139.13,department-page,https://elkgrove.gov/police/safety-dashboard,https://elkgrove.gov/police/safety-dashboard,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0622020,Elk Grove,CA,185007,2025,incorporated-place,department-found,139.13,department-page,https://elkgrove.gov/police/emergencies-and-non-emergencies,https://elkgrove.gov/police/emergencies-and-non-emergencies,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0622678,Encinitas,CA,60736,2025,incorporated-place,channels-found,630.97,department-page,https://www.encinitasca.gov/government/departments/public-safety/sheriff-quarterly-presentation,https://www.encinitasca.gov/government/departments/public-safety/sheriff-quarterly-presentation,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0622678,Encinitas,CA,60736,2025,incorporated-place,channels-found,630.97,newsroom,https://www.sdsheriff.gov/bureaus/media-relations/news-list/-npage-4,https://www.sdsheriff.gov/bureaus/media-relations/news-list/-npage-4,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0622678,Encinitas,CA,60736,2025,incorporated-place,channels-found,630.97,newsroom,https://www.sdsheriff.gov/bureaus/media-relations/news-list/-npage-3/-arch-1,https://www.sdsheriff.gov/bureaus/media-relations/news-list/-npage-3/-arch-1,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0622804,Escondido,CA,146030,2025,incorporated-place,channels-found,635.93,department-page,https://escondido.gov/m/newsflash/home/detail/218,https://escondido.gov/,official-domain-or-referral,public-html +162:0622804,Escondido,CA,146030,2025,incorporated-place,channels-found,635.93,newsroom,https://escondido.gov/m/newsflash/Home/Detail/301,https://escondido.gov/m/newsflash/home/detail/218,linked-from-official-page,not-tested +162:0622804,Escondido,CA,146030,2025,incorporated-place,channels-found,635.93,newsroom,https://escondido.gov/m/newsflash/Home/Detail/299,https://escondido.gov/m/newsflash/home/detail/218,linked-from-official-page,not-tested +162:0622804,Escondido,CA,146030,2025,incorporated-place,channels-found,635.93,newsroom,https://escondido.gov/m/newsflash/Home/Detail/298,https://escondido.gov/m/newsflash/home/detail/218,linked-from-official-page,not-tested +162:0622804,Escondido,CA,146030,2025,incorporated-place,channels-found,635.93,department-page,https://escondido.gov/m/newsflash,https://escondido.gov/m/newsflash/home/detail/218,official-domain-or-referral,public-html +162:0622804,Escondido,CA,146030,2025,incorporated-place,channels-found,635.93,alerts,https://escondido.gov/list.aspx?Mode=Subscribe,https://escondido.gov/m/newsflash,linked-from-official-page,not-tested +162:0622804,Escondido,CA,146030,2025,incorporated-place,channels-found,635.93,alerts,https://escondido.gov/m/newsflash/Home/Detail/172,https://escondido.gov/m/newsflash,linked-from-official-page,not-tested +162:0622804,Escondido,CA,146030,2025,incorporated-place,channels-found,635.93,nixle,https://local.nixle.com/escondido-police-department/,https://local.nixle.com/city/ca/escondido/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0623182,Fairfield,CA,122489,2025,incorporated-place,channels-found,113.52,department-page,https://www.fairfield.ca.gov/government/city-departments/police,https://www.fairfield.ca.gov/government/city-departments/police,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0623182,Fairfield,CA,122489,2025,incorporated-place,channels-found,113.52,department-page,https://www.fairfield.ca.gov/government/city-departments/police/operations-bureau/daily-activity-logs,https://www.fairfield.ca.gov/government/city-departments/police/operations-bureau/daily-activity-logs,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0623182,Fairfield,CA,122489,2025,incorporated-place,channels-found,113.52,department-page,https://www.fairfield.ca.gov/government/city-departments/police/support-services-bureau/police-records-reports,https://www.fairfield.ca.gov/government/city-departments/police/support-services-bureau/police-records-reports,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0623182,Fairfield,CA,122489,2025,incorporated-place,channels-found,113.52,nixle,https://local.nixle.com/fairfield-ca-police-department/,https://local.nixle.com/city/ca/fairfield/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0624638,Folsom,CA,91983,2025,incorporated-place,channels-found,173.12,department-page,https://www.folsom.ca.us/government/police,https://www.folsom.ca.us/government/police,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0624638,Folsom,CA,91983,2025,incorporated-place,channels-found,173.12,incident-log,https://www.folsom.ca.us/government/police/crime-information/police-log,https://www.folsom.ca.us/government/police/crime-information/police-log,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0624638,Folsom,CA,91983,2025,incorporated-place,channels-found,173.12,department-page,https://www.folsom.ca.us/government/police/connect-with-us,https://www.folsom.ca.us/government/police/connect-with-us,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0624638,Folsom,CA,91983,2025,incorporated-place,channels-found,173.12,nixle,https://local.nixle.com/folsom-police-department/,https://local.nixle.com/city/ca/folsom/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0624680,Fontana,CA,221223,2025,incorporated-place,channels-found,533.88,department-page,https://fontanaca.gov/3577/Police-Department,https://fontanaca.gov/,official-domain-or-referral,public-html +162:0624680,Fontana,CA,221223,2025,incorporated-place,channels-found,533.88,alerts,https://fontanaca.gov/AlertCenter.aspx,https://fontanaca.gov/3577/Police-Department,linked-from-official-page,not-tested +162:0624680,Fontana,CA,221223,2025,incorporated-place,channels-found,533.88,alerts,https://fontanaca.gov/AlertCenter.aspx?AID=The-City-has-been-made-aware-of-fraudule-26,https://fontanaca.gov/3577/Police-Department,linked-from-official-page,not-tested +162:0624680,Fontana,CA,221223,2025,incorporated-place,channels-found,533.88,x,https://x.com/fontanapd,https://fontanaca.gov/3577/Police-Department,linked-from-official-page,not-tested +162:0624680,Fontana,CA,221223,2025,incorporated-place,channels-found,533.88,crime-map,http://www.crimemapping.com/,https://fontanaca.gov/3577/Police-Department,linked-from-official-page,not-tested +162:0624680,Fontana,CA,221223,2025,incorporated-place,channels-found,533.88,alerts,https://fontanaca.gov/CivicAlerts.aspx?CID=32,https://fontanaca.gov/3577/Police-Department,linked-from-official-page,not-tested +162:0624680,Fontana,CA,221223,2025,incorporated-place,channels-found,533.88,alerts,https://fontanaca.gov/List.aspx,https://fontanaca.gov/AlertCenter.aspx,linked-from-official-page,not-tested +162:0624680,Fontana,CA,221223,2025,incorporated-place,channels-found,533.88,alerts,https://fontanaca.gov/list.aspx?Mode=Subscribe,https://fontanaca.gov/AlertCenter.aspx,linked-from-official-page,not-tested +162:0624680,Fontana,CA,221223,2025,incorporated-place,channels-found,533.88,alerts,https://fontanaca.gov/AlertCenter.aspx?CID=Emergency-Alert-1,https://fontanaca.gov/AlertCenter.aspx,linked-from-official-page,not-tested +162:0624680,Fontana,CA,221223,2025,incorporated-place,channels-found,533.88,department-page,https://fontanaca.gov/m/newsflash?cat=32,https://fontanaca.gov/3577/Police-Department,official-domain-or-referral,public-html +162:0624680,Fontana,CA,221223,2025,incorporated-place,channels-found,533.88,department-page,https://fontanaca.gov/DocumentCenter/View/49386/March-2026-Crime-Stats-PDF?bidId=,https://fontanaca.gov/3577/Police-Department,official-domain-or-referral,public-html +162:0624680,Fontana,CA,221223,2025,incorporated-place,channels-found,533.88,nixle,https://local.nixle.com/sbsd---fontana-sheriffs-department/,https://local.nixle.com/city/ca/fontana/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0625380,Fountain Valley,CA,55508,2025,incorporated-place,department-found,533.71,department-page,https://www.fountainvalley.gov/1471/Police-Department,https://www.fountainvalley.gov/1471/Police-Department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0625380,Fountain Valley,CA,55508,2025,incorporated-place,department-found,533.71,department-page,https://www.fountainvalley.gov/430/My-Police-Department,https://www.fountainvalley.gov/430/My-Police-Department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0625380,Fountain Valley,CA,55508,2025,incorporated-place,department-found,533.71,department-page,https://fountainvalley.gov/709/Crime-Prevention,https://fountainvalley.gov/709/Crime-Prevention,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0626000,Fremont,CA,226442,2025,incorporated-place,channels-found,27.91,department-page,https://www.fremontpolice.gov/,https://www.fremontpolice.gov/,reviewed-primary-web-source,search-readable; automation-unverified +162:0626000,Fremont,CA,226442,2025,incorporated-place,channels-found,27.91,x,https://x.com/fremontpd,https://www.fremont.gov/about/news-media/social-media-center,official-department-reference,not-tested +162:0626000,Fremont,CA,226442,2025,incorporated-place,channels-found,27.91,newsroom,https://www.fremontpolice.gov/about-us/about-fremont-police/spotlight-and-news/news-list,https://www.fremontpolice.gov/about-us/about-fremont-police/spotlight-and-news/news-list,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0626000,Fremont,CA,226442,2025,incorporated-place,channels-found,27.91,newsroom,https://www.fremontpolice.gov/about-us/about-fremont-police/spotlight-and-news,https://www.fremontpolice.gov/about-us/about-fremont-police/spotlight-and-news,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0626000,Fremont,CA,226442,2025,incorporated-place,channels-found,27.91,nixle,https://local.nixle.com/fremont-police-department-ca/,https://local.nixle.com/city/ca/fremont/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0627000,Fresno,CA,555549,2025,incorporated-place,department-found,197.59,department-page,https://www.fresno.gov/police/,https://www.fresno.gov/police/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0627000,Fresno,CA,555549,2025,incorporated-place,department-found,197.59,department-page,https://www.fresno.gov/police/records-and-reports/,https://www.fresno.gov/police/records-and-reports/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0627000,Fresno,CA,555549,2025,incorporated-place,department-found,197.59,department-page,https://www.fresno.gov/police/police-contacts/,https://www.fresno.gov/police/police-contacts/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0628000,Fullerton,CA,138675,2025,incorporated-place,channels-found,520.73,social-directory,https://linktr.ee/fullertonpd,https://linktr.ee/fullertonpd,reviewed-primary-web-source,search-readable; automation-unverified +162:0628000,Fullerton,CA,138675,2025,incorporated-place,channels-found,520.73,department-page,https://www.cityoffullerton.com/government/departments/police,https://www.cityoffullerton.com/government/departments/police,reviewed-primary-web-source,search-readable; automation-unverified +162:0628000,Fullerton,CA,138675,2025,incorporated-place,channels-found,520.73,newsroom,https://www.cityoffullerton.com/government/departments/police/crime-trends/latest-news,https://linktr.ee/fullertonpd,reviewed-primary-web-source,HTTP-403; reference-only +162:0629000,Garden Grove,CA,170455,2025,incorporated-place,channels-found,527.47,department-page,https://ggcity.org/public-safety,https://ggcity.org,discovered-department-page; review-jurisdiction,public-html +162:0629000,Garden Grove,CA,170455,2025,incorporated-place,channels-found,527.47,alerts,https://ggcity.org/docs/police-press-release/amber-alert-kidnapping-victim-suspect-located,https://ggcity.org/public-safety,linked-from-municipal-or-department-page; review-scope,not-tested +162:0629000,Garden Grove,CA,170455,2025,incorporated-place,channels-found,527.47,newsroom,https://ggcity.org/docs/police-press-release/archive,https://ggcity.org/public-safety,linked-from-municipal-or-department-page; review-scope,not-tested +162:0629000,Garden Grove,CA,170455,2025,incorporated-place,channels-found,527.47,facebook,http://facebook.com/GardenGrovePD,https://ggcity.org/public-safety,linked-from-municipal-or-department-page; review-scope,not-tested +162:0629000,Garden Grove,CA,170455,2025,incorporated-place,channels-found,527.47,x,https://x.com/gardengrovepd,https://ggcity.org/public-safety,linked-from-municipal-or-department-page; review-scope,not-tested +162:0629000,Garden Grove,CA,170455,2025,incorporated-place,channels-found,527.47,instagram,http://instagram.com/gardengrovepd,https://ggcity.org/public-safety,linked-from-municipal-or-department-page; review-scope,not-tested +162:0629000,Garden Grove,CA,170455,2025,incorporated-place,channels-found,527.47,nextdoor,https://nextdoor.com/agency-detail/ca/garden-grove/garden-grove-police-department/,https://ggcity.org/public-safety,linked-from-municipal-or-department-page; review-scope,not-tested +162:0629000,Garden Grove,CA,170455,2025,incorporated-place,channels-found,527.47,department-page,https://ggcity.org/news,https://ggcity.org/public-safety,discovered-department-page; review-jurisdiction,public-html +162:0629000,Garden Grove,CA,170455,2025,incorporated-place,channels-found,527.47,department-page,https://ggcity.org/connect,https://ggcity.org/public-safety,discovered-department-page; review-jurisdiction,public-html +162:0629000,Garden Grove,CA,170455,2025,incorporated-place,channels-found,527.47,department-page,https://ggcity.org/media-kit,https://ggcity.org/public-safety,discovered-department-page; review-jurisdiction,public-html +162:0628168,Gardena,CA,58460,2025,incorporated-place,channels-found,496.68,department-page,https://cityofgardena.org/,https://cityofgardena.org/,official-domain-or-referral,public-html +162:0628168,Gardena,CA,58460,2025,incorporated-place,channels-found,496.68,department-page,https://cityofgardena.org/local-news/,https://cityofgardena.org/,official-domain-or-referral,public-html +162:0628168,Gardena,CA,58460,2025,incorporated-place,channels-found,496.68,department-page,https://cityofgardena.org/social-media/,https://cityofgardena.org/,official-domain-or-referral,public-html +162:0628168,Gardena,CA,58460,2025,incorporated-place,channels-found,496.68,instagram,https://www.instagram.com/gardena_police/,https://cityofgardena.org/social-media/,linked-from-official-page,not-tested +162:0628168,Gardena,CA,58460,2025,incorporated-place,channels-found,496.68,x,https://x.com/gpdchief,https://cityofgardena.org/social-media/,linked-from-official-page,not-tested +162:0629504,Gilroy,CA,60764,2025,incorporated-place,channels-found,41.22,department-page,https://www.cityofgilroy.org/151/Police-Department,https://www.cityofgilroy.org/,discovered-department-page; review-jurisdiction,public-html +162:0629504,Gilroy,CA,60764,2025,incorporated-place,channels-found,41.22,department-page,https://www.cityofgilroy.org/197/Transparency,https://www.cityofgilroy.org/151/Police-Department,discovered-department-page; review-jurisdiction,public-html +162:0629504,Gilroy,CA,60764,2025,incorporated-place,channels-found,41.22,incident-log,http://gilroy.citizenrims.com/,https://www.cityofgilroy.org/197/Transparency,linked-from-municipal-or-department-page; review-scope,not-tested +162:0629504,Gilroy,CA,60764,2025,incorporated-place,channels-found,41.22,department-page,https://www.cityofgilroy.org/298/Development-Activity-Projects,https://www.cityofgilroy.org/151/Police-Department,discovered-department-page; review-jurisdiction,public-html +162:0629504,Gilroy,CA,60764,2025,incorporated-place,channels-found,41.22,department-page,https://www.cityofgilroy.org/653/Police-Forms,https://www.cityofgilroy.org/151/Police-Department,discovered-department-page; review-jurisdiction,public-html +162:0629504,Gilroy,CA,60764,2025,incorporated-place,channels-found,41.22,incident-log,https://gilroy.citizenrims.com/form?formId=35,https://www.cityofgilroy.org/653/Police-Forms,linked-from-municipal-or-department-page; review-scope,not-tested +162:0629504,Gilroy,CA,60764,2025,incorporated-place,channels-found,41.22,alerts,https://www.cityofgilroy.org/DocumentCenter/View/20609,https://www.cityofgilroy.org/653/Police-Forms,linked-from-municipal-or-department-page; review-scope,not-tested +162:0629504,Gilroy,CA,60764,2025,incorporated-place,channels-found,41.22,department-page,https://www.cityofgilroy.org/DocumentCenter/View/5498/Police-Records---Application-for-Release-of-Information-Police-Report-Request?bidId=,https://www.cityofgilroy.org/,discovered-department-page; review-jurisdiction,public-html +162:0629504,Gilroy,CA,60764,2025,incorporated-place,channels-found,41.22,nixle,https://local.nixle.com/gilroy-police-department/,https://local.nixle.com/city/ca/gilroy/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0630000,Glendale,CA,187160,2025,incorporated-place,channels-found,476.71,newsroom,https://www.glendaleca.gov/government/departments/police-department/news-media-relations,https://www.glendaleca.gov/government/departments/police-department/news-media-relations,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0630000,Glendale,CA,187160,2025,incorporated-place,channels-found,476.71,department-page,https://www.glendaleca.gov/government/departments/police-department,https://www.glendaleca.gov/government/departments/police-department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0630000,Glendale,CA,187160,2025,incorporated-place,channels-found,476.71,department-page,https://www.glendaleca.gov/government/departments/police-department/transparency,https://www.glendaleca.gov/government/departments/police-department/transparency,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0631960,Hanford,CA,62229,2025,incorporated-place,department-found,227.74,department-page,https://www.ci.hanford.ca.us/1198/Police,https://www.ci.hanford.ca.us/1198/Police,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0631960,Hanford,CA,62229,2025,incorporated-place,department-found,227.74,department-page,https://www.ci.hanford.ca.us/m/directory/department?did=51,https://www.ci.hanford.ca.us/m/directory/department?did=51,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0632548,Hawthorne,CA,82741,2025,incorporated-place,channels-found,492.54,department-page,https://www.cityofhawthorne.org/departments/police-department,https://www.cityofhawthorne.org/departments/police-department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0632548,Hawthorne,CA,82741,2025,incorporated-place,channels-found,492.54,department-page,https://locator.lacounty.gov/lac/Location/3068923/city-of-hawthorne-police-department,https://locator.lacounty.gov/lac/Location/3068923/city-of-hawthorne-police-department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0632548,Hawthorne,CA,82741,2025,incorporated-place,channels-found,492.54,nextdoor,https://nextdoor.com/agency-detail/ca/hawthorne/hawthorne-police/,https://nextdoor.com/agency-detail/ca/hawthorne/hawthorne-police/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0633000,Hayward,CA,157113,2025,incorporated-place,channels-found,44.94,department-page,https://hayward-ca.gov/police-department,https://hayward-ca.gov/,official-domain-or-referral,public-html +162:0633000,Hayward,CA,157113,2025,incorporated-place,channels-found,44.94,newsroom,https://hayward-ca.gov/discover/news/sep26/press-release-safe-drives-save-lives,https://hayward-ca.gov/police-department,linked-from-official-page,not-tested +162:0633000,Hayward,CA,157113,2025,incorporated-place,channels-found,44.94,facebook,https://www.facebook.com/HaywardPoliceDept,https://hayward-ca.gov/police-department,linked-from-official-page,not-tested +162:0633000,Hayward,CA,157113,2025,incorporated-place,channels-found,44.94,x,https://x.com/haywardpd,https://hayward-ca.gov/police-department,linked-from-official-page,not-tested +162:0633000,Hayward,CA,157113,2025,incorporated-place,channels-found,44.94,youtube,https://www.youtube.com/user/HaywardPoliceDept,https://hayward-ca.gov/police-department,linked-from-official-page,not-tested +162:0633000,Hayward,CA,157113,2025,incorporated-place,channels-found,44.94,nextdoor,https://nextdoor.com/agency/ca/hayward/hayward-police-department,https://hayward-ca.gov/police-department,linked-from-official-page,not-tested +162:0633000,Hayward,CA,157113,2025,incorporated-place,channels-found,44.94,department-page,https://hayward-ca.gov/discover/news/1,https://hayward-ca.gov/police-department,official-domain-or-referral,public-html +162:0633000,Hayward,CA,157113,2025,incorporated-place,channels-found,44.94,department-page,https://hayward-ca.gov/discover/news/2,https://hayward-ca.gov/police-department,official-domain-or-referral,public-html +162:0633000,Hayward,CA,157113,2025,incorporated-place,channels-found,44.94,newsroom,https://hayward-ca.gov/discover/news/aug26/press-release-fatal-collision-harder-rd-and-soto-rd,https://hayward-ca.gov/discover/news/2,linked-from-official-page,not-tested +162:0633000,Hayward,CA,157113,2025,incorporated-place,channels-found,44.94,newsroom,https://hayward-ca.gov/discover/news/aug26/press-release-homicide-investigation-300-block-winton-ave,https://hayward-ca.gov/discover/news/2,linked-from-official-page,not-tested +162:0633000,Hayward,CA,157113,2025,incorporated-place,channels-found,44.94,alerts,https://hayward-ca.gov/discover/news/jul26/update-amber-alert-issued-3-month-old-maxence-sirois,https://hayward-ca.gov/discover/news/2,linked-from-official-page,not-tested +162:0633000,Hayward,CA,157113,2025,incorporated-place,channels-found,44.94,alerts,https://hayward-ca.gov/discover/news/jul26/amber-alert-issued-3-month-old-maxence-sirois,https://hayward-ca.gov/discover/news/2,linked-from-official-page,not-tested +162:0633000,Hayward,CA,157113,2025,incorporated-place,channels-found,44.94,department-page,https://hayward-ca.gov/discover/news/306,https://hayward-ca.gov/police-department,official-domain-or-referral,public-html +162:0633182,Hemet,CA,93649,2025,incorporated-place,channels-found,593.8,newsroom,https://hemetpd.com/,https://hemetpd.com/,reviewed-primary-web-source,search-readable; automation-unverified +162:0633182,Hemet,CA,93649,2025,incorporated-place,channels-found,593.8,feed-candidate,https://hemetpd.com/feed/,https://hemetpd.com/,reviewed-police-publisher-feed,public-feed-with-items +162:0633434,Hesperia,CA,102605,2025,incorporated-place,channels-found,523.58,department-page,https://hesperiaca.gov/directory.aspx?did=7,https://hesperiaca.gov/directory.aspx?did=7,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0633434,Hesperia,CA,102605,2025,incorporated-place,channels-found,523.58,department-page,https://www.hesperiaca.gov/325/Crime-Map,https://www.hesperiaca.gov/325/Crime-Map,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0633434,Hesperia,CA,102605,2025,incorporated-place,channels-found,523.58,department-page,https://www.hesperiaca.gov/306/Police,https://www.hesperiaca.gov/306/Police,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0633434,Hesperia,CA,102605,2025,incorporated-place,channels-found,523.58,nixle,https://local.nixle.com/sbsd---hesperia-police-department/,https://local.nixle.com/city/ca/hesperia/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0633588,Highland,CA,57614,2025,incorporated-place,channels-found,554.21,department-page,https://www.highlandca.gov/m/directory/department?did=24,https://www.highlandca.gov/m/directory/department?did=24,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0633588,Highland,CA,57614,2025,incorporated-place,channels-found,554.21,department-page,https://wp.sbcounty.gov/sheriff/wp-content/uploads/sites/17/2024-Annual-Crime-Report.pdf,https://wp.sbcounty.gov/sheriff/wp-content/uploads/sites/17/2024-Annual-Crime-Report.pdf,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0633588,Highland,CA,57614,2025,incorporated-place,channels-found,554.21,department-page,https://oag.ca.gov/system/files/media/ab1191-crime-gun-report-2025.pdf,https://oag.ca.gov/system/files/media/ab1191-crime-gun-report-2025.pdf,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0633588,Highland,CA,57614,2025,incorporated-place,channels-found,554.21,nixle,https://local.nixle.com/sbsd---highland-police-department/,https://local.nixle.com/city/ca/highland/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0636000,Huntington Beach,CA,191451,2025,incorporated-place,department-found,531.54,department-page,https://www.ocsheriff.gov/occrimestoppers,https://www.ocsheriff.gov/occrimestoppers,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0636000,Huntington Beach,CA,191451,2025,incorporated-place,department-found,531.54,department-page,https://gis.huntingtonbeachca.gov/arcgis/rest/services/WebPolice/MapServer,https://gis.huntingtonbeachca.gov/arcgis/rest/services/WebPolice/MapServer,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0636000,Huntington Beach,CA,191451,2025,incorporated-place,department-found,531.54,department-page,https://irvinepd.gov/2026/06/25/residential-burglary-crew-arrested-2/,https://irvinepd.gov/2026/06/25/residential-burglary-crew-arrested-2/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0636056,Huntington Park,CA,51544,2025,incorporated-place,channels-found,495.04,department-page,https://hppolice.org/,https://hpca.gov/,official-domain-or-referral,public-html +162:0636056,Huntington Park,CA,51544,2025,incorporated-place,channels-found,495.04,feed-candidate,https://hppolice.org/feed/,https://hppolice.org/,linked-from-official-page,public-feed-with-items +162:0636056,Huntington Park,CA,51544,2025,incorporated-place,channels-found,495.04,feed-candidate,https://hppolice.org/comments/feed/,https://hppolice.org/,linked-from-official-page,empty-public-feed +162:0636056,Huntington Park,CA,51544,2025,incorporated-place,channels-found,495.04,newsroom,https://hppolice.org/2022/08/08/dui-checkpoint-press-release/,https://hppolice.org/,linked-from-official-page,not-tested +162:0636056,Huntington Park,CA,51544,2025,incorporated-place,channels-found,495.04,facebook,https://www.facebook.com/huntingtonparkpd/,https://hppolice.org/,linked-from-official-page,not-tested +162:0636056,Huntington Park,CA,51544,2025,incorporated-place,channels-found,495.04,department-page,https://hppolice.org/category/news/,https://hppolice.org/,official-domain-or-referral,public-html +162:0636056,Huntington Park,CA,51544,2025,incorporated-place,channels-found,495.04,feed-candidate,https://hppolice.org/category/news/feed/,https://hppolice.org/category/news/,linked-from-official-page,public-feed-with-items +162:0636056,Huntington Park,CA,51544,2025,incorporated-place,channels-found,495.04,newsroom,https://hppolice.org/2022/05/31/press-release-historic-lieutenant-promotion/,https://hppolice.org/category/news/,linked-from-official-page,not-tested +162:0636056,Huntington Park,CA,51544,2025,incorporated-place,channels-found,495.04,department-page,https://hppolice.org/crime-prevention/,https://hppolice.org/,official-domain-or-referral,public-html +162:0636056,Huntington Park,CA,51544,2025,incorporated-place,channels-found,495.04,department-page,https://hppolice.org/about-hppd/crime-statistics/,https://hppolice.org/,official-domain-or-referral,public-html +162:0636056,Huntington Park,CA,51544,2025,incorporated-place,channels-found,495.04,department-page,https://hpca.gov/600/Police-Department,https://hpca.gov/,official-domain-or-referral,public-html +162:0636056,Huntington Park,CA,51544,2025,incorporated-place,channels-found,495.04,alerts,https://hpca.gov/list.aspx,https://hpca.gov/600/Police-Department,linked-from-official-page,not-tested +162:0636056,Huntington Park,CA,51544,2025,incorporated-place,channels-found,495.04,department-page,https://hpca.gov/472/Social-Networking,https://hpca.gov/600/Police-Department,official-domain-or-referral,public-html +162:0636448,Indio,CA,94269,2025,incorporated-place,department-found,647.43,department-page,https://data-openjustice.doj.ca.gov/sites/default/files/dataset/2025-07/Crimes-Clear-Arson%20Context_06162025.pdf,https://data-openjustice.doj.ca.gov/sites/default/files/dataset/2025-07/Crimes-Clear-Arson%20Context_06162025.pdf,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0636546,Inglewood,CA,101662,2025,incorporated-place,department-found,489.27,department-page,https://www.cityofinglewood.org/659/Crime-Statistics,https://www.cityofinglewood.org/659/Crime-Statistics,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0636546,Inglewood,CA,101662,2025,incorporated-place,department-found,489.27,department-page,https://www.cityofinglewood.org/1649/Police,https://www.cityofinglewood.org/1649/Police,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0636546,Inglewood,CA,101662,2025,incorporated-place,department-found,489.27,department-page,https://locator.lacounty.gov/lac/Location/3052997/inglewood-police-department,https://locator.lacounty.gov/lac/Location/3052997/inglewood-police-department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0636770,Irvine,CA,318764,2025,incorporated-place,channels-found,547.49,instagram,https://www.instagram.com/irvinepolice/,https://irvinepd.gov/,linked-from-official-page,not-tested +162:0636770,Irvine,CA,318764,2025,incorporated-place,channels-found,547.49,x,https://x.com/irvinepolice,https://irvinepd.gov/,linked-from-official-page,not-tested +162:0636770,Irvine,CA,318764,2025,incorporated-place,channels-found,547.49,facebook,https://www.facebook.com/IrvinePD/,https://irvinepd.gov/,linked-from-official-page,not-tested +162:0636770,Irvine,CA,318764,2025,incorporated-place,channels-found,547.49,youtube,http://www.youtube.com/@IrvinePolice,https://irvinepd.gov/,linked-from-official-page,not-tested +162:0636770,Irvine,CA,318764,2025,incorporated-place,channels-found,547.49,crime-map,https://communitycrimemap.com/,https://irvinepd.gov/,linked-from-official-page,not-tested +162:0636770,Irvine,CA,318764,2025,incorporated-place,channels-found,547.49,department-page,https://irvinepd.gov,https://irvinepd.gov/,official-domain-or-referral,public-html +162:0636770,Irvine,CA,318764,2025,incorporated-place,channels-found,547.49,alerts,https://member.everbridge.net/453003085613900/login,https://irvinepd.gov,linked-from-official-page,not-tested +162:0636770,Irvine,CA,318764,2025,incorporated-place,channels-found,547.49,alerts,https://www.chp.ca.gov/news-alerts/alerts/amber-alert/,https://irvinepd.gov,linked-from-official-page,not-tested +162:0636770,Irvine,CA,318764,2025,incorporated-place,channels-found,547.49,alerts,https://www.calalerts.org/,https://irvinepd.gov,linked-from-official-page,not-tested +162:0636770,Irvine,CA,318764,2025,incorporated-place,channels-found,547.49,newsroom,https://irvinepd.gov/category/news-releases/,https://irvinepd.gov,linked-from-official-page,not-tested +162:0636770,Irvine,CA,318764,2025,incorporated-place,channels-found,547.49,department-page,https://irvinepd.gov/social-media-policy/,https://irvinepd.gov,official-domain-or-referral,public-html +162:0636770,Irvine,CA,318764,2025,incorporated-place,channels-found,547.49,department-page,https://irvinepd.gov/news-and-information/,https://irvinepd.gov,official-domain-or-referral,public-html +162:0636770,Irvine,CA,318764,2025,incorporated-place,channels-found,547.49,alerts,https://irvinepd.gov/2026/01/05/scam-alert/,https://irvinepd.gov/news-and-information/,linked-from-official-page,not-tested +162:0636770,Irvine,CA,318764,2025,incorporated-place,channels-found,547.49,department-page,https://www.ocsheriff.gov/,https://irvinepd.gov/,official-domain-or-referral,public-html +162:0636770,Irvine,CA,318764,2025,incorporated-place,channels-found,547.49,crime-map,https://www.crimemapping.com/,https://www.ocsheriff.gov/,linked-from-official-page,not-tested +162:0636770,Irvine,CA,318764,2025,incorporated-place,channels-found,547.49,incident-log,http://ws.ocsheriff.gov/Blotter/,https://www.ocsheriff.gov/,linked-from-official-page,not-tested +162:0636770,Irvine,CA,318764,2025,incorporated-place,channels-found,547.49,alerts,https://www.ocsheriff.gov/news/protecting-pedestrians-california-urges-drivers-stay-alert-september,https://www.ocsheriff.gov/,linked-from-official-page,not-tested +162:0636770,Irvine,CA,318764,2025,incorporated-place,channels-found,547.49,facebook,https://facebook.com/ocsheriff,https://www.ocsheriff.gov/,linked-from-official-page,not-tested +162:0636770,Irvine,CA,318764,2025,incorporated-place,channels-found,547.49,instagram,https://instagram.com/ocsheriff,https://www.ocsheriff.gov/,linked-from-official-page,not-tested +162:0636770,Irvine,CA,318764,2025,incorporated-place,channels-found,547.49,x,https://x.com/ocsheriff,https://www.ocsheriff.gov/,linked-from-official-page,not-tested +162:0636770,Irvine,CA,318764,2025,incorporated-place,channels-found,547.49,youtube,https://youtube.com/ocsheriff,https://www.ocsheriff.gov/,linked-from-official-page,not-tested +162:0636770,Irvine,CA,318764,2025,incorporated-place,channels-found,547.49,department-page,https://www.ocsheriff.gov/news,https://www.ocsheriff.gov/,official-domain-or-referral,public-html +162:0636770,Irvine,CA,318764,2025,incorporated-place,channels-found,547.49,newsroom,https://www.ocsheriff.gov/news/fatal-traffic-collision-lake-forest-driver-arrested-dui-1,https://www.ocsheriff.gov/news,linked-from-official-page,not-tested +162:0636770,Irvine,CA,318764,2025,incorporated-place,channels-found,547.49,newsroom,https://www.ocsheriff.gov/news/multi-location-search-warrant-takes-down-catalytic-converter-theft-ring,https://www.ocsheriff.gov/news,linked-from-official-page,not-tested +162:0636770,Irvine,CA,318764,2025,incorporated-place,channels-found,547.49,newsroom,https://www.ocsheriff.gov/news/fatal-traffic-collision-mission-viejo-two-drivers-arrested,https://www.ocsheriff.gov/news,linked-from-official-page,not-tested +162:0636770,Irvine,CA,318764,2025,incorporated-place,channels-found,547.49,newsroom,https://www.ocsheriff.gov/news/fatal-traffic-collision-lake-forest-driver-arrested-dui-0,https://www.ocsheriff.gov/news,linked-from-official-page,not-tested +162:0636770,Irvine,CA,318764,2025,incorporated-place,channels-found,547.49,newsroom,https://www.ocsheriff.gov/news/fatal-traffic-collision-san-juan-capistrano-driver-arrested-hit-and-run,https://www.ocsheriff.gov/news,linked-from-official-page,not-tested +162:0637692,Jurupa Valley,CA,107311,2025,incorporated-place,department-found,541.61,department-page,https://www.bscc.ca.gov/wp-content/uploads/78-Riverside-County-Jurupa-Valley-Sheriff-Station.pdf,https://www.bscc.ca.gov/wp-content/uploads/78-Riverside-County-Jurupa-Valley-Sheriff-Station.pdf,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0639290,La Habra,CA,60908,2025,incorporated-place,channels-found,515.82,department-page,https://lahabraca.gov/227/Police-Department,https://lahabraca.gov/,official-domain-or-referral,public-html +162:0639290,La Habra,CA,60908,2025,incorporated-place,channels-found,515.82,crime-map,https://communitycrimemap.com/,https://lahabraca.gov/227/Police-Department,linked-from-official-page,not-tested +162:0639290,La Habra,CA,60908,2025,incorporated-place,channels-found,515.82,alerts,https://lahabraca.gov/CivicAlerts.aspx?AID=694,https://lahabraca.gov/227/Police-Department,linked-from-official-page,not-tested +162:0639290,La Habra,CA,60908,2025,incorporated-place,channels-found,515.82,alerts,https://lahabraca.gov/CivicAlerts.aspx?CID=5,https://lahabraca.gov/227/Police-Department,linked-from-official-page,not-tested +162:0639290,La Habra,CA,60908,2025,incorporated-place,channels-found,515.82,department-page,https://lahabraca.gov/m/newsflash?cat=5,https://lahabraca.gov/227/Police-Department,official-domain-or-referral,public-html +162:0639290,La Habra,CA,60908,2025,incorporated-place,channels-found,515.82,alerts,https://lahabraca.gov/list.aspx?Mode=Subscribe,https://lahabraca.gov/m/newsflash?cat=5,linked-from-official-page,not-tested +162:0639290,La Habra,CA,60908,2025,incorporated-place,channels-found,515.82,alerts,https://lahabraca.gov/1044/Alerts-Requests,https://lahabraca.gov/m/newsflash?cat=5,linked-from-official-page,not-tested +162:0639290,La Habra,CA,60908,2025,incorporated-place,channels-found,515.82,alerts,https://lahabraca.gov/list.aspx,https://lahabraca.gov/m/newsflash?cat=5,linked-from-official-page,not-tested +162:0639290,La Habra,CA,60908,2025,incorporated-place,channels-found,515.82,department-page,https://lahabraca.gov/m/newsflash/home/detail/694,https://lahabraca.gov/227/Police-Department,official-domain-or-referral,public-html +162:0640004,La Mesa,CA,59914,2025,incorporated-place,channels-found,669.37,nixle,https://local.nixle.com/city-of-la-mesa,https://cityoflamesa.gov/,linked-from-official-page,public-nixle-archive +162:0639248,Laguna Niguel,CA,64107,2025,incorporated-place,department-found,564.2,department-page,https://www.ocsheriff.gov/patrol-areas/laguna-niguel,https://www.ocsheriff.gov/patrol-areas/laguna-niguel,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0639248,Laguna Niguel,CA,64107,2025,incorporated-place,department-found,564.2,department-page,https://www.ocsheriff.gov/patrol-areas,https://www.ocsheriff.gov/patrol-areas,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0639248,Laguna Niguel,CA,64107,2025,incorporated-place,department-found,564.2,department-page,https://www.ocsheriff.gov/location/laguna-niguel-police-services,https://www.ocsheriff.gov/location/laguna-niguel-police-services,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0639486,Lake Elsinore,CA,75067,2025,incorporated-place,channels-found,574.82,department-page,https://www.lake-elsinore.org/172/Public-Safety,https://www.lake-elsinore.org/,discovered-department-page; review-jurisdiction,public-html +162:0639486,Lake Elsinore,CA,75067,2025,incorporated-place,channels-found,574.82,alerts,https://www.lake-elsinore.org/706/LE-Ready-Emergency-Alerts,https://www.lake-elsinore.org/172/Public-Safety,linked-from-municipal-or-department-page; review-scope,not-tested +162:0639486,Lake Elsinore,CA,75067,2025,incorporated-place,channels-found,574.82,alerts,https://www.lake-elsinore.org/list.aspx,https://www.lake-elsinore.org/172/Public-Safety,linked-from-municipal-or-department-page; review-scope,not-tested +162:0639486,Lake Elsinore,CA,75067,2025,incorporated-place,channels-found,574.82,department-page,https://www.lake-elsinore.org/313/Crime-Free-Multi-Housing-Program,https://www.lake-elsinore.org/172/Public-Safety,discovered-department-page; review-jurisdiction,public-html +162:0639486,Lake Elsinore,CA,75067,2025,incorporated-place,channels-found,574.82,department-page,https://www.lake-elsinore.org/309/Police,https://www.lake-elsinore.org/172/Public-Safety,discovered-department-page; review-jurisdiction,public-html +162:0639496,Lake Forest,CA,86333,2025,incorporated-place,department-found,555.39,department-page,https://ocsheriff.gov/patrol-areas/lake-forest,https://ocsheriff.gov/patrol-areas/lake-forest,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0639496,Lake Forest,CA,86333,2025,incorporated-place,department-found,555.39,department-page,https://www.ocsheriff.gov/node,https://www.ocsheriff.gov/node,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0639496,Lake Forest,CA,86333,2025,incorporated-place,department-found,555.39,department-page,https://city-lakeforest.com/298/Police-Services.html,https://city-lakeforest.com/298/Police-Services.html,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0639892,Lakewood,CA,78010,2025,incorporated-place,channels-found,511.88,department-page,https://www.lakewoodca.gov/Residents/Public-Safety,https://www.lakewoodca.gov/Home,official-domain-or-referral,public-html +162:0639892,Lakewood,CA,78010,2025,incorporated-place,channels-found,511.88,alerts,https://www.lakewoodca.gov/About/Traffic-and-Construction-Alerts,https://www.lakewoodca.gov/Residents/Public-Safety,linked-from-official-page,not-tested +162:0639892,Lakewood,CA,78010,2025,incorporated-place,channels-found,511.88,department-page,https://www.lakewoodca.gov/About/City-news,https://www.lakewoodca.gov/Residents/Public-Safety,official-domain-or-referral,public-html +162:0639892,Lakewood,CA,78010,2025,incorporated-place,channels-found,511.88,department-page,https://www.lakewoodca.gov/About/City-news/eMagazine-Subscription,https://www.lakewoodca.gov/Residents/Public-Safety,official-domain-or-referral,public-html +162:0639892,Lakewood,CA,78010,2025,incorporated-place,channels-found,511.88,department-page,https://www.lakewoodca.gov/Residents/Public-Safety/Homelessness,https://www.lakewoodca.gov/Home,official-domain-or-referral,public-html +162:0640130,Lancaster,CA,170084,2025,incorporated-place,channels-found,441.91,department-page,https://www.cityoflancasterca.org/our-city/departments-services/public-safety,https://www.cityoflancasterca.org/our-city/departments-services/public-safety,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0640130,Lancaster,CA,170084,2025,incorporated-place,channels-found,441.91,newsroom,https://police.cityoflancasterpa.gov/news/,https://police.cityoflancasterpa.gov/news/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0640130,Lancaster,CA,170084,2025,incorporated-place,channels-found,441.91,announcement,https://www.cityoflancasterca.org/Home/Components/News/News/10422/2541,https://www.cityoflancasterca.org/Home/Components/News/News/10422/2541,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0641474,Lincoln,CA,57367,2025,incorporated-place,channels-found,190.07,department-page,https://www.lincolnca.gov/living-here/police-and-fire/,https://www.lincolnca.gov/,official-domain-or-referral,public-html +162:0641474,Lincoln,CA,57367,2025,incorporated-place,channels-found,190.07,alerts,https://www.lincolnca.gov/css/GOV/modules/alert/alert.css,https://www.lincolnca.gov/living-here/police-and-fire/,linked-from-official-page,not-tested +162:0641474,Lincoln,CA,57367,2025,incorporated-place,channels-found,190.07,incident-log,https://lincolnca.citizenrims.com/map,https://www.lincolnca.gov/living-here/police-and-fire/,linked-from-official-page,not-tested +162:0641474,Lincoln,CA,57367,2025,incorporated-place,channels-found,190.07,incident-log,https://lincolnca.citizenrims.com/form?formId=128,https://www.lincolnca.gov/living-here/police-and-fire/,linked-from-official-page,not-tested +162:0641474,Lincoln,CA,57367,2025,incorporated-place,channels-found,190.07,incident-log,https://lincolnca.citizenrims.com/form?formId=129,https://www.lincolnca.gov/living-here/police-and-fire/,linked-from-official-page,not-tested +162:0641474,Lincoln,CA,57367,2025,incorporated-place,channels-found,190.07,department-page,https://www.lincolnca.gov/news,https://www.lincolnca.gov/living-here/police-and-fire/,official-domain-or-referral,public-html +162:0641474,Lincoln,CA,57367,2025,incorporated-place,channels-found,190.07,newsroom,https://www.lincolnca.gov/news/posts/lincoln-police-arrest-suspect-following-stabbing-investigation-news-release/,https://www.lincolnca.gov/news,linked-from-official-page,not-tested +162:0641474,Lincoln,CA,57367,2025,incorporated-place,channels-found,190.07,newsroom,https://www.lincolnca.gov/news/posts/homicide-investigation-and-arrest-news-release/,https://www.lincolnca.gov/news,linked-from-official-page,not-tested +162:0641474,Lincoln,CA,57367,2025,incorporated-place,channels-found,190.07,department-page,https://www.lincolnca.gov/our-government/social-media/,https://www.lincolnca.gov/living-here/police-and-fire/,official-domain-or-referral,public-html +162:0641474,Lincoln,CA,57367,2025,incorporated-place,channels-found,190.07,facebook,https://www.facebook.com/MyLincolnPD,https://www.lincolnca.gov/our-government/social-media/,linked-from-official-page,not-tested +162:0641474,Lincoln,CA,57367,2025,incorporated-place,channels-found,190.07,instagram,https://www.instagram.com/lincolnpd/,https://www.lincolnca.gov/our-government/social-media/,linked-from-official-page,not-tested +162:0641474,Lincoln,CA,57367,2025,incorporated-place,channels-found,190.07,x,https://x.com/lincolnpolice,https://www.lincolnca.gov/our-government/social-media/,linked-from-official-page,not-tested +162:0641474,Lincoln,CA,57367,2025,incorporated-place,channels-found,190.07,announcement,https://media-001-us.cdn.govstack.com/lincolnca-003-us/media/pcdlwoml/8242026-lpd-presser.pdf,https://www.lincolnca.gov/news/posts/lincoln-police-arrest-suspect-following-stabbing-investigation-news-release/,linked-from-official-page,not-tested +162:0641992,Livermore,CA,83457,2025,incorporated-place,channels-found,51.89,department-page,https://police.livermoreca.gov/,https://police.livermoreca.gov/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0641992,Livermore,CA,83457,2025,incorporated-place,channels-found,51.89,department-page,https://police.livermoreca.gov/about-us,https://police.livermoreca.gov/about-us,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0641992,Livermore,CA,83457,2025,incorporated-place,channels-found,51.89,department-page,https://police.livermoreca.gov/contact,https://police.livermoreca.gov/contact,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0641992,Livermore,CA,83457,2025,incorporated-place,channels-found,51.89,newsroom,https://police.livermoreca.gov/community/news-press-releases,https://police.livermoreca.gov/community/news-press-releases,reviewed-primary-web-source,search-readable; automation-unverified +162:0642202,Lodi,CA,69100,2025,incorporated-place,department-found,113.24,department-page,https://www.lodi.gov/215/Police,https://www.lodi.gov/215/Police,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0642202,Lodi,CA,69100,2025,incorporated-place,department-found,113.24,department-page,https://www.lodi.gov/886/Chief-of-Police,https://www.lodi.gov/886/Chief-of-Police,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0642202,Lodi,CA,69100,2025,incorporated-place,department-found,113.24,department-page,https://www.lodi.gov/215/Police?from=AppAgg.com,https://www.lodi.gov/215/Police?from=AppAgg.com,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,department-page,https://longbeach.gov/police/,https://longbeach.gov/,official-domain-or-referral,public-html +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://www.p3tips.com/TipForm.aspx?ID=365,https://longbeach.gov/police/,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,alerts,https://longbeach.gov/disasterpreparedness/alert-long-beach/,https://longbeach.gov/police/,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,newsroom,https://longbeach.gov/press-release-archive/?cid=6697,https://longbeach.gov/police/,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-sept-12-2026/,https://longbeach.gov/police/,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-sept-11-2026/,https://longbeach.gov/police/,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-sept-10-2026/,https://longbeach.gov/police/,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,x,https://x.com/lbpd,https://longbeach.gov/police/,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,department-page,https://longbeach.gov/socialmedia/,https://longbeach.gov/police/,official-domain-or-referral,public-html +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,department-page,https://longbeach.gov/social-media-tc/,https://longbeach.gov/police/,official-domain-or-referral,public-html +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,department-page,https://longbeach.gov/news-archive/?cid=6697,https://longbeach.gov/police/,official-domain-or-referral,public-html +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-sept-9-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-sept-8-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-sept-7-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-sept-6-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-sept-5-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-sept-4-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-sept-3-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-sept-2-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-sept-1-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-31-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-30-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-29-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-28-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-27-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-26-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-25-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-24-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-23-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-22-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-21-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-20-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-19-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-18-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-17-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-16-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-15-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-14-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-13-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-12-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-11-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-10-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-9-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-8-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-6-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-7-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-5-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-4-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-3-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-2-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-1-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-31-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-30-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-29-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-28-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-27-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-26-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-25-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-24-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-23-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-22-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-21-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-20-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-19-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-18-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-17-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-16-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-15-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-14-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter---july-13-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-12-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-11-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-10-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-9-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-8-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-7-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-6-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-5-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-4-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-3-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-2-20262/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-1-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-30-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-29-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-28-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-27-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-26-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-25-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-24-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-23-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-22-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-21-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-20-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-19-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-18-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-17-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-16-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-15-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-14-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-13-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-12-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-11-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-10-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-9-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-8-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-7-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-6-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-5-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-4-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-June-3-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-2-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-1-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-31-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-30-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-29-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-28-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-27-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-26-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-25-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-24-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-23-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-22-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-21-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-20-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-19-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-18-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-17-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-16-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-15-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-14-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-13-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-12-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-11-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-10-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-9-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-8-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-7-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-6-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-5-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-4-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-3-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-2-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-1-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-30-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-29-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-28-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-27-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-26-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-25-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-24-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-23-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-22-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-21-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-20-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-19-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-18-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-17-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-16-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-15-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-14-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-13-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-12-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-11-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-10-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-9-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-8-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-7-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-6-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-5-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-4-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-3-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-2-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-1-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-31-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-30-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-29-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-28-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-27-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-26-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-25-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-24-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-23-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-22-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-21-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-20-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-19-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-18-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-17-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-16-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-15-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-14-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-13-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-12-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-11-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-10-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-9-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-8-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-7-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-6-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-5-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-4-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-3-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-2-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-1-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-feb-28-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-feb-27-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-feb-26-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-feb-25-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-feb-24-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-feb-23-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-feb-22-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-feb-21-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-feb-20-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-feb-19-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-feb-18-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-feb-17-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-feb-16-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-feb-15-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-feb-14-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-feb-13-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-feb-12-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-feb-11-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-feb-10-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-feb-9-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-feb-8-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-feb-7-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-feb-6-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-feb-5-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-feb-4-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-feb-3-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-feb-2-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-feb-1-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-31-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-30-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-29-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-28-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-27-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-26-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-25-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-24-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-23-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-22-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-21-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-20-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-19-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-18-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-17-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-16-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-15-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-14-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-13-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-12-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-11-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-10-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-9-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-8-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-7-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-6-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-5-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-4-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-3-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-2-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-jan-1-2026/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-31-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-30-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-29-20252/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-28-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-27-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-26-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-25-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-24-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-23-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-22-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-21-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-20-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-19-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-18-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-17-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-16-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-15-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-14-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-13-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-12-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-11-20252/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-10-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-9-20252/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-8-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-7-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-6-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-5-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-4-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-3-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-2-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-dec-1-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-30-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-29-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-28-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-27-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-26-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-25-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-24-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-23-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-22-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-21-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-20-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-19-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-18-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-17-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-16-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-15-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-14-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-13-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-12-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-11-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-10-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-9-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-8-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-7-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-6-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-5-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-4-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-3-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-2-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-nov-1-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-october-31-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-october-30-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-october-29-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-october-28-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-october-27-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-oct-26-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-oct-25-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-october-24-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-october-23-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-october-22-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-october-21-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-october-20-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-october-19-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-october-18-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter---oct-17-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-october-16-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-october-15-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-october-14-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-october-13-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-october-12-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-october-11-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-october-10-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-october-9-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-october-8-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-october-7-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-october-6-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-october-5-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-october-4-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-october-3-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-october-2-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-october-1-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-september-30-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-september-29-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-september-28-20252/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-september-27-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-september-26-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-september-25-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-september-24-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-sept.-23-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-september-22-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-september-20-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-september-19-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-september-18-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-september-17-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-september-16-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-september-15-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-september-14-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-september-13-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-september-12-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-september-11-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-september-10-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-september-9-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-september-8-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-sept.-7-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-september-6-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-sept-5-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-sept-4-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-september-3-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-september-2-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-september-1-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-august-31-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-august-30-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-august-29-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-august-28-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-august-27-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-august-26-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-august-25-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-august-24-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-august-23-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-august-22-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-august-21-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-august-20-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-august-19-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-august-18-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-august-17-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-august-16-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-august-15-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-august-14-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-august-13-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-august-12-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-august-11-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-august-10-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-august-9-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-august-8-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-3-20252/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-6-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-5-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-4-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-3-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-2-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-aug-1-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-31-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-30-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-29-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-28-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-27-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter---july-26-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter---july-25-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-24-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-23-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-22-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-21-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-20-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-19-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-18-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-17-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-16-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-15-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-14-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-13-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-12-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-11-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-10-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-9-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-8-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-7-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-6-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-5-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-4-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-3-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-2-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-july-1-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-30-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-29-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-28-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-27-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-26-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-25-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-24-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-23-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-22-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-21-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-20-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-19-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-18-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-17-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-16-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-15-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-14-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-13-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-12-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-11-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-10-20252/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-9-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-8-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-7-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-6-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-5-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-4-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-3-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-2-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-june-1-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-31-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-30-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-29-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-28-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-27-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-26-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-25-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-24-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-23-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-22-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-21-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-20-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-19-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-18-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-17-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-16-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-15-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-14-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-13-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-12-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-11-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-10-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-9-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-8-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-7-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-6-20252/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-5-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-4-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-3-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-2-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-may-1-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-30-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-29-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-28-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-27-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-26-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-25-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-24-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-23-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-22-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-21-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-20-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-19-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-18-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-17-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-16-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-15-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-14-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-13-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-12-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-11-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-10-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-9-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-8-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-7-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-6-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-5-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-4-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-3-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-2-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-april-1-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-31-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-30-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-29-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-28-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-27-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-26-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-25-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-24-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-23-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-22-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-21-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-20-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-20-20252/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-19-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,incident-log,https://longbeach.gov/police/news/lbpd-blotter-march-18-2025/,https://longbeach.gov/news-archive/?cid=6697,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,department-page,https://longbeach.gov/policeoversight/,https://longbeach.gov/,official-domain-or-referral,public-html +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,alerts,https://accountportal.onsolve.net/alertlb,https://longbeach.gov/disasterpreparedness/alert-long-beach/,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,newsroom,https://longbeach.gov/globalassets/disaster-preparedness/media-library/documents/alert-long-beach/press-release-alertlongbeach,https://longbeach.gov/disasterpreparedness/alert-long-beach/,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,alerts,https://longbeach.gov/globalassets/disaster-preparedness/media-library/documents/alert-long-beach/alert-long-beach-english-,https://longbeach.gov/disasterpreparedness/alert-long-beach/,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,newsroom,https://longbeach.gov/globalassets/disaster-preparedness/media-library/documents/alert-long-beach/press-release-alertlongbeach-spanish,https://longbeach.gov/disasterpreparedness/alert-long-beach/,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,alerts,https://longbeach.gov/globalassets/disaster-preparedness/media-library/documents/alert-long-beach/alert-long-beach-spanish,https://longbeach.gov/disasterpreparedness/alert-long-beach/,linked-from-official-page,not-tested +162:0643000,Long Beach,CA,450469,2025,incorporated-place,channels-found,514.65,alerts,http://lbc.ahasalerts.com/Default.aspx,https://longbeach.gov/disasterpreparedness/alert-long-beach/,linked-from-official-page,not-tested +162:0644000,Los Angeles,CA,3869089,2025,incorporated-place,channels-found,479.93,newsroom,https://www.lapdonline.org/newsroom/,https://www.lapdonline.org/newsroom/,reviewed-primary-web-source,search-readable; automation-unverified +162:0644574,Lynwood,CA,63512,2025,incorporated-place,channels-found,500.6,department-page,https://lynwoodca.gov/m/newsflash/home/detail/351,https://lynwoodca.gov/,official-domain-or-referral,public-html +162:0644574,Lynwood,CA,63512,2025,incorporated-place,channels-found,500.6,department-page,https://lynwoodca.gov/m/newsflash,https://lynwoodca.gov/m/newsflash/home/detail/351,official-domain-or-referral,public-html +162:0644574,Lynwood,CA,63512,2025,incorporated-place,channels-found,500.6,alerts,https://lynwoodca.gov/list.aspx?Mode=Subscribe,https://lynwoodca.gov/m/newsflash,linked-from-official-page,not-tested +162:0645022,Madera,CA,69017,2025,incorporated-place,channels-found,167.52,department-page,https://www.madera.gov/emergency-protective-services/police-department/,https://www.madera.gov/,official-domain-or-referral,public-html +162:0645022,Madera,CA,69017,2025,incorporated-place,channels-found,167.52,alerts,https://www.madera.gov/css/GOV/modules/alert/alert.css,https://www.madera.gov/emergency-protective-services/police-department/,linked-from-official-page,not-tested +162:0645022,Madera,CA,69017,2025,incorporated-place,channels-found,167.52,nixle,https://local.nixle.com/madera-police-department/,https://local.nixle.com/city/ca/madera/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0645484,Manteca,CA,96693,2025,incorporated-place,channels-found,87.89,crime-map-directory,https://www.manteca.gov/627/Crime-Information,https://www.manteca.gov/627/Crime-Information,reviewed-primary-web-source,search-readable; automation-unverified +162:0645484,Manteca,CA,96693,2025,incorporated-place,channels-found,87.89,department-page,https://oag.ca.gov/fingerprints/locations/manteca-police-department,https://oag.ca.gov/fingerprints/locations/manteca-police-department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0645484,Manteca,CA,96693,2025,incorporated-place,channels-found,87.89,nixle,https://local.nixle.com/manteca-police-department/,https://local.nixle.com/city/ca/manteca/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0646842,Menifee,CA,118592,2025,incorporated-place,department-found,584.51,department-page,https://www.cityofmenifee.us/Archive/ViewFile/Item/2998,https://www.cityofmenifee.us/Archive/ViewFile/Item/2998,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0646898,Merced,CA,99724,2025,incorporated-place,department-found,130.48,department-page,https://www.cityofmerced.gov/public-safety/police,https://www.cityofmerced.gov/public-safety/police,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0646898,Merced,CA,99724,2025,incorporated-place,department-found,130.48,department-page,https://www.cityofmerced.gov/public-safety/police/transparency-hub,https://www.cityofmerced.gov/public-safety/police/transparency-hub,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0646898,Merced,CA,99724,2025,incorporated-place,department-found,130.48,department-page,https://www.cityofmerced.gov/public-safety/police/crimemapping-com,https://www.cityofmerced.gov/public-safety/police/crimemapping-com,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0647766,Milpitas,CA,78596,2025,incorporated-place,channels-found,21.58,department-page,https://www.milpitas.gov/1101/Police,curated department URL,official-domain-or-referral,public-html +162:0647766,Milpitas,CA,78596,2025,incorporated-place,channels-found,21.58,facebook,https://www.facebook.com/MilpitasPD,https://www.milpitas.gov/1101/Police,linked-from-official-page,not-tested +162:0647766,Milpitas,CA,78596,2025,incorporated-place,channels-found,21.58,x,https://x.com/milpitaspd,https://www.milpitas.gov/1101/Police,linked-from-official-page,not-tested +162:0647766,Milpitas,CA,78596,2025,incorporated-place,channels-found,21.58,instagram,https://www.instagram.com/milpitaspolice/,https://www.milpitas.gov/1101/Police,linked-from-official-page,not-tested +162:0647766,Milpitas,CA,78596,2025,incorporated-place,channels-found,21.58,nextdoor,https://nextdoor.com/agency-detail/ca/milpitas/milpitas-police-department/,https://www.milpitas.gov/1101/Police,linked-from-official-page,not-tested +162:0647766,Milpitas,CA,78596,2025,incorporated-place,channels-found,21.58,newsroom,https://www.milpitas.gov/372/Press-Releases,https://www.milpitas.gov/1101/Police,linked-from-official-page,not-tested +162:0647766,Milpitas,CA,78596,2025,incorporated-place,channels-found,21.58,department-page,https://www.milpitas.gov/1098/Transparency-Portal,https://www.milpitas.gov/372/Press-Releases,official-domain-or-referral,public-html +162:0647766,Milpitas,CA,78596,2025,incorporated-place,channels-found,21.58,department-page,https://www.milpitas.gov/162/Crime-Prevention-Safety,https://www.milpitas.gov/1101/Police,official-domain-or-referral,public-html +162:0648256,Mission Viejo,CA,90484,2025,incorporated-place,channels-found,560.33,department-page,https://www.missionviejo.gov/category/crime-alerts,https://www.missionviejo.gov/category/crime-alerts,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0648256,Mission Viejo,CA,90484,2025,incorporated-place,channels-found,560.33,incident-log,https://www.missionviejo.gov/departments/police-services/alert-bulletin-resources/crime-alertsnews,https://www.missionviejo.gov/departments/police-services/alert-bulletin-resources/crime-alertsnews,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0648256,Mission Viejo,CA,90484,2025,incorporated-place,channels-found,560.33,department-page,https://www.missionviejo.gov/departments/police-services,https://www.missionviejo.gov/departments/police-services,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0648354,Modesto,CA,219652,2025,incorporated-place,department-found,93.81,department-page,https://www.modestogov.com/229/Crime-Map,https://www.modestogov.com/229/Crime-Map,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0648354,Modesto,CA,219652,2025,incorporated-place,department-found,93.81,department-page,https://permits.modestogov.com/223/Police-Department,https://permits.modestogov.com/223/Police-Department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0648354,Modesto,CA,219652,2025,incorporated-place,department-found,93.81,department-page,https://www.modestogov.com/1169/File-a-Non-Emergency-Police-Report,https://www.modestogov.com/1169/File-a-Non-Emergency-Police-Report,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0648816,Montebello,CA,60693,2025,incorporated-place,channels-found,498.67,department-page,https://www.montebelloca.gov/departments/police,https://www.montebelloca.gov/,official-domain-or-referral,public-html +162:0648816,Montebello,CA,60693,2025,incorporated-place,channels-found,498.67,newsroom,https://www.montebelloca.gov/departments/public_affairs___information_technology/press_releases,https://www.montebelloca.gov/departments/police,linked-from-official-page,not-tested +162:0648816,Montebello,CA,60693,2025,incorporated-place,channels-found,498.67,alerts,https://www.montebelloca.gov/departments/transit/rider_alerts,https://www.montebelloca.gov/departments/police,linked-from-official-page,not-tested +162:0648816,Montebello,CA,60693,2025,incorporated-place,channels-found,498.67,facebook,https://www.facebook.com/montebellopd,https://www.montebelloca.gov/departments/police,linked-from-official-page,not-tested +162:0648816,Montebello,CA,60693,2025,incorporated-place,channels-found,498.67,x,https://x.com/montebellopd,https://www.montebelloca.gov/departments/police,linked-from-official-page,not-tested +162:0648816,Montebello,CA,60693,2025,incorporated-place,channels-found,498.67,instagram,https://www.instagram.com/montebellopd/,https://www.montebelloca.gov/departments/police,linked-from-official-page,not-tested +162:0648816,Montebello,CA,60693,2025,incorporated-place,channels-found,498.67,nextdoor,https://nextdoor.com/agency-detail/ca/montebello/montebello-police-department/,https://www.montebelloca.gov/departments/police,linked-from-official-page,not-tested +162:0648816,Montebello,CA,60693,2025,incorporated-place,channels-found,498.67,department-page,https://www.montebelloca.gov/departments/police/news,https://www.montebelloca.gov/departments/police,official-domain-or-referral,public-html +162:0648816,Montebello,CA,60693,2025,incorporated-place,channels-found,498.67,department-page,https://www.montebelloca.gov/departments/police/connect,https://www.montebelloca.gov/departments/police,official-domain-or-referral,public-html +162:0648816,Montebello,CA,60693,2025,incorporated-place,channels-found,498.67,youtube,https://www.youtube.com/@montebellopd,https://www.montebelloca.gov/departments/police/connect,linked-from-official-page,not-tested +162:0648914,Monterey Park,CA,57457,2025,incorporated-place,channels-found,494.6,department-page,http://www.montereypark.ca.gov/m/newsflash/home/detail/1409,http://www.montereypark.ca.gov/,discovered-department-page; review-jurisdiction,public-html +162:0648914,Monterey Park,CA,57457,2025,incorporated-place,channels-found,494.6,alerts,http://www.MontereyPark.ca.gov/NotifyMe,http://www.montereypark.ca.gov/m/newsflash/home/detail/1409,linked-from-municipal-or-department-page; review-scope,not-tested +162:0648914,Monterey Park,CA,57457,2025,incorporated-place,channels-found,494.6,alerts,http://www.montereypark.ca.gov/CivicAlerts.aspx?CID=1,http://www.montereypark.ca.gov/m/newsflash/home/detail/1409,linked-from-municipal-or-department-page; review-scope,not-tested +162:0648914,Monterey Park,CA,57457,2025,incorporated-place,channels-found,494.6,alerts,http://www.montereypark.ca.gov/list.aspx,http://www.montereypark.ca.gov/m/newsflash/home/detail/1409,linked-from-municipal-or-department-page; review-scope,not-tested +162:0648914,Monterey Park,CA,57457,2025,incorporated-place,channels-found,494.6,alerts,https://member.everbridge.net/93013422374936/login,http://www.montereypark.ca.gov/m/newsflash/home/detail/1409,linked-from-municipal-or-department-page; review-scope,not-tested +162:0648914,Monterey Park,CA,57457,2025,incorporated-place,channels-found,494.6,department-page,http://www.montereypark.ca.gov/m/newsflash,http://www.montereypark.ca.gov/m/newsflash/home/detail/1409,discovered-department-page; review-jurisdiction,public-html +162:0648914,Monterey Park,CA,57457,2025,incorporated-place,channels-found,494.6,feed-directory,http://www.montereypark.ca.gov/rss.aspx,http://www.montereypark.ca.gov/m/newsflash,linked-from-municipal-or-department-page; review-scope,not-tested +162:0648914,Monterey Park,CA,57457,2025,incorporated-place,channels-found,494.6,alerts,http://www.montereypark.ca.gov/list.aspx?Mode=Subscribe,http://www.montereypark.ca.gov/m/newsflash,linked-from-municipal-or-department-page; review-scope,not-tested +162:0648914,Monterey Park,CA,57457,2025,incorporated-place,channels-found,494.6,department-page,http://www.montereypark.ca.gov/79/Stay-Connected,http://www.montereypark.ca.gov/m/newsflash/home/detail/1409,discovered-department-page; review-jurisdiction,public-html +162:0648914,Monterey Park,CA,57457,2025,incorporated-place,channels-found,494.6,alerts,http://www.montereypark.ca.gov/1683/Emergency-Alerts,http://www.montereypark.ca.gov/79/Stay-Connected,linked-from-municipal-or-department-page; review-scope,not-tested +162:0648914,Monterey Park,CA,57457,2025,incorporated-place,channels-found,494.6,x,https://x.com/montereyparkpd,http://www.montereypark.ca.gov/79/Stay-Connected,linked-from-municipal-or-department-page; review-scope,not-tested +162:0648914,Monterey Park,CA,57457,2025,incorporated-place,channels-found,494.6,instagram,https://www.instagram.com/montereypark_pd/,http://www.montereypark.ca.gov/79/Stay-Connected,linked-from-municipal-or-department-page; review-scope,not-tested +162:0648914,Monterey Park,CA,57457,2025,incorporated-place,channels-found,494.6,department-page,http://www.montereypark.ca.gov/576/Cascades-Newspaper,http://www.montereypark.ca.gov/m/newsflash/home/detail/1409,discovered-department-page; review-jurisdiction,public-html +162:0648914,Monterey Park,CA,57457,2025,incorporated-place,channels-found,494.6,department-page,http://www.montereypark.ca.gov/m/newsflash/home/detail/1408,http://www.montereypark.ca.gov/,discovered-department-page; review-jurisdiction,public-html +162:0649270,Moreno Valley,CA,214263,2025,incorporated-place,channels-found,565.37,department-page,https://moval.gov/departments/police/index.html,https://moval.gov/,official-domain-or-referral,public-html +162:0649270,Moreno Valley,CA,214263,2025,incorporated-place,channels-found,565.37,department-page,https://moval.gov/departments/police/report-crime.html,https://moval.gov/departments/police/index.html,official-domain-or-referral,public-html +162:0649270,Moreno Valley,CA,214263,2025,incorporated-place,channels-found,565.37,department-page,https://moval.gov/departments/police/report-602-trespass.html,https://moval.gov/,official-domain-or-referral,public-html +162:0649270,Moreno Valley,CA,214263,2025,incorporated-place,channels-found,565.37,department-page,https://www.riversidesheriff.org/FormCenter/Crime-6/Online-Reporting-50,https://moval.gov/,official-domain-or-referral,public-html +162:0649270,Moreno Valley,CA,214263,2025,incorporated-place,channels-found,565.37,newsroom,https://www.riversidesheriff.org/m/newsflash?sortBy=1&searchTerms=&cat=,https://www.riversidesheriff.org/FormCenter/Crime-6/Online-Reporting-50,linked-from-official-page,not-tested +162:0649270,Moreno Valley,CA,214263,2025,incorporated-place,channels-found,565.37,department-page,https://www.riversidesheriff.org/663/Transparency,https://www.riversidesheriff.org/FormCenter/Crime-6/Online-Reporting-50,official-domain-or-referral,public-html +162:0649270,Moreno Valley,CA,214263,2025,incorporated-place,channels-found,565.37,alerts,https://www.riversidesheriff.org/DocumentCenter/View/6569/Nonimmigrant-Status-Notification-Report-2021-PDF,https://www.riversidesheriff.org/663/Transparency,linked-from-official-page,not-tested +162:0649270,Moreno Valley,CA,214263,2025,incorporated-place,channels-found,565.37,alerts,https://www.riversidesheriff.org/DocumentCenter/View/8567/Nonimmigrant-Status-Notification-Report-2024-PDF,https://www.riversidesheriff.org/663/Transparency,linked-from-official-page,not-tested +162:0649270,Moreno Valley,CA,214263,2025,incorporated-place,channels-found,565.37,alerts,https://www.riversidesheriff.org/DocumentCenter/View/7427/Nonimmigrant-Status-Notification-Report-2022-PDF,https://www.riversidesheriff.org/663/Transparency,linked-from-official-page,not-tested +162:0649270,Moreno Valley,CA,214263,2025,incorporated-place,channels-found,565.37,alerts,https://www.riversidesheriff.org/DocumentCenter/View/8053/Nonimmigrant-Status-Notification-Report-2023-PDF,https://www.riversidesheriff.org/663/Transparency,linked-from-official-page,not-tested +162:0649270,Moreno Valley,CA,214263,2025,incorporated-place,channels-found,565.37,alerts,https://www.riversidesheriff.org/Faq.aspx?QID=214,https://www.riversidesheriff.org/663/Transparency,linked-from-official-page,not-tested +162:0649670,Mountain View,CA,85438,2025,incorporated-place,channels-found,21.16,newsroom,https://www.mountainview.gov/our-city/departments/police/news/-arch-1/-fsiteid-1/-locale-en,https://www.mountainview.gov/our-city/departments/police/news/-arch-1/-fsiteid-1/-locale-en,reviewed-primary-web-source,search-readable; automation-unverified +162:0649670,Mountain View,CA,85438,2025,incorporated-place,channels-found,21.16,newsroom,https://www.mountainview.gov/our-city/departments/police/news?locale=en,https://www.mountainview.gov/our-city/departments/police/news?locale=en,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0649670,Mountain View,CA,85438,2025,incorporated-place,channels-found,21.16,department-page,https://www.mountainview.gov/our-city/departments/police?locale=en,https://www.mountainview.gov/our-city/departments/police?locale=en,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0650076,Murrieta,CA,114124,2025,incorporated-place,channels-found,593.14,department-page,https://www.murrietaca.gov/759/Police-Activity-Reports,https://www.murrietaca.gov/759/Police-Activity-Reports,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0650076,Murrieta,CA,114124,2025,incorporated-place,channels-found,593.14,newsroom,https://www.murrietaca.gov/557/Murrieta-Police-Press-Releases,https://www.murrietaca.gov/557/Murrieta-Police-Press-Releases,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0650076,Murrieta,CA,114124,2025,incorporated-place,channels-found,593.14,department-page,https://mainstreet.murrietaca.gov/1409/Police,https://mainstreet.murrietaca.gov/1409/Police,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0650258,Napa,CA,76562,2025,incorporated-place,department-found,121.39,department-page,https://www.napacounty.gov/1579/Public-Safety,https://www.napacounty.gov/1579/Public-Safety,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0650258,Napa,CA,76562,2025,incorporated-place,department-found,121.39,department-page,https://www.cityofnapa.org/472/Office-of-the-Chief-of-Police,https://www.cityofnapa.org/472/Office-of-the-Chief-of-Police,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0650258,Napa,CA,76562,2025,incorporated-place,department-found,121.39,department-page,https://www.napacounty.gov/1292/Sheriff,https://www.napacounty.gov/1292/Sheriff,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0650398,National City,CA,57807,2025,incorporated-place,channels-found,673.61,newsroom,https://www.nationalcityca.gov/government/police/press-releases,https://www.nationalcityca.gov/government/police/press-releases,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0650398,National City,CA,57807,2025,incorporated-place,channels-found,673.61,department-page,https://www.nationalcityca.gov/government/police/directory,https://www.nationalcityca.gov/government/police/directory,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0650398,National City,CA,57807,2025,incorporated-place,channels-found,673.61,department-page,https://www.nationalcityca.gov/government/police,https://www.nationalcityca.gov/government/police,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0650398,National City,CA,57807,2025,incorporated-place,channels-found,673.61,nixle,https://local.nixle.com/national-city-police-department/,https://local.nixle.com/city/ca/national-city/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0651182,Newport Beach,CA,81977,2025,incorporated-place,channels-found,545.96,department-page,https://newportbeachpolicehq.com/,https://www.newportbeachca.gov/,discovered-department-page; review-jurisdiction,public-html +162:0651182,Newport Beach,CA,81977,2025,incorporated-place,channels-found,545.96,feed-candidate,https://newportbeachpolicehq.com/feed/,https://newportbeachpolicehq.com/,linked-from-municipal-or-department-page; review-scope,public-feed-with-items +162:0651182,Newport Beach,CA,81977,2025,incorporated-place,channels-found,545.96,feed-candidate,https://newportbeachpolicehq.com/comments/feed/,https://newportbeachpolicehq.com/,linked-from-municipal-or-department-page; review-scope,public-feed-with-items +162:0651182,Newport Beach,CA,81977,2025,incorporated-place,channels-found,545.96,department-page,https://newportbeachpolicehq.com/wp-content/plugins/elementor/assets/css/widget-social-icons.min.css?ver=4.1.5,https://newportbeachpolicehq.com/,discovered-department-page; review-jurisdiction,public-html +162:0651182,Newport Beach,CA,81977,2025,incorporated-place,channels-found,545.96,newsroom,https://www.nbpd.org/what-s-new/press-releases,https://www.nbpd.org/what-s-new/press-releases,reviewed-primary-web-source,search-readable; automation-unverified +162:0652526,Norwalk,CA,97104,2025,incorporated-place,channels-found,509.23,department-page,https://www.norwalkct.gov/139/Police-Department,https://www.norwalkct.gov/139/Police-Department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0652526,Norwalk,CA,97104,2025,incorporated-place,channels-found,509.23,newsroom,https://source.www.longbeach.gov/press-release-archive/?cid=6697,https://source.www.longbeach.gov/press-release-archive/?cid=6697,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0652526,Norwalk,CA,97104,2025,incorporated-place,channels-found,509.23,newsroom,https://longbeach.gov/press-release-archive/?cid=6697,https://longbeach.gov/press-release-archive/?cid=6697,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0652582,Novato,CA,51947,2025,incorporated-place,channels-found,107.7,department-page,https://www.novato.gov/government/police-department,https://www.novato.gov/government/police-department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0652582,Novato,CA,51947,2025,incorporated-place,channels-found,107.7,department-page,https://www.novato.gov/government/police-department?locale=es,https://www.novato.gov/government/police-department?locale=es,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0652582,Novato,CA,51947,2025,incorporated-place,channels-found,107.7,department-page,https://www.novato.gov/government/police-department/crime-map,https://www.novato.gov/government/police-department/crime-map,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0652582,Novato,CA,51947,2025,incorporated-place,channels-found,107.7,nixle,https://local.nixle.com/novato-police-ca/,https://local.nixle.com/city/ca/novato/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0653000,Oakland,CA,440838,2025,incorporated-place,channels-found,63.63,department-page,https://www.oaklandca.gov/Public-Safety-Streets,https://www.oaklandca.gov/Home,official-domain-or-referral,public-html +162:0653000,Oakland,CA,440838,2025,incorporated-place,channels-found,63.63,incident-log,https://www.oaklandca.gov/Public-Safety-Streets/Report-a-Crime/Report-a-Crime-in-Person-or-Phone,https://www.oaklandca.gov/Public-Safety-Streets,linked-from-official-page,not-tested +162:0653000,Oakland,CA,440838,2025,incorporated-place,channels-found,63.63,alerts,https://www.oaklandca.gov/Public-Safety-Streets/Parking-Vehicles/Sign-Up-for-Parking-Alerts,https://www.oaklandca.gov/Public-Safety-Streets,linked-from-official-page,not-tested +162:0653000,Oakland,CA,440838,2025,incorporated-place,channels-found,63.63,newsroom,https://www.oaklandca.gov/Government/Departments/Newsroom,https://www.oaklandca.gov/Public-Safety-Streets,linked-from-official-page,not-tested +162:0653000,Oakland,CA,440838,2025,incorporated-place,channels-found,63.63,department-page,https://www.oaklandca.gov/Government/News-Updates,https://www.oaklandca.gov/Public-Safety-Streets,official-domain-or-referral,public-html +162:0653000,Oakland,CA,440838,2025,incorporated-place,channels-found,63.63,newsroom,https://www.oaklandca.gov/Government/News-Updates/News,https://www.oaklandca.gov/Government/News-Updates,linked-from-official-page,not-tested +162:0653000,Oakland,CA,440838,2025,incorporated-place,channels-found,63.63,department-page,https://www.oaklandca.gov/Public-Safety-Streets/Crime-Prevention,https://www.oaklandca.gov/Public-Safety-Streets,official-domain-or-referral,public-html +162:0653000,Oakland,CA,440838,2025,incorporated-place,channels-found,63.63,alerts,https://www.oaklandca.gov/Public-Safety-Streets/Crime-Prevention/Missing-Persons,https://www.oaklandca.gov/Public-Safety-Streets/Crime-Prevention,linked-from-official-page,not-tested +162:0653000,Oakland,CA,440838,2025,incorporated-place,channels-found,63.63,department-page,https://www.oaklandca.gov/Public-Safety-Streets/Fire,https://www.oaklandca.gov/Home,official-domain-or-referral,public-html +162:0653000,Oakland,CA,440838,2025,incorporated-place,channels-found,63.63,department-page,https://www.oaklandca.gov/Public-Safety-Streets/Police,https://www.oaklandca.gov/Home,official-domain-or-referral,public-html +162:0653000,Oakland,CA,440838,2025,incorporated-place,channels-found,63.63,alerts,https://member.everbridge.net/index/453003085612570,https://www.oaklandca.gov/Public-Safety-Streets/Police,linked-from-official-page,not-tested +162:0653000,Oakland,CA,440838,2025,incorporated-place,channels-found,63.63,newsroom,https://www.oaklandca.gov/News-Releases/OPD-Tows-60-Abandoned-and-Stolen-Vehicles,https://www.oaklandca.gov/Public-Safety-Streets/Police,linked-from-official-page,not-tested +162:0653000,Oakland,CA,440838,2025,incorporated-place,channels-found,63.63,newsroom,https://www.oaklandca.gov/News-Releases/Officer-Involved-Shooting-in-the-area-of-22nd-Ave.-and-East-28th-St,https://www.oaklandca.gov/Public-Safety-Streets/Police,linked-from-official-page,not-tested +162:0653000,Oakland,CA,440838,2025,incorporated-place,channels-found,63.63,newsroom,https://www.oaklandca.gov/News-Releases/Missing-Person-Huitzilin-Nieves-Nieto-At-Risk-Due-to-Age/OPD-Internal-Audit-Uncovers-Alleged-Employee-Fraud,https://www.oaklandca.gov/Public-Safety-Streets/Police,linked-from-official-page,not-tested +162:0653000,Oakland,CA,440838,2025,incorporated-place,channels-found,63.63,newsroom,https://www.oaklandca.gov/News-Releases/Missing-Person-Huitzilin-Nieves-Nieto-At-Risk-Due-to-Age/Missing-Person-Gheisimar-Marcano-Hernandez-At-Risk-Due-to-Age,https://www.oaklandca.gov/Public-Safety-Streets/Police,linked-from-official-page,not-tested +162:0653000,Oakland,CA,440838,2025,incorporated-place,channels-found,63.63,newsroom,https://www.oaklandca.gov/News-Releases/Missing-Person-Huitzilin-Nieves-Nieto-At-Risk-Due-to-Age/OPD-Arrests-Suspect-in-Armed-Kidnapping,https://www.oaklandca.gov/Public-Safety-Streets/Police,linked-from-official-page,not-tested +162:0653000,Oakland,CA,440838,2025,incorporated-place,channels-found,63.63,newsroom,https://www.oaklandca.gov/News-Releases?dlv_OC+CL+City+News+Listing=%28dd_OC+News+Categories%3DPolice%29,https://www.oaklandca.gov/Public-Safety-Streets/Police,linked-from-official-page,not-tested +162:0653000,Oakland,CA,440838,2025,incorporated-place,channels-found,63.63,incident-log,https://www.oaklandca.gov/Public-Safety-Streets/Police/Police-Services-Priorities/OPD-Daily-Log,https://www.oaklandca.gov/Public-Safety-Streets/Police,linked-from-official-page,not-tested +162:0653000,Oakland,CA,440838,2025,incorporated-place,channels-found,63.63,nixle,https://local.nixle.com/oakland-police-department-ca/,https://local.nixle.com/city/ca/oakland/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0653322,Oceanside,CA,170483,2025,incorporated-place,channels-found,613.85,newsroom,https://www.oceansidepolice.com/about-opd/press-releases,https://www.oceansidepolice.com/about-opd/press-releases,reviewed-primary-web-source,search-readable; automation-unverified +162:0653896,Ontario,CA,187013,2025,incorporated-place,department-found,529.7,department-page,https://www.ontarioca.gov/government/police/about-us/contact-us,https://www.ontarioca.gov/government/police/about-us/contact-us,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0653896,Ontario,CA,187013,2025,incorporated-place,department-found,529.7,department-page,https://www.ontarioca.gov/government/police,https://www.ontarioca.gov/government/police,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0653896,Ontario,CA,187013,2025,incorporated-place,department-found,529.7,department-page,https://www.ontarioca.gov/government/police/online-police-reporting,https://www.ontarioca.gov/government/police/online-police-reporting,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0653980,Orange,CA,138365,2025,incorporated-place,department-found,532.97,department-page,https://www.cityoforange.org/our-city/departments/police/public-information,https://www.cityoforange.org/our-city/departments/police/public-information,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0653980,Orange,CA,138365,2025,incorporated-place,department-found,532.97,department-page,https://www.cityoforange.org/our-city/departments/police/records-bureau,https://www.cityoforange.org/our-city/departments/police/records-bureau,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0653980,Orange,CA,138365,2025,incorporated-place,department-found,532.97,department-page,https://www.cityoforange.org/our-city/departments/police/file-an-online-police-report,https://www.cityoforange.org/our-city/departments/police/file-an-online-police-report,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0654652,Oxnard,CA,199651,2025,incorporated-place,channels-found,418.93,newsroom,https://www.oxnard.gov/police-department/pd-news,https://www.oxnard.gov/police-department/pd-news,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0654652,Oxnard,CA,199651,2025,incorporated-place,channels-found,418.93,department-page,https://www.oxnard.gov/police-department,https://www.oxnard.gov/police-department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0655184,Palm Desert,CA,53259,2025,incorporated-place,department-found,637.8,department-page,https://www.palmdesert.gov/community/public-safety,https://www.palmdesert.gov/community/public-safety,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0655156,Palmdale,CA,161845,2025,incorporated-place,channels-found,454.23,newsroom,https://www.cityofpalmdaleca.gov/m/newsflash/home/detail/1859,https://www.cityofpalmdaleca.gov/m/newsflash/home/detail/1859,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0655156,Palmdale,CA,161845,2025,incorporated-place,channels-found,454.23,department-page,https://file.lacounty.gov/lasd/cms1_154628.pdf,https://file.lacounty.gov/lasd/cms1_154628.pdf,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,department-page,https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections,curated department URL,official-domain-or-referral,public-html +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,newsroom,https://www.paloalto.gov/City-Hall/News-Press-Releases,https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections,linked-from-official-page,not-tested +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,alerts,https://www.paloalto.gov/I-Want-To/Sign-up-for-Emergency-Alerts,https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections,linked-from-official-page,not-tested +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,newsroom,https://www.paloalto.gov/Departments/Police/Public-Information-Portal/News-Releases,https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections,linked-from-official-page,not-tested +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,alerts,https://emergencymanagement.sccgov.org/AlertSCC,https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections,linked-from-official-page,not-tested +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,x,https://x.com/paloaltopolice,https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections,linked-from-official-page,not-tested +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,nixle,https://local.nixle.com/palo-alto-police-department/,https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections,linked-from-official-page,public-nixle-archive +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,instagram,https://www.instagram.com/paloaltopolice/,https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections,linked-from-official-page,not-tested +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,youtube,https://www.youtube.com/user/PaloAltoPolice,https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections,linked-from-official-page,not-tested +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,department-page,https://www.paloalto.gov/Departments/Fire/Fire-News,https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections,official-domain-or-referral,public-html +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,announcement,https://www.paloalto.gov/News-Articles/Fire-Department/Celebrate-the-Fourth-Safely-Leave-Fireworks-to-the-Professionals,https://www.paloalto.gov/Departments/Fire/Fire-News,linked-from-official-page,not-tested +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,announcement,https://www.paloalto.gov/News-Articles/Fire-Department/Regional-Partners-Advance-Vegetation-Reduction-at-Page-Mill-Road-Interstate-280-Interchange-Project,https://www.paloalto.gov/Departments/Fire/Fire-News,linked-from-official-page,not-tested +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,announcement,https://www.paloalto.gov/News-Articles/Fire-Department/Fire-Preparedness-in-Palo-Alto-Safety-Tips-for-You-Your-Pets,https://www.paloalto.gov/Departments/Fire/Fire-News,linked-from-official-page,not-tested +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,announcement,https://www.paloalto.gov/News-Articles/Fire-Department/Leave-the-Fireworks-to-the-Pros,https://www.paloalto.gov/Departments/Fire/Fire-News,linked-from-official-page,not-tested +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,announcement,https://www.paloalto.gov/News-Articles/Fire-Department/Palo-Alto-Fire-Department-Staffing-at-Fire-Station-4-Community-Update,https://www.paloalto.gov/Departments/Fire/Fire-News,linked-from-official-page,not-tested +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,announcement,https://www.paloalto.gov/News-Articles/Fire-Department/Fire-Prevention-Week-Safety-Reminders,https://www.paloalto.gov/Departments/Fire/Fire-News,linked-from-official-page,not-tested +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,announcement,https://www.paloalto.gov/News-Articles/Fire-Department/Palo-Alto-Fire-Department-Launches-Low-Cost-Ambulance-Program,https://www.paloalto.gov/Departments/Fire/Fire-News,linked-from-official-page,not-tested +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,announcement,https://www.paloalto.gov/News-Articles/Fire-Department/Flags-Flown-at-Half-Staff-in-Honor-of-Stockton-Fire-Captain,https://www.paloalto.gov/Departments/Fire/Fire-News,linked-from-official-page,not-tested +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,announcement,https://www.paloalto.gov/News-Articles/Fire-Department/Rebuilt-Fire-Station-3-Opens-its-Doors-to-Serve-the-Community,https://www.paloalto.gov/Departments/Fire/Fire-News,linked-from-official-page,not-tested +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,announcement,https://www.paloalto.gov/News-Articles/Fire-Department/Fire-Station-3-Open-House-Postponed,https://www.paloalto.gov/Departments/Fire/Fire-News,linked-from-official-page,not-tested +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,department-page,https://www.paloalto.gov/News-Articles,https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections,official-domain-or-referral,public-html +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,alerts,https://www.paloalto.gov/Departments/City-Manager/Latest-News/Hazardous-Materials-Incident-Response-Notifications,https://www.paloalto.gov/News-Articles,linked-from-official-page,not-tested +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,announcement,https://www.paloalto.gov/News-Articles/City-Manager/Flags-Flown-at-Half-Staff-September-11,https://www.paloalto.gov/News-Articles,linked-from-official-page,not-tested +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,announcement,https://www.paloalto.gov/News-Articles/City-Manager/City-Resolves-Public-Safety-Building-Construction-Dispute-and-Implements-New-Construction-Practices,https://www.paloalto.gov/News-Articles,linked-from-official-page,not-tested +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,announcement,https://www.paloalto.gov/News-Articles/City-Manager/Palo-Alto-Horizontal-Levee-Completion-Celebrated,https://www.paloalto.gov/News-Articles,linked-from-official-page,not-tested +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,announcement,https://www.paloalto.gov/News-Articles/City-Manager/Weekly-City-Manager-Updates-September-9-2026,https://www.paloalto.gov/News-Articles,linked-from-official-page,not-tested +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,announcement,https://www.paloalto.gov/News-Articles/City-Manager/Hot-Weather-Safety-September-2026,https://www.paloalto.gov/News-Articles,linked-from-official-page,not-tested +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,announcement,https://www.paloalto.gov/News-Articles/Public-Works/Sustaining-Our-Future-Blog-News,https://www.paloalto.gov/News-Articles,linked-from-official-page,not-tested +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,department-page,https://www.paloalto.gov/Departments/City-Manager/Latest-News,https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections,official-domain-or-referral,public-html +162:0655282,Palo Alto,CA,67609,2025,incorporated-place,channels-found,24.57,announcement,https://www.paloalto.gov/News-Articles/City-Manager/Weekly-City-Manager-Updates-August-24-2026,https://www.paloalto.gov/Departments/City-Manager/Latest-News,linked-from-official-page,not-tested +162:0655618,Paramount,CA,50755,2025,incorporated-place,channels-found,504.83,department-page,https://www.paramountcity.gov/government/departments/public-safety/,https://www.paramountcity.gov/government/departments/public-safety/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0655618,Paramount,CA,50755,2025,incorporated-place,channels-found,504.83,newsroom,https://longbeach.gov/police/press-releases/traffic-fatality---paramount-boulevard-and-56th-street/,https://longbeach.gov/police/press-releases/traffic-fatality---paramount-boulevard-and-56th-street/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0655618,Paramount,CA,50755,2025,incorporated-place,channels-found,504.83,incident-log,https://www.longbeach.gov/police/news/lbpd-blotter-june-19-2026/,https://www.longbeach.gov/police/news/lbpd-blotter-june-19-2026/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,department-page,https://www.cityofpasadena.net/police/,https://www.cityofpasadena.net/,official-domain-or-referral,public-html +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,feed-candidate,https://www.cityofpasadena.net/police/feed/,https://www.cityofpasadena.net/police/,linked-from-official-page,public-feed-with-items +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,x,https://x.com/pasadenapd,https://www.cityofpasadena.net/police/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,facebook,https://www.facebook.com/PasadenaPD/,https://www.cityofpasadena.net/police/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,youtube,https://www.youtube.com/user/PasadenaPoliceDept,https://www.cityofpasadena.net/police/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,incident-log,https://www.cityofpasadena.net/police/crime/report-a-crime/,https://www.cityofpasadena.net/police/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,alerts,https://www.cityofpasadena.net/police/get-alerts-from-ppd/,https://www.cityofpasadena.net/police/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,alert-directory,https://local.nixle.com/city/ca/pasadena/,https://www.cityofpasadena.net/police/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-SCU-Gun-Recovery.pdf,https://www.cityofpasadena.net/police/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2024-88313-PC-187.pdf,https://www.cityofpasadena.net/police/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/take-back-Rx-PRESS-RELEASE2-10-26-24.pdf,https://www.cityofpasadena.net/police/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,newsroom,https://www.cityofpasadena.net/police/news/,https://www.cityofpasadena.net/police/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,feed-candidate,https://www.cityofpasadena.net/police/news/feed/,https://www.cityofpasadena.net/police/news/,linked-from-official-page,public-feed-with-items +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2024-68370-SCU-Gang-Warrant.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2024-64074Suspicious-Death.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Notice-of-Public-Hearing-06-19-24.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2024-28813-Critical-Incident-Video-OIS.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Unidentified-Explosions-Arrest.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Fatal-Traffic-Crash-24-36862.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2024-21775-PC-664-187.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Sexual-Assault-24-28824.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2024-28813-OIS.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2024-18702-PC-187.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Kirk-Alexander-window-smasher-24-15197.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Assault-on-Elderly-Woman-24-11293.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Police-Imposter-Scam.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Statement-from-Pasadena-Police-Chief-Gene-Harris-1.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Copper-Wire-Theft-23-102949-12-20-23.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-96508-UPDATE-and-CHARGES-for-Homicide-at-a-Pasadena-Park.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-96508-Update-PC-187-November-20th.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-96508-PC-187.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-88584-PC-187.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-87126-Double-Fatality-Hit-Run-Traffic-Collision-UPDATE.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-87126-Double-Fatality-Hit-Run-Traffic-Accident.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-75108-PC-487a-Grand-Theft.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-75491-Shooting-PC-187-Arrest.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-59798-PC-187-Murder-Charges.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-70595-Shooting.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-69244-PC-187-DA-Filing.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-69244-PC-187.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-65028-PC-187-Update-8-10-23.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-65028-PC-187.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-59798-PC-187-UPDATE.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-59798-PC-187-002.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-52767-Shooting-Suicide.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-4th-of-July-amended-City-ordinance-safety-tips-060820-002.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-50644-Marc-Oliver-David-Arrest.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-49072-PC-664-187.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-21525-PC-311.11-PC-647j1-.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-16080-PC-288-Medina-warrant-arrest.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-16080-PC-288-Arrest-002.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2022-90986-PC-187-Arrests.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Iran-Moreno-Update-PC-187-002.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA22-78849.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-20009694-Update.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-22-73519-PC-220-Arrest.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-22-73519-PC-220.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-22-67125-PC-187.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/22004706-PC-187-Update-8-1-22-Press-Release.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-22-63631-OIS.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-22-57009-PC-187.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-22004706-PC-187.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-21000007-5-4-2022.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-April-26-2022-Community-Reinvestment-Grant.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Blessings-Theft-Robberies-Arrest-Press-Release.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-21012303-Reward-Donation.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-21012496-November-26th-Fatal-Collision.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-21012303-10K-Reward.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-November-23-2021-OIS-210012414.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-21012303.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-DEA-National-Rx-Take-Back-Campaign.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/July-4th-PC-246-21007007.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/OTS-Summer-Mobilization-Press-Release.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-21007955.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-July-15-2021-Community-Reinvestment-grant-press-release-1-clickable.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Updated-Press-Release-Villa-Parke-Homicide-20012699-Composite.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Attempt-Murder-21001567-Updated.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Parke-St-Homicide-2nd-suspect-vehicle.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-New-Details-Re-Double-Homicide-20012699.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Updated-21002680-Homicide.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Updated-Roscoes-Armed-Robbery-210011778.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-21002680-Homicide.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Attempt-Murder-21001567.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Roscoes-Armed-Robbery-210011778.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-20013708-Attempt-Murder.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,announcement,https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-20013810-Suspect-Villamil-charged-for-murder.pdf,https://www.cityofpasadena.net/police/news/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,department-page,https://www.cityofpasadena.net/event/public-safety-committee/,https://www.cityofpasadena.net/,official-domain-or-referral,public-html +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,department-page,https://www.cityofpasadena.net/social-media/,https://www.cityofpasadena.net/event/public-safety-committee/,official-domain-or-referral,public-html +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,instagram,https://www.instagram.com/pasadenapd/,https://www.cityofpasadena.net/social-media/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,youtube,http://www.youtube.com/PasadenaPoliceDept,https://www.cityofpasadena.net/social-media/,linked-from-official-page,not-tested +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,department-page,https://www.cityofpasadena.net/city-manager/pasadena-media/,https://www.cityofpasadena.net/event/public-safety-committee/,official-domain-or-referral,public-html +162:0656000,Pasadena,CA,135804,2025,incorporated-place,channels-found,485.24,department-page,https://www.cityofpasadena.net/city-services/class-or-activity/,https://www.cityofpasadena.net/event/public-safety-committee/,official-domain-or-referral,public-html +162:0656700,Perris,CA,83237,2025,incorporated-place,department-found,574.31,department-page,https://www.cityofperris.org/departments/public-safety/police,https://www.cityofperris.org/departments/public-safety/police,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0656700,Perris,CA,83237,2025,incorporated-place,department-found,574.31,department-page,https://www.cityofperris.org/departments/public-safety,https://www.cityofperris.org/departments/public-safety,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0656784,Petaluma,CA,59688,2025,incorporated-place,channels-found,126.38,nextdoor,https://nextdoor.com/agency-detail/ca/petaluma/petaluma-police-department/,https://nextdoor.com/agency-detail/ca/petaluma/petaluma-police-department/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0656784,Petaluma,CA,59688,2025,incorporated-place,channels-found,126.38,nextdoor,https://api.us.nextdoor.com/agency-detail/ca/petaluma/petaluma-police-department/,https://api.us.nextdoor.com/agency-detail/ca/petaluma/petaluma-police-department/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0656784,Petaluma,CA,59688,2025,incorporated-place,channels-found,126.38,nixle,https://local.nixle.com/petaluma-police-department/,https://local.nixle.com/city/ca/petaluma/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0656924,Pico Rivera,CA,58915,2025,incorporated-place,channels-found,502.14,newsroom,https://origin.www.longbeach.gov/police/press-releases/at-risk-missing---mcgiffert/,https://origin.www.longbeach.gov/police/press-releases/at-risk-missing---mcgiffert/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0656924,Pico Rivera,CA,58915,2025,incorporated-place,channels-found,502.14,nixle,https://local.nixle.com/lasd---pico-rivera-station-los-angeles-county-sheriff/,https://local.nixle.com/city/ca/pico-rivera/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0657456,Pittsburg,CA,77542,2025,incorporated-place,channels-found,86.17,newsroom,https://www.pittsburgca.gov/services/police/contact-police-news-events,https://www.pittsburgca.gov/services/police/contact-police-news-events,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0657456,Pittsburg,CA,77542,2025,incorporated-place,channels-found,86.17,department-page,https://www.pittsburgca.gov/services/police/online-crime-reporting,https://www.pittsburgca.gov/services/police/online-crime-reporting,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0657456,Pittsburg,CA,77542,2025,incorporated-place,channels-found,86.17,department-page,https://www.pittsburgca.gov/services/police/support-services-bureau/records-division,https://www.pittsburgca.gov/services/police/support-services-bureau/records-division,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0657526,Placentia,CA,54911,2025,incorporated-place,channels-found,525.73,department-page,https://www.placentia.org/17/Police,https://www.placentia.org/,discovered-department-page; review-jurisdiction,public-html +162:0657526,Placentia,CA,54911,2025,incorporated-place,channels-found,525.73,alerts,https://www.placentia.org/nixle,https://www.placentia.org/17/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0657526,Placentia,CA,54911,2025,incorporated-place,channels-found,525.73,alerts,https://www.placentia.org/list.aspx,https://www.placentia.org/17/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0657526,Placentia,CA,54911,2025,incorporated-place,channels-found,525.73,facebook,http://www.facebook.com/placentiapd,https://www.placentia.org/17/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0657526,Placentia,CA,54911,2025,incorporated-place,channels-found,525.73,instagram,https://www.instagram.com/placentiapd,https://www.placentia.org/17/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0657526,Placentia,CA,54911,2025,incorporated-place,channels-found,525.73,department-page,https://www.ocsheriff.gov/occrimestoppers,https://www.placentia.org/17/Police,discovered-department-page; review-jurisdiction,public-html +162:0657526,Placentia,CA,54911,2025,incorporated-place,channels-found,525.73,crime-map,https://www.crimemapping.com/,https://www.ocsheriff.gov/occrimestoppers,linked-from-municipal-or-department-page; review-scope,not-tested +162:0657526,Placentia,CA,54911,2025,incorporated-place,channels-found,525.73,department-page,https://www.placentia.org/592/Transparency,https://www.placentia.org/17/Police,discovered-department-page; review-jurisdiction,public-html +162:0657526,Placentia,CA,54911,2025,incorporated-place,channels-found,525.73,department-page,https://www.placentia.org/938/Critical-Incidents,https://www.placentia.org/17/Police,discovered-department-page; review-jurisdiction,public-html +162:0657792,Pleasanton,CA,74556,2025,incorporated-place,channels-found,47.42,department-page,https://www.cityofpleasantonca.gov/our-government/police/,https://www.cityofpleasantonca.gov/,official-domain-or-referral,public-html +162:0657792,Pleasanton,CA,74556,2025,incorporated-place,channels-found,47.42,alerts,https://www.cityofpleasantonca.gov/our-government/mayor-city-council/council-agenda-notification/,https://www.cityofpleasantonca.gov/our-government/police/,linked-from-official-page,not-tested +162:0657792,Pleasanton,CA,74556,2025,incorporated-place,channels-found,47.42,incident-log,https://www.cityofpleasantonca.gov/our-government/police/crime-mapping-blotter/,https://www.cityofpleasantonca.gov/our-government/police/,linked-from-official-page,not-tested +162:0657792,Pleasanton,CA,74556,2025,incorporated-place,channels-found,47.42,facebook,https://www.facebook.com/PleasantonPoliceCA,https://www.cityofpleasantonca.gov/our-government/police/,linked-from-official-page,not-tested +162:0657792,Pleasanton,CA,74556,2025,incorporated-place,channels-found,47.42,x,https://x.com/pleasantonpd,https://www.cityofpleasantonca.gov/our-government/police/,linked-from-official-page,not-tested +162:0657792,Pleasanton,CA,74556,2025,incorporated-place,channels-found,47.42,instagram,https://www.instagram.com/pleasantonpd/,https://www.cityofpleasantonca.gov/our-government/police/,linked-from-official-page,not-tested +162:0657792,Pleasanton,CA,74556,2025,incorporated-place,channels-found,47.42,alert-directory,https://local.nixle.com/register/,https://www.cityofpleasantonca.gov/our-government/police/,linked-from-official-page,not-tested +162:0657792,Pleasanton,CA,74556,2025,incorporated-place,channels-found,47.42,department-page,https://www.cityofpleasantonca.gov/news/,https://www.cityofpleasantonca.gov/our-government/police/,official-domain-or-referral,public-html +162:0657792,Pleasanton,CA,74556,2025,incorporated-place,channels-found,47.42,department-page,https://www.cityofpleasantonca.gov/our-government/newsletter-signup/,https://www.cityofpleasantonca.gov/our-government/police/,official-domain-or-referral,public-html +162:0657792,Pleasanton,CA,74556,2025,incorporated-place,channels-found,47.42,alerts,https://www.cityofpleasantonca.gov/our-government/community-and-economic-development/planning-commission/,https://www.cityofpleasantonca.gov/our-government/newsletter-signup/,linked-from-official-page,not-tested +162:0657792,Pleasanton,CA,74556,2025,incorporated-place,channels-found,47.42,department-page,https://www.cityofpleasantonca.gov/our-government/police/contact-us/,https://www.cityofpleasantonca.gov/,official-domain-or-referral,public-html +162:0657792,Pleasanton,CA,74556,2025,incorporated-place,channels-found,47.42,nixle,https://local.nixle.com/pleasanton-police-department/,https://local.nixle.com/city/ca/pleasanton/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0658072,Pomona,CA,147807,2025,incorporated-place,department-found,517.75,department-page,https://www.pomonaca.gov/government/departments/police-department?locale=en,https://www.pomonaca.gov/government/departments/police-department?locale=en,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0658072,Pomona,CA,147807,2025,incorporated-place,department-found,517.75,department-page,https://www.pomonaca.gov/government/departments/police-department?locale=en"=,https://www.pomonaca.gov/government/departments/police-department?locale=en"=,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0658072,Pomona,CA,147807,2025,incorporated-place,department-found,517.75,department-page,https://locator.lacounty.gov/lac/Location/3175457/city-of-pomona-police-department,https://locator.lacounty.gov/lac/Location/3175457/city-of-pomona-police-department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0658240,Porterville,CA,63088,2025,incorporated-place,channels-found,290.77,department-page,https://www.ci.porterville.ca.us/departments/police/index.php,https://www.ci.porterville.ca.us/,discovered-department-page; review-jurisdiction,public-html +162:0658240,Porterville,CA,63088,2025,incorporated-place,channels-found,290.77,alerts,https://www.ci.porterville.ca.us/departments/police/government/city_manager/iris_-_internet_resident_information_system.php,https://www.ci.porterville.ca.us/departments/police/index.php,linked-from-municipal-or-department-page; review-scope,not-tested +162:0658240,Porterville,CA,63088,2025,incorporated-place,channels-found,290.77,alerts,http://www.tularecounty.ca.gov/alerttc/,https://www.ci.porterville.ca.us/departments/police/index.php,linked-from-municipal-or-department-page; review-scope,not-tested +162:0658240,Porterville,CA,63088,2025,incorporated-place,channels-found,290.77,facebook,https://www.facebook.com/portervillepd,https://www.ci.porterville.ca.us/departments/police/index.php,linked-from-municipal-or-department-page; review-scope,not-tested +162:0658240,Porterville,CA,63088,2025,incorporated-place,channels-found,290.77,department-page,https://www.ci.porterville.ca.us/departments/police/about_us.php,https://www.ci.porterville.ca.us/,discovered-department-page; review-jurisdiction,public-html +162:0659444,Rancho Cordova,CA,87554,2025,incorporated-place,department-found,160.72,department-page,https://www.ranchocordovapd.com/,https://www.ranchocordovapd.com/,reviewed-primary-web-source,search-readable; automation-unverified +162:0659451,Rancho Cucamonga,CA,177856,2025,incorporated-place,channels-found,525.31,department-page,https://www.cityofrc.us/public-safety,https://www.cityofrc.us/,discovered-department-page; review-jurisdiction,public-html +162:0659451,Rancho Cucamonga,CA,177856,2025,incorporated-place,channels-found,525.31,department-page,https://www.cityofrc.us/RCPD,https://www.cityofrc.us/public-safety,discovered-department-page; review-jurisdiction,public-html +162:0659451,Rancho Cucamonga,CA,177856,2025,incorporated-place,channels-found,525.31,facebook,https://www.facebook.com/RanchoPD/,https://www.cityofrc.us/RCPD,linked-from-municipal-or-department-page; review-scope,not-tested +162:0659451,Rancho Cucamonga,CA,177856,2025,incorporated-place,channels-found,525.31,x,https://x.com/ranchopd,https://www.cityofrc.us/RCPD,linked-from-municipal-or-department-page; review-scope,not-tested +162:0659451,Rancho Cucamonga,CA,177856,2025,incorporated-place,channels-found,525.31,department-page,https://www.cityofrc.us/public-safety/police/pay-citation,https://www.cityofrc.us/,discovered-department-page; review-jurisdiction,public-html +162:0659451,Rancho Cucamonga,CA,177856,2025,incorporated-place,channels-found,525.31,nixle,https://local.nixle.com/sbsd---rancho-cucamonga-police-department/,https://local.nixle.com/city/ca/rancho-cucamonga/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0659920,Redding,CA,94092,2025,incorporated-place,department-found,371.73,department-page,https://files.cityofredding.gov/government/departments/police/index.php,https://files.cityofredding.gov/government/departments/police/index.php,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0659920,Redding,CA,94092,2025,incorporated-place,department-found,371.73,department-page,https://files.cityofredding.gov/Document%20Center/Departments/Police/Policies%20%26%20Reference%20Library/Policy%20Manual/General%20Operations/316_Public_Alerts.pdf,https://files.cityofredding.gov/Document%20Center/Departments/Police/Policies%20%26%20Reference%20Library/Policy%20Manual/General%20Operations/316_Public_Alerts.pdf,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0659920,Redding,CA,94092,2025,incorporated-place,department-found,371.73,department-page,https://files.cityofredding.gov/government/departments/police/crime_info/crime_statistics.php,https://files.cityofredding.gov/government/departments/police/crime_info/crime_statistics.php,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0659962,Redlands,CA,74128,2025,incorporated-place,channels-found,558.21,department-page,https://www.redlands.gov/police-appointments/,https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv,official-domain-or-referral,public-html +162:0659962,Redlands,CA,74128,2025,incorporated-place,channels-found,558.21,feed-candidate,https://www.redlands.gov/police-appointments/feed/,https://www.redlands.gov/police-appointments/,linked-from-official-page,empty-public-feed +162:0659962,Redlands,CA,74128,2025,incorporated-place,channels-found,558.21,alerts,https://www.redlands.gov/drone-notification/,https://www.redlands.gov/police-appointments/,linked-from-official-page,not-tested +162:0659962,Redlands,CA,74128,2025,incorporated-place,channels-found,558.21,newsroom,https://www.redlands.gov/newsroom/,https://www.redlands.gov/police-appointments/,linked-from-official-page,not-tested +162:0659962,Redlands,CA,74128,2025,incorporated-place,channels-found,558.21,department-page,https://www.redlands.gov/news-events/,https://www.redlands.gov/police-appointments/,official-domain-or-referral,public-html +162:0659962,Redlands,CA,74128,2025,incorporated-place,channels-found,558.21,newsroom,https://www.redlands.gov/news-events/newsroom/,https://www.redlands.gov/news-events/,linked-from-official-page,not-tested +162:0659962,Redlands,CA,74128,2025,incorporated-place,channels-found,558.21,department-page,https://www.redlands.gov/social-media/,https://www.redlands.gov/police-appointments/,official-domain-or-referral,public-html +162:0659962,Redlands,CA,74128,2025,incorporated-place,channels-found,558.21,department-page,https://www.redlands.gov/public-safety/,https://www.redlands.gov/,official-domain-or-referral,public-html +162:0659962,Redlands,CA,74128,2025,incorporated-place,channels-found,558.21,feed-candidate,https://www.redlands.gov/public-safety/feed/,https://www.redlands.gov/public-safety/,linked-from-official-page,empty-public-feed +162:0659962,Redlands,CA,74128,2025,incorporated-place,channels-found,558.21,department-page,https://www.redlands.gov/make-appointment/,https://www.redlands.gov/,official-domain-or-referral,public-html +162:0660018,Redondo Beach,CA,67281,2025,incorporated-place,department-found,495.0,department-page,https://www.redondo.org/Police%20Pictures/PD%20PDF/Transparency/RBPD%20Policy%20Manual%20September%202024.pdf,https://www.redondo.org/Police%20Pictures/PD%20PDF/Transparency/RBPD%20Policy%20Manual%20September%202024.pdf,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0660018,Redondo Beach,CA,67281,2025,incorporated-place,department-found,495.0,department-page,https://locator.lacounty.gov/lac/Location/3068962/city-of-redondo-beach-police-department,https://locator.lacounty.gov/lac/Location/3068962/city-of-redondo-beach-police-department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0660102,Redwood City,CA,82178,2025,incorporated-place,channels-found,38.56,department-page,https://www.redwoodcity.org/departments/police-department,https://www.redwoodcity.org/departments/police-department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0660102,Redwood City,CA,82178,2025,incorporated-place,channels-found,38.56,department-page,https://www.redwoodcity.org/departments/police-department/about-us/community-policing,https://www.redwoodcity.org/departments/police-department/about-us/community-policing,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0660102,Redwood City,CA,82178,2025,incorporated-place,channels-found,38.56,department-page,https://www.redwoodcity.org/departments/police-department/connect-with-us,https://www.redwoodcity.org/departments/police-department/connect-with-us,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0660102,Redwood City,CA,82178,2025,incorporated-place,channels-found,38.56,nixle,https://local.nixle.com/redwood-city-police-department/,https://local.nixle.com/city/ca/redwood-city/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0660466,Rialto,CA,106554,2025,incorporated-place,department-found,538.37,department-page,https://www.rialtoca.gov/m/directory/department?did=53,https://www.rialtoca.gov/m/directory/department?did=53,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0660620,Richmond,CA,114861,2025,incorporated-place,channels-found,86.99,department-page,https://www.richmondca.gov/82/Police-Department,https://www.richmondca.gov/,official-domain-or-referral,public-html +162:0660620,Richmond,CA,114861,2025,incorporated-place,channels-found,86.99,alerts,https://www.richmondca.gov/AlertCenter.aspx,https://www.richmondca.gov/82/Police-Department,linked-from-official-page,not-tested +162:0660620,Richmond,CA,114861,2025,incorporated-place,channels-found,86.99,alerts,https://www.richmondca.gov/m/NewsFlash/home/detail/2473,https://www.richmondca.gov/82/Police-Department,linked-from-official-page,not-tested +162:0660620,Richmond,CA,114861,2025,incorporated-place,channels-found,86.99,facebook,https://www.facebook.com/richmondpolicecali/,https://www.richmondca.gov/82/Police-Department,linked-from-official-page,not-tested +162:0660620,Richmond,CA,114861,2025,incorporated-place,channels-found,86.99,newsroom,https://www.richmondca.gov/4720/News-and-Press-Releases,https://www.richmondca.gov/82/Police-Department,linked-from-official-page,not-tested +162:0660620,Richmond,CA,114861,2025,incorporated-place,channels-found,86.99,newsroom,https://www.richmondca.gov/4693/Press-Releases,https://www.richmondca.gov/82/Police-Department,linked-from-official-page,not-tested +162:0660620,Richmond,CA,114861,2025,incorporated-place,channels-found,86.99,department-page,https://www.richmondca.gov/4689/Crime-Data,https://www.richmondca.gov/82/Police-Department,official-domain-or-referral,public-html +162:0660620,Richmond,CA,114861,2025,incorporated-place,channels-found,86.99,department-page,https://www.richmondca.gov/4582/KCRT-Media,https://www.richmondca.gov/82/Police-Department,official-domain-or-referral,public-html +162:0660620,Richmond,CA,114861,2025,incorporated-place,channels-found,86.99,alerts,https://www.richmondca.gov/CivicAlerts.aspx?AID=2373,https://www.richmondca.gov/4582/KCRT-Media,linked-from-official-page,not-tested +162:0660620,Richmond,CA,114861,2025,incorporated-place,channels-found,86.99,alerts,https://www.richmondca.gov/CivicAlerts.aspx?AID=2203,https://www.richmondca.gov/4582/KCRT-Media,linked-from-official-page,not-tested +162:0660620,Richmond,CA,114861,2025,incorporated-place,channels-found,86.99,alerts,https://www.richmondca.gov/CivicAlerts.aspx?CID=35,https://www.richmondca.gov/4582/KCRT-Media,linked-from-official-page,not-tested +162:0660620,Richmond,CA,114861,2025,incorporated-place,channels-found,86.99,alerts,https://www.richmondca.gov/List.aspx,https://www.richmondca.gov/AlertCenter.aspx,linked-from-official-page,not-tested +162:0660620,Richmond,CA,114861,2025,incorporated-place,channels-found,86.99,alerts,https://www.richmondca.gov/AlertCenter.aspx?AID=Phishing-Scam-Alert-Emails-Impersonating-29,https://www.richmondca.gov/AlertCenter.aspx,linked-from-official-page,not-tested +162:0660620,Richmond,CA,114861,2025,incorporated-place,channels-found,86.99,alerts,https://www.richmondca.gov/AlertCenter.aspx?AID=Coronavirus-Information-2,https://www.richmondca.gov/AlertCenter.aspx,linked-from-official-page,not-tested +162:0660620,Richmond,CA,114861,2025,incorporated-place,channels-found,86.99,alerts,https://www.richmondca.gov/list.aspx?Mode=Subscribe,https://www.richmondca.gov/AlertCenter.aspx,linked-from-official-page,not-tested +162:0660620,Richmond,CA,114861,2025,incorporated-place,channels-found,86.99,alerts,https://www.richmondca.gov/AlertCenter.aspx?CID=Public-Alerts-2,https://www.richmondca.gov/AlertCenter.aspx,linked-from-official-page,not-tested +162:0662000,Riverside,CA,323057,2025,incorporated-place,department-found,551.51,department-page,https://riversideca.gov/rpd/rpd/rpd/,https://riversideca.gov/rpd/rpd/rpd/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0662000,Riverside,CA,323057,2025,incorporated-place,department-found,551.51,department-page,https://www.riversideca.gov/rpd/about-contact,https://www.riversideca.gov/rpd/about-contact,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0662000,Riverside,CA,323057,2025,incorporated-place,department-found,551.51,department-page,https://riversideca.gov/Explore/2018/Explore_WinSpr_DIGITAL_Linked.pdf,https://riversideca.gov/Explore/2018/Explore_WinSpr_DIGITAL_Linked.pdf,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0662364,Rocklin,CA,76821,2025,incorporated-place,channels-found,184.13,newsroom,https://www.rocklin.ca.us/overview/pd-news-and-crime-reports,https://www.rocklin.ca.us/overview/pd-news-and-crime-reports,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0662364,Rocklin,CA,76821,2025,incorporated-place,channels-found,184.13,newsroom,https://www.rocklin.ca.us/news/police-department-news,https://www.rocklin.ca.us/news/police-department-news,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0662364,Rocklin,CA,76821,2025,incorporated-place,channels-found,184.13,department-page,https://www.rocklin.ca.us/locations-link/police-department,https://www.rocklin.ca.us/locations-link/police-department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0662938,Roseville,CA,167302,2025,incorporated-place,channels-found,178.33,department-page,https://www.roseville.ca.gov/police/index.php,https://www.roseville.ca.gov/,discovered-department-page; review-jurisdiction,public-html +162:0662938,Roseville,CA,167302,2025,incorporated-place,channels-found,178.33,alerts,https://member.everbridge.net/453003085611269/login,https://www.roseville.ca.gov/police/index.php,linked-from-municipal-or-department-page; review-scope,not-tested +162:0662938,Roseville,CA,167302,2025,incorporated-place,channels-found,178.33,alerts,https://public.govdelivery.com/accounts/CAROSEVILLE/subscriber/new,https://www.roseville.ca.gov/police/index.php,linked-from-municipal-or-department-page; review-scope,not-tested +162:0662938,Roseville,CA,167302,2025,incorporated-place,channels-found,178.33,incident-log,https://www.roseville.ca.gov/police/police/resources/crime_log_reports.php,https://www.roseville.ca.gov/police/index.php,linked-from-municipal-or-department-page; review-scope,not-tested +162:0662938,Roseville,CA,167302,2025,incorporated-place,channels-found,178.33,facebook,https://www.facebook.com/RosevilleCaliforniaPolice/,https://www.roseville.ca.gov/police/index.php,linked-from-municipal-or-department-page; review-scope,not-tested +162:0662938,Roseville,CA,167302,2025,incorporated-place,channels-found,178.33,instagram,https://www.instagram.com/company/roseville-police-department/,https://www.roseville.ca.gov/police/index.php,linked-from-municipal-or-department-page; review-scope,not-tested +162:0662938,Roseville,CA,167302,2025,incorporated-place,channels-found,178.33,x,https://x.com/rsvl_police,https://www.roseville.ca.gov/police/index.php,linked-from-municipal-or-department-page; review-scope,not-tested +162:0662938,Roseville,CA,167302,2025,incorporated-place,channels-found,178.33,department-page,https://www.roseville.ca.gov/police/animal_control/index.php,https://www.roseville.ca.gov/,discovered-department-page; review-jurisdiction,public-html +162:0664000,Sacramento,CA,536449,2025,incorporated-place,channels-found,153.01,department-page,https://www.cityofsacramento.gov/opsa,https://www.cityofsacramento.gov/,official-domain-or-referral,public-html +162:0664000,Sacramento,CA,536449,2025,incorporated-place,channels-found,153.01,newsroom,https://www.cityofsacramento.gov/mayor-council/district-1/d1-community-meetings,https://www.cityofsacramento.gov/opsa,linked-from-official-page,not-tested +162:0664000,Sacramento,CA,536449,2025,incorporated-place,channels-found,153.01,alerts,https://www.cityofsacramento.gov/fire/join-sacramento-fire/notifications,https://www.cityofsacramento.gov/opsa,linked-from-official-page,not-tested +162:0664000,Sacramento,CA,536449,2025,incorporated-place,channels-found,153.01,alerts,https://www.cityofsacramento.gov/police/police-news/public-information-office/helicopter-notifications,https://www.cityofsacramento.gov/opsa,linked-from-official-page,not-tested +162:0664000,Sacramento,CA,536449,2025,incorporated-place,channels-found,153.01,department-page,https://www.cityofsacramento.gov/ccs/esd/film-media,https://www.cityofsacramento.gov/opsa,official-domain-or-referral,public-html +162:0664224,Salinas,CA,159134,2025,incorporated-place,channels-found,67.36,department-page,https://police.salinas.gov/,https://www.salinas.gov/Home,official-domain-or-referral,public-html +162:0664224,Salinas,CA,159134,2025,incorporated-place,channels-found,67.36,feed-candidate,https://police.salinas.gov/feed/,https://police.salinas.gov/,linked-from-official-page,public-feed-with-items +162:0664224,Salinas,CA,159134,2025,incorporated-place,channels-found,67.36,feed-candidate,https://police.salinas.gov/comments/feed/,https://police.salinas.gov/,linked-from-official-page,empty-public-feed +162:0664224,Salinas,CA,159134,2025,incorporated-place,channels-found,67.36,incident-log,https://police.salinas.gov/hate-crime-reporting/,https://police.salinas.gov/,linked-from-official-page,not-tested +162:0664224,Salinas,CA,159134,2025,incorporated-place,channels-found,67.36,facebook,https://www.facebook.com/SalinasPoliceDepartment,https://police.salinas.gov/,linked-from-official-page,not-tested +162:0664224,Salinas,CA,159134,2025,incorporated-place,channels-found,67.36,instagram,https://www.instagram.com/salinaspolicedepartment/,https://police.salinas.gov/,linked-from-official-page,not-tested +162:0664224,Salinas,CA,159134,2025,incorporated-place,channels-found,67.36,x,https://x.com/salinaspd,https://police.salinas.gov/,linked-from-official-page,not-tested +162:0664224,Salinas,CA,159134,2025,incorporated-place,channels-found,67.36,department-page,https://police.salinas.gov/all-news/,https://police.salinas.gov/,official-domain-or-referral,public-html +162:0664224,Salinas,CA,159134,2025,incorporated-place,channels-found,67.36,department-page,https://www.salinas.gov/City-Hall/Boards-and-Commissions/Police-Community-Advisory-Committee,https://www.salinas.gov/Home,official-domain-or-referral,public-html +162:0664224,Salinas,CA,159134,2025,incorporated-place,channels-found,67.36,newsroom,https://www.salinas.gov/Newsroom,https://www.salinas.gov/City-Hall/Boards-and-Commissions/Police-Community-Advisory-Committee,linked-from-official-page,not-tested +162:0664224,Salinas,CA,159134,2025,incorporated-place,channels-found,67.36,newsroom,https://www.salinas.gov/Newsroom/Announcements-E-Newsletters,https://www.salinas.gov/City-Hall/Boards-and-Commissions/Police-Community-Advisory-Committee,linked-from-official-page,not-tested +162:0664224,Salinas,CA,159134,2025,incorporated-place,channels-found,67.36,newsroom,https://www.salinas.gov/Newsroom/News-Articles,https://www.salinas.gov/City-Hall/Boards-and-Commissions/Police-Community-Advisory-Committee,linked-from-official-page,not-tested +162:0664224,Salinas,CA,159134,2025,incorporated-place,channels-found,67.36,newsroom,https://www.salinas.gov/Newsroom/Public-Meetings-Agendas,https://www.salinas.gov/City-Hall/Boards-and-Commissions/Police-Community-Advisory-Committee,linked-from-official-page,not-tested +162:0664224,Salinas,CA,159134,2025,incorporated-place,channels-found,67.36,newsroom,https://www.salinas.gov/Newsroom/Press-Releases,https://www.salinas.gov/City-Hall/Boards-and-Commissions/Police-Community-Advisory-Committee,linked-from-official-page,not-tested +162:0664224,Salinas,CA,159134,2025,incorporated-place,channels-found,67.36,newsroom,https://www.salinas.gov/Newsroom/Public-Notices,https://www.salinas.gov/City-Hall/Boards-and-Commissions/Police-Community-Advisory-Committee,linked-from-official-page,not-tested +162:0664224,Salinas,CA,159134,2025,incorporated-place,channels-found,67.36,department-page,https://www.salinas.gov/City-Hall/Transparency,https://www.salinas.gov/City-Hall/Boards-and-Commissions/Police-Community-Advisory-Committee,official-domain-or-referral,public-html +162:0665000,San Bernardino,CA,222044,2025,incorporated-place,department-found,543.19,department-page,https://www.sanbernardino.gov/police,https://www.sanbernardino.gov/police,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0665000,San Bernardino,CA,222044,2025,incorporated-place,department-found,543.19,department-page,https://sanbernardino.gov/FormCenter/Police-Department-10,https://sanbernardino.gov/FormCenter/Police-Department-10,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0665000,San Bernardino,CA,222044,2025,incorporated-place,department-found,543.19,department-page,https://www.sanbernardino.gov/600/Crime-Statistics,https://www.sanbernardino.gov/600/Crime-Statistics,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0665042,San Buenaventura (Ventura),CA,109914,2025,incorporated-place,channels-found,410.25,newsroom,https://www.cityofventura.ca.gov/Blog.aspx?CID=5,https://www.cityofventura.ca.gov/Blog.aspx?CID=5,reviewed-primary-web-source,search-readable; automation-unverified +162:0665084,San Clemente,CA,62226,2025,incorporated-place,department-found,576.23,department-page,https://www.sanclemente.gov/239/Public-Safety-Services,https://www.sanclemente.gov/239/Public-Safety-Services,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0665084,San Clemente,CA,62226,2025,incorporated-place,department-found,576.23,department-page,https://www.sanclemente.gov/301/Police-Services-OCSD,https://www.sanclemente.gov/301/Police-Services-OCSD,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0665084,San Clemente,CA,62226,2025,incorporated-place,department-found,576.23,department-page,https://ocsheriff.gov/patrol-areas/san-clemente,https://ocsheriff.gov/patrol-areas/san-clemente,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0666000,San Diego,CA,1406106,2025,incorporated-place,channels-found,658.21,crime-map,https://www.crimemapping.com/,https://www.sandiego.gov/,linked-from-official-page,not-tested +162:0666000,San Diego,CA,1406106,2025,incorporated-place,channels-found,658.21,department-page,https://www.sandiego.gov/police,https://www.sandiego.gov/,official-domain-or-referral,public-html +162:0666000,San Diego,CA,1406106,2025,incorporated-place,channels-found,658.21,alerts,https://www.sandiego.gov/oes/informed,https://www.sandiego.gov/police,linked-from-official-page,not-tested +162:0666000,San Diego,CA,1406106,2025,incorporated-place,channels-found,658.21,newsroom,https://www.sandiego.gov/police/news-center,https://www.sandiego.gov/police,linked-from-official-page,not-tested +162:0666000,San Diego,CA,1406106,2025,incorporated-place,channels-found,658.21,facebook,https://facebook.com/sandiegopolicedepartment,https://www.sandiego.gov/police,linked-from-official-page,not-tested +162:0666000,San Diego,CA,1406106,2025,incorporated-place,channels-found,658.21,x,https://x.com/sandiegopd,https://www.sandiego.gov/police,linked-from-official-page,not-tested +162:0666000,San Diego,CA,1406106,2025,incorporated-place,channels-found,658.21,youtube,https://www.youtube.com/c/SanDiegoPoliceDepartment,https://www.sandiego.gov/police,linked-from-official-page,not-tested +162:0666000,San Diego,CA,1406106,2025,incorporated-place,channels-found,658.21,instagram,https://instagram.com/sandiegopd,https://www.sandiego.gov/police,linked-from-official-page,not-tested +162:0666000,San Diego,CA,1406106,2025,incorporated-place,channels-found,658.21,nextdoor,https://nextdoor.com/agency-detail/ca/san-diego/san-diego-police-department/,https://www.sandiego.gov/police,linked-from-official-page,not-tested +162:0666000,San Diego,CA,1406106,2025,incorporated-place,channels-found,658.21,newsroom,https://www.sandiego.gov/police/news-center/news-releases,https://www.sandiego.gov/police,linked-from-official-page,not-tested +162:0666000,San Diego,CA,1406106,2025,incorporated-place,channels-found,658.21,department-page,https://www.sandiego.gov/connect,https://www.sandiego.gov/police,official-domain-or-referral,public-html +162:0666000,San Diego,CA,1406106,2025,incorporated-place,channels-found,658.21,newsroom,https://www.sandiego.gov/police/news-center/cold-cases,https://www.sandiego.gov/police/news-center,linked-from-official-page,not-tested +162:0666000,San Diego,CA,1406106,2025,incorporated-place,channels-found,658.21,newsroom,https://www.sandiego.gov/police/news-center/public-records-act-request,https://www.sandiego.gov/police/news-center,linked-from-official-page,not-tested +162:0666000,San Diego,CA,1406106,2025,incorporated-place,channels-found,658.21,department-page,https://www.sandiego.gov/public-safety,https://www.sandiego.gov/,official-domain-or-referral,public-html +162:0666000,San Diego,CA,1406106,2025,incorporated-place,channels-found,658.21,alerts,https://www.sandiego.gov/ohs/emergencynotification,https://www.sandiego.gov/public-safety,linked-from-official-page,not-tested +162:0666000,San Diego,CA,1406106,2025,incorporated-place,channels-found,658.21,alerts,http://www.readysandiego.org/alertsandiego/,https://www.sandiego.gov/public-safety,linked-from-official-page,not-tested +162:0667000,San Francisco,CA,826079,2025,incorporated-place,department-found,110.16,department-page,https://www.ssfca.gov/Departments/Police-Department/Divisions/Services,https://www.ssfca.gov/Departments/Police-Department/Divisions/Services,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0667000,San Francisco,CA,826079,2025,incorporated-place,department-found,110.16,department-page,https://media.api.sf.gov/documents/PoliceCommission101624-_Commission_Crime_Trends_Notes_10.16.24.pdf,https://media.api.sf.gov/documents/PoliceCommission101624-_Commission_Crime_Trends_Notes_10.16.24.pdf,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0667000,San Francisco,CA,826079,2025,incorporated-place,department-found,110.16,department-page,https://media.api.sf.gov/documents/Commission_Crime_Trends_Notes_09.11.24.pdf,https://media.api.sf.gov/documents/Commission_Crime_Trends_Notes_09.11.24.pdf,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0667112,San Jacinto,CA,56014,2025,incorporated-place,channels-found,589.02,department-page,https://www.sanjacintoca.gov/city_departments/public-safety,https://www.sanjacintoca.gov/,official-domain-or-referral,public-html +162:0667112,San Jacinto,CA,56014,2025,incorporated-place,channels-found,589.02,newsroom,https://www.sanjacintoca.gov/community/press_releases,https://www.sanjacintoca.gov/city_departments/public-safety,linked-from-official-page,not-tested +162:0667112,San Jacinto,CA,56014,2025,incorporated-place,channels-found,589.02,department-page,https://www.sanjacintoca.gov/city_departments/city-managers-office/social_media,https://www.sanjacintoca.gov/city_departments/public-safety,official-domain-or-referral,public-html +162:0667112,San Jacinto,CA,56014,2025,incorporated-place,channels-found,589.02,department-page,https://www.sanjacintoca.gov/city_departments/public-safety/police-department,https://www.sanjacintoca.gov/,official-domain-or-referral,public-html +162:0668000,San Jose,CA,989814,2025,incorporated-place,channels-found,12.75,newsroom,https://www.sjpd.org/about-us/inside-sjpd/press-releases,https://www.sjpd.org/about-us/organization/office-of-the-chief-of-police/media-relations-pio,reviewed-official-page,search-readable; direct-http-403 +162:0668000,San Jose,CA,989814,2025,incorporated-place,channels-found,12.75,x,https://x.com/sjpd_pio,https://info.sjpd.org/records/pc-13650_library/Unit%20Guidelines/Media%20Relations%20Unit%20Guidelines%20UPDATE%201-4-2024_Redacted.pdf,official-department-publication,not-tested +162:0668084,San Leandro,CA,85353,2025,incorporated-place,channels-found,54.71,department-page,https://www.sanleandro.org/police,https://www.sanleandro.org/police,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0668084,San Leandro,CA,85353,2025,incorporated-place,channels-found,54.71,department-page,https://www.sanleandro.org/448/Crime-Stats,https://www.sanleandro.org/448/Crime-Stats,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0668084,San Leandro,CA,85353,2025,incorporated-place,channels-found,54.71,department-page,https://www.sanleandro.org/449/Crime-Stats,https://www.sanleandro.org/449/Crime-Stats,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0668084,San Leandro,CA,85353,2025,incorporated-place,channels-found,54.71,nixle,https://local.nixle.com/san-leandro-police-department/,https://local.nixle.com/city/ca/san-leandro/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0668154,San Luis Obispo,CA,50636,2025,incorporated-place,department-found,247.77,department-page,https://www.slocounty.ca.gov/departments/sheriff-coroner/public-information,https://www.slocounty.ca.gov/departments/sheriff-coroner/public-information,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0668154,San Luis Obispo,CA,50636,2025,incorporated-place,department-found,247.77,department-page,https://www.slocounty.ca.gov/departments/sheriff-coroner/public-information/services,https://www.slocounty.ca.gov/departments/sheriff-coroner/public-information/services,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0668196,San Marcos,CA,94908,2025,incorporated-place,channels-found,629.95,department-page,https://www.sanmarcosca.gov/Resident-Services/Stay-Safe/Sheriff,https://www.sanmarcosca.gov/Home,official-domain-or-referral,public-html +162:0668196,San Marcos,CA,94908,2025,incorporated-place,channels-found,629.95,alerts,https://www.sanmarcosca.gov/Resident-Services/Road-Construction,https://www.sanmarcosca.gov/Resident-Services/Stay-Safe/Sheriff,linked-from-official-page,not-tested +162:0668196,San Marcos,CA,94908,2025,incorporated-place,channels-found,629.95,incident-log,https://sanmarcosca.prelive.opencities.com/city/Resident-Services/Stay-Safe/Sheriff?transfer=58b85bbe-e588-4e25-a04e-b6a57a46cadc,https://www.sanmarcosca.gov/Resident-Services/Stay-Safe/Sheriff,linked-from-official-page,not-tested +162:0668196,San Marcos,CA,94908,2025,incorporated-place,channels-found,629.95,alerts,https://www.sdsheriff.gov/community/hi-lo,https://www.sanmarcosca.gov/Resident-Services/Stay-Safe/Sheriff,linked-from-official-page,not-tested +162:0668252,San Mateo,CA,103337,2025,incorporated-place,channels-found,47.93,department-page,https://www.cityofsanmateo.org/3639/Public-Safety-Information-Services,https://www.cityofsanmateo.org/,discovered-department-page; review-jurisdiction,public-html +162:0668252,San Mateo,CA,103337,2025,incorporated-place,channels-found,47.93,incident-log,https://www.cityofsanmateo.org/1183/Report-a-Crime-Online,https://www.cityofsanmateo.org/3639/Public-Safety-Information-Services,linked-from-municipal-or-department-page; review-scope,not-tested +162:0668252,San Mateo,CA,103337,2025,incorporated-place,channels-found,47.93,newsroom,https://www.cityofsanmateo.org/4086,https://www.cityofsanmateo.org/3639/Public-Safety-Information-Services,linked-from-municipal-or-department-page; review-scope,not-tested +162:0668252,San Mateo,CA,103337,2025,incorporated-place,channels-found,47.93,department-page,https://www.cityofsanmateo.org/2729/Social-Media-Mobile-Apps,https://www.cityofsanmateo.org/3639/Public-Safety-Information-Services,discovered-department-page; review-jurisdiction,public-html +162:0668252,San Mateo,CA,103337,2025,incorporated-place,channels-found,47.93,x,https://x.com/sanmateopd,https://www.cityofsanmateo.org/2729/Social-Media-Mobile-Apps,linked-from-municipal-or-department-page; review-scope,not-tested +162:0668252,San Mateo,CA,103337,2025,incorporated-place,channels-found,47.93,facebook,https://www.facebook.com/CityofSanMateoPolice,https://www.cityofsanmateo.org/2729/Social-Media-Mobile-Apps,linked-from-municipal-or-department-page; review-scope,not-tested +162:0668252,San Mateo,CA,103337,2025,incorporated-place,channels-found,47.93,instagram,https://www.instagram.com/sanmateopd/,https://www.cityofsanmateo.org/2729/Social-Media-Mobile-Apps,linked-from-municipal-or-department-page; review-scope,not-tested +162:0668252,San Mateo,CA,103337,2025,incorporated-place,channels-found,47.93,nixle,https://local.nixle.com/san-mateo-ca-police-department/,https://www.cityofsanmateo.org/2729/Social-Media-Mobile-Apps,linked-from-municipal-or-department-page; review-scope,public-nixle-archive +162:0668252,San Mateo,CA,103337,2025,incorporated-place,channels-found,47.93,alerts,https://hsd.smcsheriff.com/smcalert,https://www.cityofsanmateo.org/2729/Social-Media-Mobile-Apps,linked-from-municipal-or-department-page; review-scope,not-tested +162:0668252,San Mateo,CA,103337,2025,incorporated-place,channels-found,47.93,newsroom,https://www.cityofsanmateo.org/4086/Newsroom,https://www.cityofsanmateo.org/2729/Social-Media-Mobile-Apps,linked-from-municipal-or-department-page; review-scope,not-tested +162:0668252,San Mateo,CA,103337,2025,incorporated-place,channels-found,47.93,alerts,https://www.cityofsanmateo.org/4707/Email-Alerts-News,https://www.cityofsanmateo.org/2729/Social-Media-Mobile-Apps,linked-from-municipal-or-department-page; review-scope,not-tested +162:0668252,San Mateo,CA,103337,2025,incorporated-place,channels-found,47.93,alerts,https://www.cityofsanmateo.org/CivicAlerts.aspx?CID=1%2C19,https://www.cityofsanmateo.org/4086/Newsroom,linked-from-municipal-or-department-page; review-scope,not-tested +162:0668252,San Mateo,CA,103337,2025,incorporated-place,channels-found,47.93,alerts,https://www.cityofsanmateo.org/CivicAlerts.aspx?AID=1921,https://www.cityofsanmateo.org/4086/Newsroom,linked-from-municipal-or-department-page; review-scope,not-tested +162:0668252,San Mateo,CA,103337,2025,incorporated-place,channels-found,47.93,department-page,https://www.cityofsanmateo.org/273/Police,https://www.cityofsanmateo.org/3639/Public-Safety-Information-Services,discovered-department-page; review-jurisdiction,public-html +162:0668252,San Mateo,CA,103337,2025,incorporated-place,channels-found,47.93,alerts,https://www.cityofsanmateo.org/CivicAlerts.aspx?CID=10,https://www.cityofsanmateo.org/273/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0668252,San Mateo,CA,103337,2025,incorporated-place,channels-found,47.93,newsroom,https://www.cityofsanmateo.org/4029/Press-Releases,https://www.cityofsanmateo.org/273/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0668364,San Rafael,CA,59410,2025,incorporated-place,channels-found,95.89,department-page,https://www.cityofsanrafael.org/event/spanish-community-police-academy-2026-09-16/,https://www.cityofsanrafael.org/,discovered-department-page; review-jurisdiction,public-html +162:0668364,San Rafael,CA,59410,2025,incorporated-place,channels-found,95.89,department-page,https://www.cityofsanrafael.org/news/,https://www.cityofsanrafael.org/event/spanish-community-police-academy-2026-09-16/,discovered-department-page; review-jurisdiction,public-html +162:0668364,San Rafael,CA,59410,2025,incorporated-place,channels-found,95.89,alerts,https://www.cityofsanrafael.org/subscribe/,https://www.cityofsanrafael.org/news/,linked-from-municipal-or-department-page; review-scope,not-tested +162:0668364,San Rafael,CA,59410,2025,incorporated-place,channels-found,95.89,alerts,https://www.cityofsanrafael.org/9-14-temporary-road-closure-notification-k-st/,https://www.cityofsanrafael.org/news/,linked-from-municipal-or-department-page; review-scope,not-tested +162:0668364,San Rafael,CA,59410,2025,incorporated-place,channels-found,95.89,alerts,https://www.cityofsanrafael.org/9-14-temporary-road-closure-notification-bret-harte-rd/,https://www.cityofsanrafael.org/news/,linked-from-municipal-or-department-page; review-scope,not-tested +162:0668364,San Rafael,CA,59410,2025,incorporated-place,channels-found,95.89,alerts,https://www.cityofsanrafael.org/9-10-9-11-night-work-notification-930-irwin-st/,https://www.cityofsanrafael.org/news/,linked-from-municipal-or-department-page; review-scope,not-tested +162:0668364,San Rafael,CA,59410,2025,incorporated-place,channels-found,95.89,department-page,https://www.cityofsanrafael.org/city-social-media-accounts/,https://www.cityofsanrafael.org/event/spanish-community-police-academy-2026-09-16/,discovered-department-page; review-jurisdiction,public-html +162:0668364,San Rafael,CA,59410,2025,incorporated-place,channels-found,95.89,facebook,https://www.facebook.com/sanrafaelpolice/,https://www.cityofsanrafael.org/city-social-media-accounts/,linked-from-municipal-or-department-page; review-scope,not-tested +162:0668364,San Rafael,CA,59410,2025,incorporated-place,channels-found,95.89,instagram,https://www.instagram.com/sanrafaelpolice/,https://www.cityofsanrafael.org/city-social-media-accounts/,linked-from-municipal-or-department-page; review-scope,not-tested +162:0668364,San Rafael,CA,59410,2025,incorporated-place,channels-found,95.89,x,https://x.com/sanrafaelpolice,https://www.cityofsanrafael.org/city-social-media-accounts/,linked-from-municipal-or-department-page; review-scope,not-tested +162:0668364,San Rafael,CA,59410,2025,incorporated-place,channels-found,95.89,department-page,https://www.cityofsanrafael.org/wp-content/plugins/elasticpress/dist/css/general-styles.css?ver=66295efe92a630617c00,https://www.cityofsanrafael.org/event/spanish-community-police-academy-2026-09-16/,discovered-department-page; review-jurisdiction,public-html +162:0668364,San Rafael,CA,59410,2025,incorporated-place,channels-found,95.89,nixle,https://local.nixle.com/san-rafael-police-department/,https://local.nixle.com/city/ca/san-rafael/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0668378,San Ramon,CA,86209,2025,incorporated-place,channels-found,58.02,department-page,https://www.sanramon.ca.gov/cms/one.aspx?pageId=12572486,https://www.sanramon.ca.gov/,discovered-department-page; review-jurisdiction,public-html +162:0668378,San Ramon,CA,86209,2025,incorporated-place,channels-found,58.02,alerts,https://www.sanramon.ca.gov/residents/subscribe_to_e_san_ramon_notifications,https://www.sanramon.ca.gov/cms/one.aspx?pageId=12572486,linked-from-municipal-or-department-page; review-scope,not-tested +162:0668378,San Ramon,CA,86209,2025,incorporated-place,channels-found,58.02,alerts,https://www.sanramon.ca.gov/how_do_i_/sign_up/request_for_proposal_enotification,https://www.sanramon.ca.gov/cms/one.aspx?pageId=12572486,linked-from-municipal-or-department-page; review-scope,not-tested +162:0668378,San Ramon,CA,86209,2025,incorporated-place,channels-found,58.02,newsroom,https://www.sanramon.ca.gov/cms/One.aspx?portalId=10826130&pageId=14395745,https://www.sanramon.ca.gov/cms/one.aspx?pageId=12572486,linked-from-municipal-or-department-page; review-scope,not-tested +162:0668378,San Ramon,CA,86209,2025,incorporated-place,channels-found,58.02,feed-directory,https://www.sanramon.ca.gov/syndication/rss.aspx?serverid=10826046&userid=5&feed=datasummary&key=zmHJsZ9W%2BbSSymY3hyV0K%2Fpp%2BR0ptNv45vyp429pBlBG81Q7hKAtXUdanDTE4f1FusnAF92Ovywxy7YgQGp8id3x23o%3D&target_object_id=12572486&portal_id=10826130&v=2.0&item_name=portlet_xml_title&item_description=portlet_xml_summary&item_pubdate=portlet_last_modified&max_items=8,https://www.sanramon.ca.gov/cms/one.aspx?pageId=12572486,linked-from-municipal-or-department-page; review-scope,not-tested +162:0668378,San Ramon,CA,86209,2025,incorporated-place,channels-found,58.02,newsroom,https://www.sanramon.ca.gov/our_city/departments_and_divisions/police/police_news/press_releases,https://www.sanramon.ca.gov/cms/one.aspx?pageId=12572486,linked-from-municipal-or-department-page; review-scope,not-tested +162:0668378,San Ramon,CA,86209,2025,incorporated-place,channels-found,58.02,department-page,https://www.sanramon.ca.gov/our_city/departments_and_divisions/city_manager/economic_development,https://www.sanramon.ca.gov/cms/one.aspx?pageId=12572486,discovered-department-page; review-jurisdiction,public-html +162:0668378,San Ramon,CA,86209,2025,incorporated-place,channels-found,58.02,department-page,https://www.sanramon.ca.gov/news/what_s_new,https://www.sanramon.ca.gov/cms/one.aspx?pageId=12572486,discovered-department-page; review-jurisdiction,public-html +162:0668378,San Ramon,CA,86209,2025,incorporated-place,channels-found,58.02,feed-directory,https://www.sanramon.ca.gov/syndication/rss.aspx?serverid=10826046&userid=5&feed=datasummary&key=mJHzaXPT43rmpN8mBpjuv%2FqDC%2BX77EO2djhLKY9DJbXOd2imQJYa9jkxBfbNtbfQZLAzot0N4WRLOwlF%2FezhWA3m38M%3D&target_object_id=10826141&portal_id=10826130&v=2.0&item_name=portlet_xml_title&item_description=portlet_xml_summary&item_pubdate=portlet_publish_date&max_items=16,https://www.sanramon.ca.gov/news/what_s_new,linked-from-municipal-or-department-page; review-scope,not-tested +162:0668378,San Ramon,CA,86209,2025,incorporated-place,channels-found,58.02,department-page,https://www.sanramon.ca.gov/how_do_i_/submit/police_report,https://www.sanramon.ca.gov/,discovered-department-page; review-jurisdiction,public-html +162:0669000,Santa Ana,CA,315586,2025,incorporated-place,channels-found,535.78,department-page,https://santa-ana.gov/e-police-reporting/,https://santa-ana.gov/,official-domain-or-referral,public-html +162:0669000,Santa Ana,CA,315586,2025,incorporated-place,channels-found,535.78,incident-log,https://santa-ana.gov/training-bulletins/,https://santa-ana.gov/e-police-reporting/,linked-from-official-page,not-tested +162:0669000,Santa Ana,CA,315586,2025,incorporated-place,channels-found,535.78,incident-log,https://santa-ana.gov/uniform-crime-reporting-statistics/,https://santa-ana.gov/e-police-reporting/,linked-from-official-page,not-tested +162:0669000,Santa Ana,CA,315586,2025,incorporated-place,channels-found,535.78,incident-log,https://santa-ana.gov/hate-crime-reports/,https://santa-ana.gov/e-police-reporting/,linked-from-official-page,not-tested +162:0669000,Santa Ana,CA,315586,2025,incorporated-place,channels-found,535.78,department-page,https://santa-ana.gov/news/,https://santa-ana.gov/e-police-reporting/,official-domain-or-referral,public-html +162:0669000,Santa Ana,CA,315586,2025,incorporated-place,channels-found,535.78,alerts,https://santa-ana.gov/connect-with-us/,https://santa-ana.gov/news/,linked-from-official-page,not-tested +162:0669000,Santa Ana,CA,315586,2025,incorporated-place,channels-found,535.78,department-page,https://santa-ana.gov/social-media/,https://santa-ana.gov/e-police-reporting/,official-domain-or-referral,public-html +162:0669000,Santa Ana,CA,315586,2025,incorporated-place,channels-found,535.78,department-page,https://santa-ana.gov/police-open-government-and-transparency-initiative/,https://santa-ana.gov/e-police-reporting/,official-domain-or-referral,public-html +162:0669000,Santa Ana,CA,315586,2025,incorporated-place,channels-found,535.78,nixle,https://local.nixle.com/santa-ana-police-department/,https://local.nixle.com/city/ca/santa-ana/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0669070,Santa Barbara,CA,86422,2025,incorporated-place,channels-found,374.27,department-page,https://santabarbaraca.gov/government/departments/santa-barbara-police-department,https://santabarbaraca.gov/,official-domain-or-referral,public-html +162:0669070,Santa Barbara,CA,86422,2025,incorporated-place,channels-found,374.27,alerts,https://www.readysbc.org/,https://santabarbaraca.gov/government/departments/santa-barbara-police-department,linked-from-official-page,not-tested +162:0669070,Santa Barbara,CA,86422,2025,incorporated-place,channels-found,374.27,department-page,https://santabarbaraca.gov/services/sb-connect,https://santabarbaraca.gov/government/departments/santa-barbara-police-department,official-domain-or-referral,public-html +162:0669070,Santa Barbara,CA,86422,2025,incorporated-place,channels-found,374.27,newsroom,https://santabarbaraca.gov/press-releases/introducing-sb-connect-city-just-click-away-new-app-eng/spa,https://santabarbaraca.gov/services/sb-connect,linked-from-official-page,not-tested +162:0669070,Santa Barbara,CA,86422,2025,incorporated-place,channels-found,374.27,department-page,https://santabarbaraca.gov/government/city-hall/news,https://santabarbaraca.gov/government/departments/santa-barbara-police-department,official-domain-or-referral,public-html +162:0669070,Santa Barbara,CA,86422,2025,incorporated-place,channels-found,374.27,newsroom,https://santabarbaraca.gov/government/city-hall/news/media-releases,https://santabarbaraca.gov/government/city-hall/news,linked-from-official-page,not-tested +162:0669070,Santa Barbara,CA,86422,2025,incorporated-place,channels-found,374.27,nixle,https://local.nixle.com/santa-barbara-police-department/,https://local.nixle.com/city/ca/santa-barbara/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0669084,Santa Clara,CA,133446,2025,incorporated-place,channels-found,13.65,incident-log,https://www.santaclaraca.gov/our-city/departments-g-z/police-department/crime/arrest-log,https://www.santaclaraca.gov/our-city/departments-g-z/police-department/crime/arrest-log,reviewed-primary-web-source,search-readable; automation-unverified +162:0669084,Santa Clara,CA,133446,2025,incorporated-place,channels-found,13.65,x,https://x.com/santaclarapd,https://www.santaclaraca.gov/home/showpublisheddocument/88189/639080556114870000,official-department-reference,not-tested +162:0669084,Santa Clara,CA,133446,2025,incorporated-place,channels-found,13.65,department-page,https://www.santaclaraca.gov/our-city/departments-g-z/police-department,https://www.santaclaraca.gov/our-city/departments-g-z/police-department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0669084,Santa Clara,CA,133446,2025,incorporated-place,channels-found,13.65,department-page,https://www.santaclaraca.gov/Home/Components/RFP/RFP/1687/,https://www.santaclaraca.gov/Home/Components/RFP/RFP/1687/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0669084,Santa Clara,CA,133446,2025,incorporated-place,channels-found,13.65,nixle,https://local.nixle.com/santa-clara-police-department/,https://local.nixle.com/city/ca/santa-clara/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0669088,Santa Clarita,CA,228430,2025,incorporated-place,department-found,441.63,department-page,https://santaclarita.gov/blog/2025/09/20/new-virtual-deputy-services-enhances-public-safety-in-santa-clarita/,https://santaclarita.gov/blog/2025/09/20/new-virtual-deputy-services-enhances-public-safety-in-santa-clarita/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0669088,Santa Clarita,CA,228430,2025,incorporated-place,department-found,441.63,department-page,https://santaclarita.gov/blog/2025/08/14/city-of-santa-clarita-announces-brandon-barclay-as-new-chief-of-police/,https://santaclarita.gov/blog/2025/08/14/city-of-santa-clarita-announces-brandon-barclay-as-new-chief-of-police/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0669112,Santa Cruz,CA,61797,2025,incorporated-place,channels-found,31.03,department-page,https://www.santacruzca.gov/Government/City-Departments/Police,https://www.santacruzca.gov/Home,official-domain-or-referral,public-html +162:0669112,Santa Cruz,CA,61797,2025,incorporated-place,channels-found,31.03,newsroom,https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases,https://www.santacruzca.gov/Government/City-Departments/Police,linked-from-official-page,not-tested +162:0669112,Santa Cruz,CA,61797,2025,incorporated-place,channels-found,31.03,newsroom,https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases/City-Managers-Updates,https://www.santacruzca.gov/Government/City-Departments/Police,linked-from-official-page,not-tested +162:0669112,Santa Cruz,CA,61797,2025,incorporated-place,channels-found,31.03,alerts,https://www.santacruzca.gov/Government/City-Departments/Police/News-Alerts,https://www.santacruzca.gov/Government/City-Departments/Police,linked-from-official-page,not-tested +162:0669112,Santa Cruz,CA,61797,2025,incorporated-place,channels-found,31.03,alerts,https://carealert.santacruzcountyca.gov/,https://www.santacruzca.gov/Government/City-Departments/Police,linked-from-official-page,not-tested +162:0669112,Santa Cruz,CA,61797,2025,incorporated-place,channels-found,31.03,newsroom,https://www.santacruzca.gov/Government/City-Departments/Police/News-Alerts/SCPD-Press-Releases,https://www.santacruzca.gov/Government/City-Departments/Police,linked-from-official-page,not-tested +162:0669112,Santa Cruz,CA,61797,2025,incorporated-place,channels-found,31.03,alerts,https://www.santacruzca.gov/Government/City-Departments/Police/News-Alerts/Arrest-and-Activity-Log,https://www.santacruzca.gov/Government/City-Departments/Police,linked-from-official-page,not-tested +162:0669112,Santa Cruz,CA,61797,2025,incorporated-place,channels-found,31.03,newsroom,https://www.santacruzca.gov/City-News-Press-Releases/New-page-17,https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases,linked-from-official-page,not-tested +162:0669112,Santa Cruz,CA,61797,2025,incorporated-place,channels-found,31.03,newsroom,https://www.santacruzca.gov/City-News-Press-Releases/Poster-Contest-2026,https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases,linked-from-official-page,not-tested +162:0669112,Santa Cruz,CA,61797,2025,incorporated-place,channels-found,31.03,newsroom,https://www.santacruzca.gov/City-News-Press-Releases/SLR-Maintenance-2026,https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases,linked-from-official-page,not-tested +162:0669112,Santa Cruz,CA,61797,2025,incorporated-place,channels-found,31.03,newsroom,https://www.santacruzca.gov/City-News-Press-Releases/Seabright-Neighborhood-to-Host-Summers-End-Block-Party-on-Murray-Street-September-6,https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases,linked-from-official-page,not-tested +162:0669112,Santa Cruz,CA,61797,2025,incorporated-place,channels-found,31.03,newsroom,https://www.santacruzca.gov/City-News-Press-Releases/Race-the-Flame,https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases,linked-from-official-page,not-tested +162:0669112,Santa Cruz,CA,61797,2025,incorporated-place,channels-found,31.03,newsroom,https://www.santacruzca.gov/City-News-Press-Releases/New-page-16,https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases,linked-from-official-page,not-tested +162:0669112,Santa Cruz,CA,61797,2025,incorporated-place,channels-found,31.03,newsroom,https://www.santacruzca.gov/City-News-Press-Releases/New-page-15,https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases,linked-from-official-page,not-tested +162:0669112,Santa Cruz,CA,61797,2025,incorporated-place,channels-found,31.03,newsroom,https://www.santacruzca.gov/City-News-Press-Releases/New-page-14,https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases,linked-from-official-page,not-tested +162:0669112,Santa Cruz,CA,61797,2025,incorporated-place,channels-found,31.03,newsroom,https://www.santacruzca.gov/City-News-Press-Releases/Design-Guidelines-–-Public-Input-Survey,https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases,linked-from-official-page,not-tested +162:0669112,Santa Cruz,CA,61797,2025,incorporated-place,channels-found,31.03,newsroom,https://www.santacruzca.gov/City-News-Press-Releases/City-of-Santa-Cruz-Youth-Liaison-Application-2627,https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases,linked-from-official-page,not-tested +162:0669112,Santa Cruz,CA,61797,2025,incorporated-place,channels-found,31.03,newsroom,https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases/City-of-Santa-Cruz-Offers-Free-Self-Defense-Classes-Through-Voucher-Program,https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases,linked-from-official-page,not-tested +162:0669112,Santa Cruz,CA,61797,2025,incorporated-place,channels-found,31.03,alerts,https://www.santacruzca.gov/Government/City-Departments/Police/News-Alerts/Social-Media-Connections,https://www.santacruzca.gov/Government/City-Departments/Police/News-Alerts,linked-from-official-page,not-tested +162:0669112,Santa Cruz,CA,61797,2025,incorporated-place,channels-found,31.03,alerts,https://www.santacruzca.gov/Government/City-Departments/Police/News-Alerts/Social-Media-Terms-of-Use,https://www.santacruzca.gov/Government/City-Departments/Police/News-Alerts,linked-from-official-page,not-tested +162:0669112,Santa Cruz,CA,61797,2025,incorporated-place,channels-found,31.03,alerts,https://cruzaware.genasys.com/portal/en,https://www.santacruzca.gov/Government/City-Departments/Police/News-Alerts,linked-from-official-page,not-tested +162:0669112,Santa Cruz,CA,61797,2025,incorporated-place,channels-found,31.03,nixle,https://local.nixle.com/santa-cruz-police-department/,https://local.nixle.com/city/ca/santa-cruz/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0669196,Santa Maria,CA,111390,2025,incorporated-place,channels-found,290.07,department-page,https://www.oag.ca.gov/fingerprints/locations/santa-maria-police-department,https://www.oag.ca.gov/fingerprints/locations/santa-maria-police-department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0669196,Santa Maria,CA,111390,2025,incorporated-place,channels-found,290.07,nixle,https://local.nixle.com/santa-maria-police-department/,https://local.nixle.com/city/ca/santa-maria/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0670000,Santa Monica,CA,90082,2025,incorporated-place,channels-found,475.44,department-page,https://www.santamonica.gov/departments/police,https://www.santamonica.gov/,official-domain-or-referral,public-html +162:0670000,Santa Monica,CA,90082,2025,incorporated-place,channels-found,475.44,incident-log,https://www.santamonicapd.org/crimereport/,https://www.santamonica.gov/departments/police,linked-from-official-page,not-tested +162:0670000,Santa Monica,CA,90082,2025,incorporated-place,channels-found,475.44,incident-log,https://www.santamonica.gov/topic-explainers/crime-reports-and-statistics,https://www.santamonica.gov/departments/police,linked-from-official-page,not-tested +162:0670000,Santa Monica,CA,90082,2025,incorporated-place,channels-found,475.44,instagram,https://www.instagram.com/SantaMonicaPD/,https://www.santamonica.gov/departments/police,linked-from-official-page,not-tested +162:0670000,Santa Monica,CA,90082,2025,incorporated-place,channels-found,475.44,facebook,https://www.facebook.com/santamonicapd,https://www.santamonica.gov/departments/police,linked-from-official-page,not-tested +162:0670000,Santa Monica,CA,90082,2025,incorporated-place,channels-found,475.44,x,https://x.com/santamonicapd,https://www.santamonica.gov/departments/police,linked-from-official-page,not-tested +162:0670000,Santa Monica,CA,90082,2025,incorporated-place,channels-found,475.44,newsroom,https://www.santamonica.gov/press/2026/09/12/critical-incident-video-released-following-august-22-2026-officer-involved-shooting,https://www.santamonica.gov/departments/police,linked-from-official-page,not-tested +162:0670000,Santa Monica,CA,90082,2025,incorporated-place,channels-found,475.44,newsroom,https://www.santamonica.gov/press/2026/09/04/smpd-investigating-shots-fired-incident-on-bay-street,https://www.santamonica.gov/departments/police,linked-from-official-page,not-tested +162:0670000,Santa Monica,CA,90082,2025,incorporated-place,channels-found,475.44,newsroom,https://www.santamonica.gov/press/2026/09/02/smpd-holding-dui-checkpoint-september-4-2026,https://www.santamonica.gov/departments/police,linked-from-official-page,not-tested +162:0670000,Santa Monica,CA,90082,2025,incorporated-place,channels-found,475.44,department-page,https://www.santamonica.gov/news,https://www.santamonica.gov/departments/police,official-domain-or-referral,public-html +162:0670000,Santa Monica,CA,90082,2025,incorporated-place,channels-found,475.44,newsroom,https://www.santamonica.gov/press/2026/09/11/beach-damage-from-hurricane-marie-forces-cancellation-of-inaugural-ocean-way-festival-to-2027,https://www.santamonica.gov/news,linked-from-official-page,not-tested +162:0670000,Santa Monica,CA,90082,2025,incorporated-place,channels-found,475.44,newsroom,https://www.santamonica.gov/press/2026/09/11/santa-monica-block-fest-returns-september-12-with-20-000-expected-as-monthly-series-extends-through-december,https://www.santamonica.gov/news,linked-from-official-page,not-tested +162:0670000,Santa Monica,CA,90082,2025,incorporated-place,channels-found,475.44,newsroom,https://www.santamonica.gov/press/2026/09/03/santa-monica-appoints-new-city-clerk-walfred-solorzano-appointed-following-national-recruitment,https://www.santamonica.gov/news,linked-from-official-page,not-tested +162:0670000,Santa Monica,CA,90082,2025,incorporated-place,channels-found,475.44,department-page,https://www.santamonica.gov/topic-explainers/crime-prevention,https://www.santamonica.gov/departments/police,official-domain-or-referral,public-html +162:0670000,Santa Monica,CA,90082,2025,incorporated-place,channels-found,475.44,department-page,https://www.santamonica.gov/places/city-facilities/police-activities-league-pal-youth-center,https://www.santamonica.gov/,official-domain-or-referral,public-html +162:0670000,Santa Monica,CA,90082,2025,incorporated-place,channels-found,475.44,department-page,https://www.santamonica.gov/connect-with-homelessness-services,https://www.santamonica.gov/places/city-facilities/police-activities-league-pal-youth-center,official-domain-or-referral,public-html +162:0670098,Santa Rosa,CA,179437,2025,incorporated-place,department-found,149.56,department-page,https://www.srcity.org/3328/Police-Reports,https://www.srcity.org/3328/Police-Reports,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0670098,Santa Rosa,CA,179437,2025,incorporated-place,department-found,149.56,department-page,https://www.bscc.ca.gov/wp-content/uploads/97-Santa-Rosa-Police.pdf,https://www.bscc.ca.gov/wp-content/uploads/97-Santa-Rosa-Police.pdf,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0670098,Santa Rosa,CA,179437,2025,incorporated-place,department-found,149.56,department-page,https://www.srcity.org/3929/Police,https://www.srcity.org/3929/Police,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0670224,Santee,CA,58205,2025,incorporated-place,channels-found,664.4,newsroom,https://www.sdsheriff.gov/bureaus/media-relations/news-list,https://www.sdsheriff.gov/bureaus/media-relations/news-list,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0670224,Santee,CA,58205,2025,incorporated-place,channels-found,664.4,newsroom,https://www.sdsheriff.gov/bureaus/media-relations/news-list/-selcat-36/-npage-2,https://www.sdsheriff.gov/bureaus/media-relations/news-list/-selcat-36/-npage-2,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0670224,Santee,CA,58205,2025,incorporated-place,channels-found,664.4,newsroom,https://www.sdsheriff.gov/bureaus/media-relations/news-list/-selectview-1/-arch-1,https://www.sdsheriff.gov/bureaus/media-relations/news-list/-selectview-1/-arch-1,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0672016,Simi Valley,CA,124861,2025,incorporated-place,channels-found,438.83,department-page,https://www.simivalley.org/departments/police-department,https://www.simivalley.org/departments/police-department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0672016,Simi Valley,CA,124861,2025,incorporated-place,channels-found,438.83,newsroom,https://www.oag.ca.gov/news/press-releases/california-department-justice-investigating-simi-valley-police-department,https://www.oag.ca.gov/news/press-releases/california-department-justice-investigating-simi-valley-police-department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0672016,Simi Valley,CA,124861,2025,incorporated-place,channels-found,438.83,department-page,https://www.simivalley.org/departments/police-department/resources,https://www.simivalley.org/departments/police-department/resources,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0672016,Simi Valley,CA,124861,2025,incorporated-place,channels-found,438.83,nixle,https://local.nixle.com/simi-valley-police-department/,https://local.nixle.com/city/ca/simi-valley/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0673080,South Gate,CA,90071,2025,incorporated-place,channels-found,499.46,department-page,https://www.cityofsouthgate.org/City-Services/Public-Safety,https://www.cityofsouthgate.org/Home,discovered-department-page; review-jurisdiction,public-html +162:0673080,South Gate,CA,90071,2025,incorporated-place,channels-found,499.46,department-page,https://www.cityofsouthgate.org/Engage-South-Gate/E-Newsletter,https://www.cityofsouthgate.org/City-Services/Public-Safety,discovered-department-page; review-jurisdiction,public-html +162:0673080,South Gate,CA,90071,2025,incorporated-place,channels-found,499.46,department-page,https://www.cityofsouthgate.org/Engage-South-Gate/Social-Media,https://www.cityofsouthgate.org/City-Services/Public-Safety,discovered-department-page; review-jurisdiction,public-html +162:0673080,South Gate,CA,90071,2025,incorporated-place,channels-found,499.46,department-page,https://southgatepd.com/,https://www.cityofsouthgate.org/Home,discovered-department-page; review-jurisdiction,public-html +162:0673080,South Gate,CA,90071,2025,incorporated-place,channels-found,499.46,feed-candidate,https://southgatepd.com/feed/,https://southgatepd.com/,linked-from-municipal-or-department-page; review-scope,public-feed-with-items +162:0673080,South Gate,CA,90071,2025,incorporated-place,channels-found,499.46,feed-candidate,https://southgatepd.com/comments/feed/,https://southgatepd.com/,linked-from-municipal-or-department-page; review-scope,empty-public-feed +162:0673080,South Gate,CA,90071,2025,incorporated-place,channels-found,499.46,facebook,https://www.facebook.com/SoGatePD/,https://southgatepd.com/,linked-from-municipal-or-department-page; review-scope,not-tested +162:0673080,South Gate,CA,90071,2025,incorporated-place,channels-found,499.46,instagram,https://www.instagram.com/south_gate_police_department_/,https://southgatepd.com/,linked-from-municipal-or-department-page; review-scope,not-tested +162:0673080,South Gate,CA,90071,2025,incorporated-place,channels-found,499.46,newsroom,https://southgatepd.com/news,https://southgatepd.com/,linked-from-municipal-or-department-page; review-scope,not-tested +162:0673080,South Gate,CA,90071,2025,incorporated-place,channels-found,499.46,department-page,https://southgatepd.com/news-and-information/,https://southgatepd.com/,discovered-department-page; review-jurisdiction,public-html +162:0673262,South San Francisco,CA,64941,2025,incorporated-place,channels-found,59.66,department-page,https://www.ssfca.gov/Departments/Police-Department,https://www.ssfca.gov/Home,official-domain-or-referral,public-html +162:0673262,South San Francisco,CA,64941,2025,incorporated-place,channels-found,59.66,alerts,https://www.ssfca.gov/Services/Free-South-City-Shuttle/Shuttle-Notifications,https://www.ssfca.gov/Departments/Police-Department,linked-from-official-page,not-tested +162:0673262,South San Francisco,CA,64941,2025,incorporated-place,channels-found,59.66,department-page,https://www.ssfca.gov/Our-City/City-Newsletter,https://www.ssfca.gov/Departments/Police-Department,official-domain-or-referral,public-html +162:0673262,South San Francisco,CA,64941,2025,incorporated-place,channels-found,59.66,department-page,https://www.ssfca.gov/Our-City/Living/Resident-News,https://www.ssfca.gov/Departments/Police-Department,official-domain-or-referral,public-html +162:0673262,South San Francisco,CA,64941,2025,incorporated-place,channels-found,59.66,newsroom,https://www.ssfca.gov/News/Clariti-2026,https://www.ssfca.gov/Our-City/Living/Resident-News,linked-from-official-page,not-tested +162:0673262,South San Francisco,CA,64941,2025,incorporated-place,channels-found,59.66,newsroom,https://www.ssfca.gov/News/Light-Tree-2026,https://www.ssfca.gov/Our-City/Living/Resident-News,linked-from-official-page,not-tested +162:0673262,South San Francisco,CA,64941,2025,incorporated-place,channels-found,59.66,newsroom,https://www.ssfca.gov/News/Sign-Hill-Repaint,https://www.ssfca.gov/Our-City/Living/Resident-News,linked-from-official-page,not-tested +162:0673262,South San Francisco,CA,64941,2025,incorporated-place,channels-found,59.66,newsroom,https://www.ssfca.gov/News/522-Linden-Avenue-Public-Parking-Lot-Closing-September-1,https://www.ssfca.gov/Our-City/Living/Resident-News,linked-from-official-page,not-tested +162:0673262,South San Francisco,CA,64941,2025,incorporated-place,channels-found,59.66,newsroom,https://www.ssfca.gov/News/Centennial-Way-North-Workshop-Recap,https://www.ssfca.gov/Our-City/Living/Resident-News,linked-from-official-page,not-tested +162:0673262,South San Francisco,CA,64941,2025,incorporated-place,channels-found,59.66,newsroom,https://www.ssfca.gov/News/NNO2026Recap,https://www.ssfca.gov/Our-City/Living/Resident-News,linked-from-official-page,not-tested +162:0673262,South San Francisco,CA,64941,2025,incorporated-place,channels-found,59.66,newsroom,https://www.ssfca.gov/News/Keep-South-City-Clean,https://www.ssfca.gov/Our-City/Living/Resident-News,linked-from-official-page,not-tested +162:0673262,South San Francisco,CA,64941,2025,incorporated-place,channels-found,59.66,newsroom,https://www.ssfca.gov/News/Touch-A-Truck-2026-Results,https://www.ssfca.gov/Our-City/Living/Resident-News,linked-from-official-page,not-tested +162:0673262,South San Francisco,CA,64941,2025,incorporated-place,channels-found,59.66,department-page,https://www.smcgov.org/hsa/community-information-handbook,https://www.ssfca.gov/Departments/Police-Department,official-domain-or-referral,public-html +162:0673262,South San Francisco,CA,64941,2025,incorporated-place,channels-found,59.66,newsroom,https://www.smcgov.org/ceo/newsroom,https://www.smcgov.org/hsa/community-information-handbook,linked-from-official-page,not-tested +162:0673262,South San Francisco,CA,64941,2025,incorporated-place,channels-found,59.66,incident-log,https://www.smcsheriff.com/online-crime-reporting,https://www.smcgov.org/hsa/community-information-handbook,linked-from-official-page,not-tested +162:0673262,South San Francisco,CA,64941,2025,incorporated-place,channels-found,59.66,alerts,https://www.smcgov.org/dem/smc-alert,https://www.smcgov.org/hsa/community-information-handbook,linked-from-official-page,not-tested +162:0673262,South San Francisco,CA,64941,2025,incorporated-place,channels-found,59.66,alerts,https://visitor.r20.constantcontact.com/manage/optin?v=001YwBuX0JTuQnxXeJoxC6jYy88PRocmOLs7CBTLlVxxPzYEHU5HrNrp6zT5SKCKNb4J8YEBzQZA30AaqBmmjraDqcTxeZyXodtwtGXGsfYqBvfIQfdNgkUvEtFD-bSNcNSlU8KKw7Ek5uuVJSbRNtwFsw7h7ssEHSg,https://www.smcgov.org/hsa/community-information-handbook,linked-from-official-page,not-tested +162:0673262,South San Francisco,CA,64941,2025,incorporated-place,channels-found,59.66,newsroom,https://www.smcgov.org/newsroom,https://www.smcgov.org/hsa/community-information-handbook,linked-from-official-page,not-tested +162:0673262,South San Francisco,CA,64941,2025,incorporated-place,channels-found,59.66,department-page,https://www.ssfca.gov/Departments/Police-Department/FAQs,https://www.ssfca.gov/Home,official-domain-or-referral,public-html +162:0673262,South San Francisco,CA,64941,2025,incorporated-place,channels-found,59.66,incident-log,https://southsanfranciscopd.citizenrims.com,https://www.ssfca.gov/Departments/Police-Department/FAQs,linked-from-official-page,not-tested +162:0673262,South San Francisco,CA,64941,2025,incorporated-place,channels-found,59.66,department-page,https://www.ssfca.gov/Departments/Police-Department/Archives,https://www.ssfca.gov/Home,official-domain-or-referral,public-html +162:0675000,Stockton,CA,324597,2025,incorporated-place,channels-found,98.81,newsroom,https://oag.ca.gov/news/press-releases/attorney-general-bonta-and-stockton-police-department-announce-34-arrests-seizes,https://oag.ca.gov/news/press-releases/attorney-general-bonta-and-stockton-police-department-announce-34-arrests-seizes,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0675000,Stockton,CA,324597,2025,incorporated-place,channels-found,98.81,nixle,https://local.nixle.com/stockton-police-department-ca/,https://local.nixle.com/city/ca/stockton/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0677000,Sunnyvale,CA,156577,2025,incorporated-place,channels-found,17.47,social-directory,https://www.sunnyvale.ca.gov/your-government/about/social-media-center,https://www.sunnyvale.ca.gov/your-government/about/social-media-center,reviewed-primary-web-source,search-readable; automation-unverified +162:0677000,Sunnyvale,CA,156577,2025,incorporated-place,channels-found,17.47,department-page,https://www.sunnyvale.ca.gov/your-government/departments/public-safety/public-safety-services/crime-statistics,https://www.sunnyvale.ca.gov/your-government/departments/public-safety/public-safety-services/crime-statistics,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0677000,Sunnyvale,CA,156577,2025,incorporated-place,channels-found,17.47,department-page,https://www.sunnyvale.ca.gov/your-government/departments/public-safety,https://www.sunnyvale.ca.gov/your-government/departments/public-safety,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0677000,Sunnyvale,CA,156577,2025,incorporated-place,channels-found,17.47,department-page,https://www.sunnyvale.ca.gov/your-government/departments/public-safety/public-safety-services,https://www.sunnyvale.ca.gov/your-government/departments/public-safety/public-safety-services,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0677000,Sunnyvale,CA,156577,2025,incorporated-place,channels-found,17.47,nixle,https://local.nixle.com/sunnyvale-department-of-public-safety/,https://local.nixle.com/city/ca/sunnyvale/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0678120,Temecula,CA,114865,2025,incorporated-place,department-found,603.32,department-page,https://www.temeculaca.gov/196/Police,https://www.temeculaca.gov/196/Police,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0678120,Temecula,CA,114865,2025,incorporated-place,department-found,603.32,department-page,https://temeculaca.gov/publicsafety,https://temeculaca.gov/publicsafety,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0678120,Temecula,CA,114865,2025,incorporated-place,department-found,603.32,department-page,https://temeculaca.gov/228/Temecula-Police-Stations,https://temeculaca.gov/228/Temecula-Police-Stations,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0678582,Thousand Oaks,CA,122230,2025,incorporated-place,channels-found,437.86,department-page,https://toaks.gov/publicsafety,https://toaks.gov/,official-domain-or-referral,public-html +162:0678582,Thousand Oaks,CA,122230,2025,incorporated-place,channels-found,437.86,department-page,https://toaks.gov/media/css/effect.css,https://toaks.gov/publicsafety,official-domain-or-referral,public-html +162:0678582,Thousand Oaks,CA,122230,2025,incorporated-place,channels-found,437.86,department-page,https://toaks.gov/index.php?section=news,https://toaks.gov/publicsafety,official-domain-or-referral,public-html +162:0678582,Thousand Oaks,CA,122230,2025,incorporated-place,channels-found,437.86,newsroom,https://toaks.gov/index.php?section=news&prrid=161,https://toaks.gov/index.php?section=news,linked-from-official-page,not-tested +162:0678582,Thousand Oaks,CA,122230,2025,incorporated-place,channels-found,437.86,newsroom,https://toaks.gov/index.php?section=news&prrid=157,https://toaks.gov/index.php?section=news,linked-from-official-page,not-tested +162:0678582,Thousand Oaks,CA,122230,2025,incorporated-place,channels-found,437.86,department-page,https://toaks.gov/media/css/animations.css,https://toaks.gov/publicsafety,official-domain-or-referral,public-html +162:0678582,Thousand Oaks,CA,122230,2025,incorporated-place,channels-found,437.86,department-page,https://toaks.gov/index.php?section=publicsafety,https://toaks.gov/,official-domain-or-referral,public-html +162:0680000,Torrance,CA,138391,2025,incorporated-place,channels-found,499.23,department-page,https://www.torranceca.gov/Government/Departments-Offices/Departments-Offices/Police/Records/Request-Public-Police-Records,https://www.torranceca.gov/Home,official-domain-or-referral,public-html +162:0680000,Torrance,CA,138391,2025,incorporated-place,channels-found,499.23,newsroom,https://www.torranceca.gov/Government/Newsroom,https://www.torranceca.gov/Government/Departments-Offices/Departments-Offices/Police/Records/Request-Public-Police-Records,linked-from-official-page,not-tested +162:0680000,Torrance,CA,138391,2025,incorporated-place,channels-found,499.23,alerts,https://www.torranceca.gov/Government/Stay-Connected/TorranceAlerts,https://www.torranceca.gov/Government/Departments-Offices/Departments-Offices/Police/Records/Request-Public-Police-Records,linked-from-official-page,not-tested +162:0680000,Torrance,CA,138391,2025,incorporated-place,channels-found,499.23,alerts,https://www.torranceca.gov/How-Do-I/Sign-Up-For/TorranceAlerts,https://www.torranceca.gov/Government/Departments-Offices/Departments-Offices/Police/Records/Request-Public-Police-Records,linked-from-official-page,not-tested +162:0680000,Torrance,CA,138391,2025,incorporated-place,channels-found,499.23,newsroom,https://www.torranceca.gov/Government/Newsroom/Torrance-Police-Department-Conducting-DUI-Patrols-91226,https://www.torranceca.gov/Government/Newsroom,linked-from-official-page,not-tested +162:0680000,Torrance,CA,138391,2025,incorporated-place,channels-found,499.23,newsroom,https://www.torranceca.gov/Government/Newsroom/Protecting-Pedestrians-CA-Urges-Drivers-to-Stay-Alert-This-September,https://www.torranceca.gov/Government/Newsroom,linked-from-official-page,not-tested +162:0680000,Torrance,CA,138391,2025,incorporated-place,channels-found,499.23,newsroom,https://www.torranceca.gov/Government/Newsroom/25th-Anniversary-September-11-Memorial-Ceremony,https://www.torranceca.gov/Government/Newsroom,linked-from-official-page,not-tested +162:0680000,Torrance,CA,138391,2025,incorporated-place,channels-found,499.23,newsroom,https://www.torranceca.gov/Government/Newsroom/Joint-Press-Release-Robert-Vargas-Latest-Mural-unveiling-in-Torrance,https://www.torranceca.gov/Government/Newsroom,linked-from-official-page,not-tested +162:0680000,Torrance,CA,138391,2025,incorporated-place,channels-found,499.23,newsroom,https://www.torranceca.gov/Government/Newsroom/City-of-Torrance-Welcomes-Linda-Barnett-as-District-4-Councilmember,https://www.torranceca.gov/Government/Newsroom,linked-from-official-page,not-tested +162:0680000,Torrance,CA,138391,2025,incorporated-place,channels-found,499.23,newsroom,https://www.torranceca.gov/Government/Newsroom/Dangers-of-Distracted-Driving,https://www.torranceca.gov/Government/Newsroom,linked-from-official-page,not-tested +162:0680000,Torrance,CA,138391,2025,incorporated-place,channels-found,499.23,newsroom,https://www.torranceca.gov/Government/Newsroom/Police-Department-and-ABC-Cites-Clerks-for-Selling-Alcohol-to-Minors,https://www.torranceca.gov/Government/Newsroom,linked-from-official-page,not-tested +162:0680000,Torrance,CA,138391,2025,incorporated-place,channels-found,499.23,newsroom,https://www.torranceca.gov/Government/Newsroom/Pedestrian-Struck-and-Killed-in-Traffic-Collision-on-Madrona-Avenue,https://www.torranceca.gov/Government/Newsroom,linked-from-official-page,not-tested +162:0680000,Torrance,CA,138391,2025,incorporated-place,channels-found,499.23,newsroom,https://www.torranceca.gov/Government/Newsroom/Save-Drives-Save-Lives,https://www.torranceca.gov/Government/Newsroom,linked-from-official-page,not-tested +162:0680000,Torrance,CA,138391,2025,incorporated-place,channels-found,499.23,newsroom,https://www.torranceca.gov/Government/Newsroom/New-Mural,https://www.torranceca.gov/Government/Newsroom,linked-from-official-page,not-tested +162:0680000,Torrance,CA,138391,2025,incorporated-place,channels-found,499.23,department-page,https://www.torranceca.gov/Our-Community/eNewsletter,https://www.torranceca.gov/Government/Departments-Offices/Departments-Offices/Police/Records/Request-Public-Police-Records,official-domain-or-referral,public-html +162:0680000,Torrance,CA,138391,2025,incorporated-place,channels-found,499.23,department-page,https://www.torranceca.gov/Government/Stay-Connected,https://www.torranceca.gov/Government/Departments-Offices/Departments-Offices/Police/Records/Request-Public-Police-Records,official-domain-or-referral,public-html +162:0680000,Torrance,CA,138391,2025,incorporated-place,channels-found,499.23,department-page,https://www.torranceca.gov/City-Services/Health-Public-Safety/Services,https://www.torranceca.gov/Home,official-domain-or-referral,public-html +162:0680000,Torrance,CA,138391,2025,incorporated-place,channels-found,499.23,alerts,https://www.torranceca.gov/City-Services/Health-Public-Safety/Services/Alerts-and-Notifications,https://www.torranceca.gov/City-Services/Health-Public-Safety/Services,linked-from-official-page,not-tested +162:0680238,Tracy,CA,101901,2025,incorporated-place,channels-found,69.05,department-page,https://tracypd.com/,https://www.cityoftracy.org/Home,discovered-department-page; review-jurisdiction,public-html +162:0680238,Tracy,CA,101901,2025,incorporated-place,channels-found,69.05,feed-candidate,https://tracypd.com/feed,https://tracypd.com/,linked-from-municipal-or-department-page; review-scope,public-feed-with-items +162:0680238,Tracy,CA,101901,2025,incorporated-place,channels-found,69.05,feed-candidate,https://tracypd.com/comments/feed,https://tracypd.com/,linked-from-municipal-or-department-page; review-scope,empty-public-feed +162:0680238,Tracy,CA,101901,2025,incorporated-place,channels-found,69.05,facebook,https://www.facebook.com/TracyPolice,https://tracypd.com/,linked-from-municipal-or-department-page; review-scope,not-tested +162:0680238,Tracy,CA,101901,2025,incorporated-place,channels-found,69.05,x,https://x.com/tracypd,https://tracypd.com/,linked-from-municipal-or-department-page; review-scope,not-tested +162:0680238,Tracy,CA,101901,2025,incorporated-place,channels-found,69.05,instagram,https://www.instagram.com/tracypolicedepartment,https://tracypd.com/,linked-from-municipal-or-department-page; review-scope,not-tested +162:0680238,Tracy,CA,101901,2025,incorporated-place,channels-found,69.05,newsroom,https://tracypd.com/category/news-releases,https://tracypd.com/,linked-from-municipal-or-department-page; review-scope,not-tested +162:0680238,Tracy,CA,101901,2025,incorporated-place,channels-found,69.05,newsroom,https://tracypd.com/news,https://tracypd.com/,linked-from-municipal-or-department-page; review-scope,not-tested +162:0680238,Tracy,CA,101901,2025,incorporated-place,channels-found,69.05,department-page,https://tracypd.com/crime-mapping,https://tracypd.com/,discovered-department-page; review-jurisdiction,public-html +162:0680238,Tracy,CA,101901,2025,incorporated-place,channels-found,69.05,crime-map,https://www.crimemapping.com/map/agency/377,https://tracypd.com/crime-mapping,linked-from-municipal-or-department-page; review-scope,not-tested +162:0680238,Tracy,CA,101901,2025,incorporated-place,channels-found,69.05,crime-map,https://www.crimemapping.com/Alerts,https://tracypd.com/crime-mapping,linked-from-municipal-or-department-page; review-scope,not-tested +162:0680644,Tulare,CA,73907,2025,incorporated-place,channels-found,259.36,department-page,https://www.tulare.ca.gov/government/departments/police,https://www.tulare.ca.gov/government/departments/police,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0680644,Tulare,CA,73907,2025,incorporated-place,channels-found,259.36,department-page,https://www.tulare.ca.gov/government/departments/police/crime-tips,https://www.tulare.ca.gov/government/departments/police/crime-tips,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0680644,Tulare,CA,73907,2025,incorporated-place,channels-found,259.36,newsroom,https://oag.ca.gov/news/press-releases/california-department-justice-investigating-tulare-county-sheriff%E2%80%99s-department,https://oag.ca.gov/news/press-releases/california-department-justice-investigating-tulare-county-sheriff%E2%80%99s-department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0680812,Turlock,CA,72864,2025,incorporated-place,channels-found,100.07,department-page,https://turlockca.gov/policedepartment/,https://turlockca.gov/,official-domain-or-referral,public-html +162:0680812,Turlock,CA,72864,2025,incorporated-place,channels-found,100.07,x,https://x.com/turlockpolice,https://turlockca.gov/policedepartment/,linked-from-official-page,not-tested +162:0680812,Turlock,CA,72864,2025,incorporated-place,channels-found,100.07,instagram,https://www.instagram.com/turlockpolice,https://turlockca.gov/policedepartment/,linked-from-official-page,not-tested +162:0680812,Turlock,CA,72864,2025,incorporated-place,channels-found,100.07,newsroom,https://turlockca.gov/stayinformed/pressreleases,https://turlockca.gov/policedepartment/,linked-from-official-page,not-tested +162:0680812,Turlock,CA,72864,2025,incorporated-place,channels-found,100.07,alerts,https://turlockca.gov/stayinformed/emailalerts,https://turlockca.gov/policedepartment/,linked-from-official-page,not-tested +162:0680812,Turlock,CA,72864,2025,incorporated-place,channels-found,100.07,department-page,https://turlockca.gov/policedepartment/crime/,https://turlockca.gov/policedepartment/,official-domain-or-referral,public-html +162:0680812,Turlock,CA,72864,2025,incorporated-place,channels-found,100.07,incident-log,https://turlockca.gov/policedepartment/crime/reportacrime,https://turlockca.gov/policedepartment/crime/,linked-from-official-page,not-tested +162:0680812,Turlock,CA,72864,2025,incorporated-place,channels-found,100.07,department-page,https://turlockca.gov/aboutturlock/socialmedia/,https://turlockca.gov/policedepartment/,official-domain-or-referral,public-html +162:0680812,Turlock,CA,72864,2025,incorporated-place,channels-found,100.07,facebook,https://www.facebook.com/turlockpd,https://turlockca.gov/aboutturlock/socialmedia/,linked-from-official-page,not-tested +162:0680812,Turlock,CA,72864,2025,incorporated-place,channels-found,100.07,youtube,https://www.youtube.com/channel/UCFcwuWYj8asAT4NCX6CParg,https://turlockca.gov/aboutturlock/socialmedia/,linked-from-official-page,not-tested +162:0680812,Turlock,CA,72864,2025,incorporated-place,channels-found,100.07,nixle,https://local.nixle.com/turlock-police-department-ca/,https://turlockca.gov/aboutturlock/socialmedia/,linked-from-official-page,public-nixle-archive +162:0680812,Turlock,CA,72864,2025,incorporated-place,channels-found,100.07,alerts,https://turlockca.gov/stayinformed/emailalerts/updatesubscription,https://turlockca.gov/stayinformed/emailalerts/,linked-from-official-page,not-tested +162:0680812,Turlock,CA,72864,2025,incorporated-place,channels-found,100.07,alerts,https://turlockca.gov/stayinformed/emailalerts/whatsavailable.asp,https://turlockca.gov/stayinformed/emailalerts/,linked-from-official-page,not-tested +162:0680812,Turlock,CA,72864,2025,incorporated-place,channels-found,100.07,department-page,https://turlockca.gov/policedepartment/index.asp,https://turlockca.gov/,official-domain-or-referral,public-html +162:0680854,Tustin,CA,77843,2025,incorporated-place,channels-found,540.73,department-page,https://www.tustinca.org/1321/Police,https://www.tustinca.org/,discovered-department-page; review-jurisdiction,public-html +162:0680854,Tustin,CA,77843,2025,incorporated-place,channels-found,540.73,crime-map,https://communitycrimemap.com/?address=Tustin+CA&crimeTypes=%5B11%5D&startDate=7&endDate=0&zoom=10,https://www.tustinca.org/1321/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0680854,Tustin,CA,77843,2025,incorporated-place,channels-found,540.73,facebook,https://www.facebook.com/tustinpolice/,https://www.tustinca.org/1321/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0680854,Tustin,CA,77843,2025,incorporated-place,channels-found,540.73,instagram,https://www.instagram.com/tustinpolice/,https://www.tustinca.org/1321/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0680854,Tustin,CA,77843,2025,incorporated-place,channels-found,540.73,alerts,https://www.tustinca.org/CivicAlerts.aspx?AID=618,https://www.tustinca.org/1321/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0680854,Tustin,CA,77843,2025,incorporated-place,channels-found,540.73,alerts,https://www.tustinca.org/CivicAlerts.aspx?AID=619,https://www.tustinca.org/1321/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0680854,Tustin,CA,77843,2025,incorporated-place,channels-found,540.73,alerts,https://www.tustinca.org/CivicAlerts.aspx?AID=620,https://www.tustinca.org/1321/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0680854,Tustin,CA,77843,2025,incorporated-place,channels-found,540.73,alerts,https://www.tustinca.org/CivicAlerts.aspx?AID=621,https://www.tustinca.org/1321/Police,linked-from-municipal-or-department-page; review-scope,not-tested +162:0680854,Tustin,CA,77843,2025,incorporated-place,channels-found,540.73,department-page,https://www.tustinca.org/176/Crime-Trends,https://www.tustinca.org/1321/Police,discovered-department-page; review-jurisdiction,public-html +162:0680854,Tustin,CA,77843,2025,incorporated-place,channels-found,540.73,alerts,https://www.tustinca.org/367/Crime-Statistics-Alerts,https://www.tustinca.org/176/Crime-Trends,linked-from-municipal-or-department-page; review-scope,not-tested +162:0680854,Tustin,CA,77843,2025,incorporated-place,channels-found,540.73,alerts,https://www.tustinca.org/373/Nixle-Alerts,https://www.tustinca.org/176/Crime-Trends,linked-from-municipal-or-department-page; review-scope,not-tested +162:0680854,Tustin,CA,77843,2025,incorporated-place,channels-found,540.73,newsroom,https://www.tustinca.org/CivicAlerts.aspx?CID=10,https://www.tustinca.org/176/Crime-Trends,linked-from-municipal-or-department-page; review-scope,not-tested +162:0680854,Tustin,CA,77843,2025,incorporated-place,channels-found,540.73,nixle,https://local.nixle.com/tustin-ca-police-department/,https://www.tustinca.org/176/Crime-Trends,linked-from-municipal-or-department-page; review-scope,public-nixle-archive +162:0680854,Tustin,CA,77843,2025,incorporated-place,channels-found,540.73,alerts,https://www.tustinca.org/CivicAlerts.aspx?CID=6,https://www.tustinca.org/176/Crime-Trends,linked-from-municipal-or-department-page; review-scope,not-tested +162:0680854,Tustin,CA,77843,2025,incorporated-place,channels-found,540.73,alerts,https://www.tustinca.org/492/Computer-Scam-Alert,https://www.tustinca.org/176/Crime-Trends,linked-from-municipal-or-department-page; review-scope,not-tested +162:0680854,Tustin,CA,77843,2025,incorporated-place,channels-found,540.73,department-page,https://www.tustinca.org/371/Crime-Prevention,https://www.tustinca.org/1321/Police,discovered-department-page; review-jurisdiction,public-html +162:0680854,Tustin,CA,77843,2025,incorporated-place,channels-found,540.73,department-page,https://www.tustinca.org/m/newsflash/home/detail/618,https://www.tustinca.org/1321/Police,discovered-department-page; review-jurisdiction,public-html +162:0680854,Tustin,CA,77843,2025,incorporated-place,channels-found,540.73,alerts,https://www.tustinca.org/m/newsflash/Home/Detail/621,https://www.tustinca.org/m/newsflash/home/detail/618,linked-from-municipal-or-department-page; review-scope,not-tested +162:0681204,Union City,CA,65282,2025,incorporated-place,channels-found,40.51,incident-log,https://www.unioncityca.gov/625/Crime-Blotter,https://www.unioncityca.gov/625/Crime-Blotter,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0681204,Union City,CA,65282,2025,incorporated-place,channels-found,40.51,department-page,https://www.unioncityca.gov/545/Crime-in-My-Neighborhood,https://www.unioncityca.gov/545/Crime-in-My-Neighborhood,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0681204,Union City,CA,65282,2025,incorporated-place,channels-found,40.51,department-page,https://www.unioncityca.gov/677/Police,https://www.unioncityca.gov/677/Police,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0681204,Union City,CA,65282,2025,incorporated-place,channels-found,40.51,nixle,https://local.nixle.com/union-city-police-department-ca/,https://local.nixle.com/city/ca/union-city/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0681344,Upland,CA,79446,2025,incorporated-place,channels-found,520.05,department-page,https://uplandca.gov/police/index.php,https://uplandca.gov/,official-domain-or-referral,public-html +162:0681344,Upland,CA,79446,2025,incorporated-place,channels-found,520.05,newsroom,https://uplandca.gov/police/press_releases/index.php,https://uplandca.gov/police/index.php,linked-from-official-page,not-tested +162:0681344,Upland,CA,79446,2025,incorporated-place,channels-found,520.05,incident-log,https://uplandca.gov/police/police/about_upd/monthly_hate_crime_report.php,https://uplandca.gov/police/index.php,linked-from-official-page,not-tested +162:0681344,Upland,CA,79446,2025,incorporated-place,channels-found,520.05,crime-map,https://communitycrimemap.com/?address=upland%2Cca,https://uplandca.gov/police/index.php,linked-from-official-page,not-tested +162:0681344,Upland,CA,79446,2025,incorporated-place,channels-found,520.05,department-page,https://uplandca.gov/information_technology/social_media.php,https://uplandca.gov/police/index.php,official-domain-or-referral,public-html +162:0681344,Upland,CA,79446,2025,incorporated-place,channels-found,520.05,newsroom,https://uplandca.gov/information_technology/press_releases/index.php,https://uplandca.gov/information_technology/social_media.php,linked-from-official-page,not-tested +162:0681344,Upland,CA,79446,2025,incorporated-place,channels-found,520.05,department-page,https://uplandca.gov/police/divisions.php,https://uplandca.gov/,official-domain-or-referral,public-html +162:0681344,Upland,CA,79446,2025,incorporated-place,channels-found,520.05,department-page,https://uplandca.gov/police/servicescommunity/police/services/code_enforcement.php,https://uplandca.gov/,official-domain-or-referral,public-html +162:0681344,Upland,CA,79446,2025,incorporated-place,channels-found,520.05,newsroom,https://uplandca.gov/police/servicescommunity/police/services/press_releases/index.php,https://uplandca.gov/police/servicescommunity/police/services/code_enforcement.php,linked-from-official-page,not-tested +162:0681554,Vacaville,CA,103850,2025,incorporated-place,department-found,124.02,department-page,https://www.cityofvacaville.gov/government/police-department?locale=en_us,https://www.cityofvacaville.gov/government/police-department?locale=en_us,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0681554,Vacaville,CA,103850,2025,incorporated-place,department-found,124.02,department-page,https://www.cityofvacaville.gov/government/police-department/crime-reports-prevention,https://www.cityofvacaville.gov/government/police-department/crime-reports-prevention,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0681554,Vacaville,CA,103850,2025,incorporated-place,department-found,124.02,department-page,https://www.cityofvacaville.gov/government/police-department?locale=en,https://www.cityofvacaville.gov/government/police-department?locale=en,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0681666,Vallejo,CA,123287,2025,incorporated-place,channels-found,100.04,newsroom,https://www.vallejopd.net/public_information/news/press_releases,https://www.vallejopd.net/public_information/news/press_releases,reviewed-primary-web-source,search-readable; automation-unverified +162:0682590,Victorville,CA,141395,2025,incorporated-place,channels-found,511.86,department-page,https://www.victorvilleca.gov/Government/City-Departments/Police,https://www.victorvilleca.gov/Home,official-domain-or-referral,public-html +162:0682590,Victorville,CA,141395,2025,incorporated-place,channels-found,511.86,crime-map,https://www.crimemapping.com/,https://www.victorvilleca.gov/Government/City-Departments/Police,linked-from-official-page,not-tested +162:0682590,Victorville,CA,141395,2025,incorporated-place,channels-found,511.86,department-page,https://www.victorvilleca.gov/Resident/News,https://www.victorvilleca.gov/Government/City-Departments/Police,official-domain-or-referral,public-html +162:0682590,Victorville,CA,141395,2025,incorporated-place,channels-found,511.86,announcement,https://www.victorvilleca.gov/News-articles/Press-Release-Veterans-Day,https://www.victorvilleca.gov/Resident/News,linked-from-official-page,not-tested +162:0682590,Victorville,CA,141395,2025,incorporated-place,channels-found,511.86,announcement,https://www.victorvilleca.gov/News-articles/Press-Release-DocuPet,https://www.victorvilleca.gov/Resident/News,linked-from-official-page,not-tested +162:0682590,Victorville,CA,141395,2025,incorporated-place,channels-found,511.86,department-page,https://www.victorvilleca.gov/Stay-Connected,https://www.victorvilleca.gov/Government/City-Departments/Police,official-domain-or-referral,public-html +162:0682590,Victorville,CA,141395,2025,incorporated-place,channels-found,511.86,department-page,https://www.victorvilleca.gov/Government/Media-Relations,https://www.victorvilleca.gov/Government/City-Departments/Police,official-domain-or-referral,public-html +162:0682590,Victorville,CA,141395,2025,incorporated-place,channels-found,511.86,newsroom,https://us.openforms.com/Form/f45fa8c2-6cc9-444e-8928-479a9719e437,https://www.victorvilleca.gov/Government/Media-Relations,linked-from-official-page,not-tested +162:0682590,Victorville,CA,141395,2025,incorporated-place,channels-found,511.86,department-page,https://www.victorvilleca.gov/Government/City-Departments/Economic-Development/Old-Town,https://www.victorvilleca.gov/Home,official-domain-or-referral,public-html +162:0682590,Victorville,CA,141395,2025,incorporated-place,channels-found,511.86,nixle,https://local.nixle.com/sbsd---victorville-police-department/,https://local.nixle.com/city/ca/victorville/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive +162:0682954,Visalia,CA,146541,2025,incorporated-place,department-found,254.14,department-page,https://www.visalia.gov/depts/police/contact_information/contact_numbers/default.asp,https://www.visalia.gov/depts/police/contact_information/contact_numbers/default.asp,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0682954,Visalia,CA,146541,2025,incorporated-place,department-found,254.14,department-page,https://www.visalia.gov/446/Crime-Maps,https://www.visalia.gov/446/Crime-Maps,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0682954,Visalia,CA,146541,2025,incorporated-place,department-found,254.14,department-page,https://www.visalia.city/civicax/filebank/blobdload.aspx?BlobID=16179,https://www.visalia.city/civicax/filebank/blobdload.aspx?BlobID=16179,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0682996,Vista,CA,98274,2025,incorporated-place,channels-found,620.96,newsroom,https://www.sdsheriff.gov/bureaus/media-relations/news-list/-selectview-1/-arch-1,https://www.sdsheriff.gov/bureaus/media-relations/news-list/-selectview-1/-arch-1,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0682996,Vista,CA,98274,2025,incorporated-place,channels-found,620.96,newsroom,https://www.sdsheriff.gov/bureaus/media-relations/news-list/-npage-3/-arch-1,https://www.sdsheriff.gov/bureaus/media-relations/news-list/-npage-3/-arch-1,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0682996,Vista,CA,98274,2025,incorporated-place,channels-found,620.96,department-page,https://www.sdsheriff.gov/Home/Components/FacilityDirectory/FacilityDirectory/46/61,https://www.sdsheriff.gov/Home/Components/FacilityDirectory/FacilityDirectory/46/61,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0683346,Walnut Creek,CA,70012,2025,incorporated-place,channels-found,73.8,newsroom,https://www.walnutcreekpdca.gov/data-and-transparency/transparency/news-releases,https://www.walnutcreekpdca.gov/data-and-transparency/transparency/news-releases,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0683346,Walnut Creek,CA,70012,2025,incorporated-place,channels-found,73.8,department-page,https://www.walnutcreekpdca.gov/i-want-to/contact-wcpd,https://www.walnutcreekpdca.gov/i-want-to/contact-wcpd,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0683346,Walnut Creek,CA,70012,2025,incorporated-place,channels-found,73.8,department-page,https://www.walnutcreekpdca.gov/home-policenew,https://www.walnutcreekpdca.gov/home-policenew,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0683668,Watsonville,CA,50716,2025,incorporated-place,channels-found,38.65,department-page,https://watsonville.gov/291/Online-Reporting,https://watsonville.gov/,official-domain-or-referral,public-html +162:0683668,Watsonville,CA,50716,2025,incorporated-place,channels-found,38.65,incident-log,https://watsonville.gov/2196/Arrest-Crime-Logs,https://watsonville.gov/291/Online-Reporting,linked-from-official-page,not-tested +162:0683668,Watsonville,CA,50716,2025,incorporated-place,channels-found,38.65,department-page,https://watsonville.gov/2324/Police,https://watsonville.gov/291/Online-Reporting,official-domain-or-referral,public-html +162:0683668,Watsonville,CA,50716,2025,incorporated-place,channels-found,38.65,department-page,https://watsonville.gov/198/Your-Police,https://watsonville.gov/291/Online-Reporting,official-domain-or-referral,public-html +162:0683668,Watsonville,CA,50716,2025,incorporated-place,channels-found,38.65,department-page,https://watsonville.gov/199/Police-Services,https://watsonville.gov/291/Online-Reporting,official-domain-or-referral,public-html +162:0684200,West Covina,CA,105301,2025,incorporated-place,channels-found,508.23,department-page,https://www.wcpd.org/,https://www.westcovina.gov/,discovered-department-page; review-jurisdiction,public-html +162:0684200,West Covina,CA,105301,2025,incorporated-place,channels-found,508.23,facebook,https://www.facebook.com/WestCovinaPD/,https://www.wcpd.org/,linked-from-municipal-or-department-page; review-scope,not-tested +162:0684200,West Covina,CA,105301,2025,incorporated-place,channels-found,508.23,x,https://x.com/westcovinapd,https://www.wcpd.org/,linked-from-municipal-or-department-page; review-scope,not-tested +162:0684200,West Covina,CA,105301,2025,incorporated-place,channels-found,508.23,instagram,https://www.instagram.com/westcovinapd/,https://www.wcpd.org/,linked-from-municipal-or-department-page; review-scope,not-tested +162:0684200,West Covina,CA,105301,2025,incorporated-place,channels-found,508.23,youtube,https://www.youtube.com/@westcovinapolicedepartment6667,https://www.wcpd.org/,linked-from-municipal-or-department-page; review-scope,not-tested +162:0684200,West Covina,CA,105301,2025,incorporated-place,channels-found,508.23,youtube,https://www.youtube.com/@westcovinapolicedepartment6667/featured,https://www.wcpd.org/,linked-from-municipal-or-department-page; review-scope,not-tested +162:0684200,West Covina,CA,105301,2025,incorporated-place,channels-found,508.23,department-page,https://www.wcpd.org/news/,https://www.wcpd.org/,discovered-department-page; review-jurisdiction,public-html +162:0684200,West Covina,CA,105301,2025,incorporated-place,channels-found,508.23,department-page,https://www.wcpd.org/crime-stats/,https://www.wcpd.org/,discovered-department-page; review-jurisdiction,public-html +162:0684816,West Sacramento,CA,56216,2025,incorporated-place,department-found,149.8,department-page,https://www.cityofwestsacramento.org/government/departments/police/contact-us,https://www.cityofwestsacramento.org/government/departments/police/contact-us,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0684816,West Sacramento,CA,56216,2025,incorporated-place,department-found,149.8,department-page,https://www.cityofwestsacramento.org/government/departments/police/police-divisions-and-units/office-of-operations/records-section,https://www.cityofwestsacramento.org/government/departments/police/police-divisions-and-units/office-of-operations/records-section,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0684816,West Sacramento,CA,56216,2025,incorporated-place,department-found,149.8,department-page,https://www.cityofwestsacramento.org/government/departments/police?from=AppAgg.com,https://www.cityofwestsacramento.org/government/departments/police?from=AppAgg.com,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0684550,Westminster,CA,88966,2025,incorporated-place,channels-found,527.61,newsroom,https://www.westminster-ca.gov/departments/police/our-department/press-releases,https://www.westminster-ca.gov/departments/police/our-department/press-releases,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0684550,Westminster,CA,88966,2025,incorporated-place,channels-found,527.61,department-page,https://www.westminster-ca.gov/departments/police,https://www.westminster-ca.gov/departments/police,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0684550,Westminster,CA,88966,2025,incorporated-place,channels-found,527.61,newsroom,https://www.westminster-ca.gov/departments/police/our-department/press-releases/-arch-1,https://www.westminster-ca.gov/departments/police/our-department/press-releases/-arch-1,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0685292,Whittier,CA,85815,2025,incorporated-place,department-found,508.34,department-page,https://locator.lacounty.gov/lac/Location/3175447/city-of-whittier-police-department,https://locator.lacounty.gov/lac/Location/3175447/city-of-whittier-police-department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0686328,Woodland,CA,62513,2025,incorporated-place,department-found,159.68,department-page,https://www.cityofwoodland.gov/394/Woodland-Police-Department,https://www.cityofwoodland.gov/394/Woodland-Police-Department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0686328,Woodland,CA,62513,2025,incorporated-place,department-found,159.68,department-page,https://cityofwoodland.gov/521/Crime-Mapping,https://cityofwoodland.gov/521/Crime-Mapping,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0686328,Woodland,CA,62513,2025,incorporated-place,department-found,159.68,department-page,https://caselog.cityofwoodland.gov/,https://caselog.cityofwoodland.gov/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0686832,Yorba Linda,CA,65632,2025,incorporated-place,department-found,530.39,department-page,https://www.yorbalindaca.gov/250/Public-Safety,https://www.yorbalindaca.gov/,discovered-department-page; review-jurisdiction,public-html +162:0686832,Yorba Linda,CA,65632,2025,incorporated-place,department-found,530.39,department-page,https://www.yorbalindaca.gov/275/Police,https://www.yorbalindaca.gov/275/Police,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0686832,Yorba Linda,CA,65632,2025,incorporated-place,department-found,530.39,department-page,https://www.yorbalindaca.gov/411/Crime-Statistics,https://www.yorbalindaca.gov/411/Crime-Statistics,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0686832,Yorba Linda,CA,65632,2025,incorporated-place,department-found,530.39,department-page,https://www.ocsheriff.gov/patrol-areas/yorba-linda,https://www.ocsheriff.gov/patrol-areas/yorba-linda,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0686972,Yuba City,CA,69485,2025,incorporated-place,department-found,211.4,department-page,https://www.oag.ca.gov/fingerprints/locations/yuba-city-police-department,https://www.oag.ca.gov/fingerprints/locations/yuba-city-police-department,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0686972,Yuba City,CA,69485,2025,incorporated-place,department-found,211.4,department-page,https://www.suttersheriff.gov/,https://www.suttersheriff.gov/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0686972,Yuba City,CA,69485,2025,incorporated-place,department-found,211.4,department-page,https://yuba.gov/departments/sheriff_coroner/divisions/dispatch_communications.php,https://yuba.gov/departments/sheriff_coroner/divisions/dispatch_communications.php,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0687042,Yucaipa,CA,54953,2025,incorporated-place,channels-found,568.58,department-page,https://wp.sbcounty.gov/sheriff/patrol-stations/yucaipa/,https://wp.sbcounty.gov/sheriff/patrol-stations/yucaipa/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0687042,Yucaipa,CA,54953,2025,incorporated-place,channels-found,568.58,department-page,https://wp.sbcounty.gov/sheriff/wp-content/uploads/sites/17/2024-Annual-Crime-Report.pdf,https://wp.sbcounty.gov/sheriff/wp-content/uploads/sites/17/2024-Annual-Crime-Report.pdf,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0687042,Yucaipa,CA,54953,2025,incorporated-place,channels-found,568.58,department-page,https://bosd3.sbcounty.gov/venue/yucaipa-police-department/,https://bosd3.sbcounty.gov/venue/yucaipa-police-department/,search-discovered-primary-source; review-jurisdiction,search-readable; automation-unverified +162:0687042,Yucaipa,CA,54953,2025,incorporated-place,channels-found,568.58,nixle,https://local.nixle.com/sbsd---yucaipa-police-department/,https://local.nixle.com/city/ca/yucaipa/,certified-publisher-in-city-directory; jurisdiction-review-required,public-nixle-archive diff --git a/docs/data/police-sources/index.html b/docs/data/police-sources/index.html new file mode 100644 index 0000000..23ccedc --- /dev/null +++ b/docs/data/police-sources/index.html @@ -0,0 +1,17 @@ +NicheDB · Police source inventory + +

Police reports & announcement sources

CA municipal governments with more than 50,000 residents in Census Vintage 2025. Includes functioning towns and townships; overlapping governments retain separate Census IDs. Source discovery does not establish complete crime coverage or live ingestion.

+

Start with the area in your NicheDB link. The default view shows municipalities whose Census reference point lies within 100 km of 37.243507, −121.942648. These points locate jurisdictions, not incidents.

+ + + +

PlacePopulationSources and evidence
+

“Reviewed” identifies sources checked during this research. Automated links and indexed results remain candidates for checking department identity, jurisdiction, subject matter, and freshness. RSS calendars, empty feeds, single announcements, and alert signup pages are recorded separately. X and other social account URLs are not working ingestion endpoints.

+

Files: channels.csv · inventory.json · summary.json · validation.json

+ \ No newline at end of file diff --git a/docs/data/police-sources/indexed-searches.json b/docs/data/police-sources/indexed-searches.json new file mode 100644 index 0000000..d7ae432 --- /dev/null +++ b/docs/data/police-sources/indexed-searches.json @@ -0,0 +1,3090 @@ +[ + { + "id": "162:0655184", + "name": "Palm Desert", + "state": "CA", + "query": "\"Palm Desert\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Public Safety | City of Palm Desert", + "url": "https://www.palmdesert.gov/community/public-safety", + "evidence_url": "https://www.palmdesert.gov/community/public-safety", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0636448", + "name": "Indio", + "state": "CA", + "query": "\"Indio\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "DOJ CJSC CRIMES Context", + "url": "https://data-openjustice.doj.ca.gov/sites/default/files/dataset/2025-07/Crimes-Clear-Arson%20Context_06162025.pdf", + "evidence_url": "https://data-openjustice.doj.ca.gov/sites/default/files/dataset/2025-07/Crimes-Clear-Arson%20Context_06162025.pdf", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0670224", + "name": "Santee", + "state": "CA", + "query": "\"Santee\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "newsroom", + "title": "News List | San Diego County Sheriff", + "url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list", + "evidence_url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "News List | San Diego County Sheriff", + "url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-selcat-36/-npage-2", + "evidence_url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-selcat-36/-npage-2", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "News List | San Diego County Sheriff", + "url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-selectview-1/-arch-1", + "evidence_url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-selectview-1/-arch-1", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0621712", + "name": "El Cajon", + "state": "CA", + "query": "\"El Cajon\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "newsroom", + "title": "Happening Now | El Cajon, CA", + "url": "https://www.elcajon.gov/your-government/departments/police-department/information-you-may-need/police-department-news/happening-now", + "evidence_url": "https://www.elcajon.gov/your-government/departments/police-department/information-you-may-need/police-department-news/happening-now", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "Happening Now | El Cajon, CA", + "url": "https://www.elcajon.gov/your-government/departments/police-department/information-you-may-need/police-department-news/happening-now/-arch-1", + "evidence_url": "https://www.elcajon.gov/your-government/departments/police-department/information-you-may-need/police-department-news/happening-now/-arch-1", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Welcome to the El Cajon Police Department | El Cajon, CA", + "url": "https://www.elcajon.gov/your-government/departments/police", + "evidence_url": "https://www.elcajon.gov/your-government/departments/police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0650398", + "name": "National City", + "state": "CA", + "query": "\"National City\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "newsroom", + "title": "Press Releases | National City, CA", + "url": "https://www.nationalcityca.gov/government/police/press-releases", + "evidence_url": "https://www.nationalcityca.gov/government/police/press-releases", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Directory | National City, CA", + "url": "https://www.nationalcityca.gov/government/police/directory", + "evidence_url": "https://www.nationalcityca.gov/government/police/directory", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police | National City, CA", + "url": "https://www.nationalcityca.gov/government/police", + "evidence_url": "https://www.nationalcityca.gov/government/police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0613392", + "name": "Chula Vista", + "state": "CA", + "query": "\"Chula Vista\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "newsroom", + "title": "News Center | City of Chula Vista", + "url": "https://www.chulavistaca.gov/departments/police-department/about-us/transparency-and-accountability/press-log", + "evidence_url": "https://www.chulavistaca.gov/departments/police-department/about-us/transparency-and-accountability/press-log", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Department | City of Chula Vista", + "url": "https://www.chulavistaca.gov/departments/police-department", + "evidence_url": "https://www.chulavistaca.gov/departments/police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Services | City of Chula Vista", + "url": "https://www.chulavistaca.gov/departments/police-department/services", + "evidence_url": "https://www.chulavistaca.gov/departments/police-department/services", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0639496", + "name": "Lake Forest", + "state": "CA", + "query": "\"Lake Forest\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Lake Forest | Orange County California - Sheriff's Department", + "url": "https://ocsheriff.gov/patrol-areas/lake-forest", + "evidence_url": "https://ocsheriff.gov/patrol-areas/lake-forest", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "| Orange County California - Sheriff's Department", + "url": "https://www.ocsheriff.gov/node", + "evidence_url": "https://www.ocsheriff.gov/node", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Services | Lake Forest, CA - Official Website", + "url": "https://city-lakeforest.com/298/Police-Services.html", + "evidence_url": "https://city-lakeforest.com/298/Police-Services.html", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0648256", + "name": "Mission Viejo", + "state": "CA", + "query": "\"Mission Viejo\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Crime Alerts | City of Mission Viejo", + "url": "https://www.missionviejo.gov/category/crime-alerts", + "evidence_url": "https://www.missionviejo.gov/category/crime-alerts", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "incident-log", + "title": "Crime Alerts/News | City of Mission Viejo", + "url": "https://www.missionviejo.gov/departments/police-services/alert-bulletin-resources/crime-alertsnews", + "evidence_url": "https://www.missionviejo.gov/departments/police-services/alert-bulletin-resources/crime-alertsnews", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Services | City of Mission Viejo", + "url": "https://www.missionviejo.gov/departments/police-services", + "evidence_url": "https://www.missionviejo.gov/departments/police-services", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0639248", + "name": "Laguna Niguel", + "state": "CA", + "query": "\"Laguna Niguel\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Laguna Niguel | Orange County California - Sheriff's Department", + "url": "https://www.ocsheriff.gov/patrol-areas/laguna-niguel", + "evidence_url": "https://www.ocsheriff.gov/patrol-areas/laguna-niguel", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Patrol Areas | Orange County California - Sheriff's Department", + "url": "https://www.ocsheriff.gov/patrol-areas", + "evidence_url": "https://www.ocsheriff.gov/patrol-areas", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Laguna Niguel Police Services | Orange County California - Sheriff's Department", + "url": "https://www.ocsheriff.gov/location/laguna-niguel-police-services", + "evidence_url": "https://www.ocsheriff.gov/location/laguna-niguel-police-services", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0687042", + "name": "Yucaipa", + "state": "CA", + "query": "\"Yucaipa\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Yucaipa \u2013 San Bernardino County Sheriff's Department", + "url": "https://wp.sbcounty.gov/sheriff/patrol-stations/yucaipa/", + "evidence_url": "https://wp.sbcounty.gov/sheriff/patrol-stations/yucaipa/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "2024 ANNUAL CRIME REPORT", + "url": "https://wp.sbcounty.gov/sheriff/wp-content/uploads/sites/17/2024-Annual-Crime-Report.pdf", + "evidence_url": "https://wp.sbcounty.gov/sheriff/wp-content/uploads/sites/17/2024-Annual-Crime-Report.pdf", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Yucaipa Police Department \u2013 Dawn Rowe Third District Supervisor", + "url": "https://bosd3.sbcounty.gov/venue/yucaipa-police-department/", + "evidence_url": "https://bosd3.sbcounty.gov/venue/yucaipa-police-department/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0656700", + "name": "Perris", + "state": "CA", + "query": "\"Perris\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Police | City of Perris, CA", + "url": "https://www.cityofperris.org/departments/public-safety/police", + "evidence_url": "https://www.cityofperris.org/departments/public-safety/police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Public Safety | City of Perris, CA", + "url": "https://www.cityofperris.org/departments/public-safety", + "evidence_url": "https://www.cityofperris.org/departments/public-safety", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0665084", + "name": "San Clemente", + "state": "CA", + "query": "\"San Clemente\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Public Safety Services | San Clemente, CA", + "url": "https://www.sanclemente.gov/239/Public-Safety-Services", + "evidence_url": "https://www.sanclemente.gov/239/Public-Safety-Services", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Services (OCSD) | San Clemente, CA", + "url": "https://www.sanclemente.gov/301/Police-Services-OCSD", + "evidence_url": "https://www.sanclemente.gov/301/Police-Services-OCSD", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "San Clemente | Orange County California - Sheriff's Department", + "url": "https://ocsheriff.gov/patrol-areas/san-clemente", + "evidence_url": "https://ocsheriff.gov/patrol-areas/san-clemente", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0646842", + "name": "Menifee", + "state": "CA", + "query": "\"Menifee\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "MENIFEE POLICE DEPARTMENT", + "url": "https://www.cityofmenifee.us/Archive/ViewFile/Item/2998", + "evidence_url": "https://www.cityofmenifee.us/Archive/ViewFile/Item/2998", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0650076", + "name": "Murrieta", + "state": "CA", + "query": "\"Murrieta\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Police Activity Reports | Murrieta, CA", + "url": "https://www.murrietaca.gov/759/Police-Activity-Reports", + "evidence_url": "https://www.murrietaca.gov/759/Police-Activity-Reports", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "Murrieta Police Press Releases | Murrieta, CA", + "url": "https://www.murrietaca.gov/557/Murrieta-Police-Press-Releases", + "evidence_url": "https://www.murrietaca.gov/557/Murrieta-Police-Press-Releases", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police | Murrieta, CA", + "url": "https://mainstreet.murrietaca.gov/1409/Police", + "evidence_url": "https://mainstreet.murrietaca.gov/1409/Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0633182", + "name": "Hemet", + "state": "CA", + "query": "\"Hemet\" California police department official crime reports news alerts", + "channels": [], + "search_note": "Stay Up To Date - Hemet Police Department (https://hemetpd.com/stay-up-to-date)\n\ue200cite\ue202turn373search0\ue201 [wordlim: 200] Crawled: 2 months ago; Sign up wi" + }, + { + "id": "162:0678120", + "name": "Temecula", + "state": "CA", + "query": "\"Temecula\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Temecula Police Department | Temecula CA", + "url": "https://www.temeculaca.gov/196/Police", + "evidence_url": "https://www.temeculaca.gov/196/Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Public Safety | Temecula CA", + "url": "https://temeculaca.gov/publicsafety", + "evidence_url": "https://temeculaca.gov/publicsafety", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Temecula Police Stations | Temecula CA", + "url": "https://temeculaca.gov/228/Temecula-Police-Stations", + "evidence_url": "https://temeculaca.gov/228/Temecula-Police-Stations", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0653322", + "name": "Oceanside", + "state": "CA", + "query": "\"Oceanside\" California police department official crime reports news alerts", + "channels": [], + "search_note": "Press Releases | Oceanside, CA - Police (https://www.oceansidepolice.com/about-opd/press-releases)\n\ue200cite\ue202turn377search0\ue201 [wordlim: 200] Crawled: 2 day" + }, + { + "id": "162:0682996", + "name": "Vista", + "state": "CA", + "query": "\"Vista\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "newsroom", + "title": "News List | San Diego County Sheriff", + "url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-selectview-1/-arch-1", + "evidence_url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-selectview-1/-arch-1", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "News List | San Diego County Sheriff", + "url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-npage-3/-arch-1", + "evidence_url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-npage-3/-arch-1", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Vista Station | Patrol Stations | San Diego County Sheriff", + "url": "https://www.sdsheriff.gov/Home/Components/FacilityDirectory/FacilityDirectory/46/61", + "evidence_url": "https://www.sdsheriff.gov/Home/Components/FacilityDirectory/FacilityDirectory/46/61", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0611194", + "name": "Carlsbad", + "state": "CA", + "query": "\"Carlsbad\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Police Department | Carlsbad, CA", + "url": "https://www.carlsbadca.gov/Departments/police", + "evidence_url": "https://www.carlsbadca.gov/Departments/police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Department | Carlsbad, CA", + "url": "https://www.carlsbadca.gov/departments/police/-npage-3", + "evidence_url": "https://www.carlsbadca.gov/departments/police/-npage-3", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Department | Carlsbad, CA", + "url": "https://www.carlsbadca.gov/departments/police/-npage-2", + "evidence_url": "https://www.carlsbadca.gov/departments/police/-npage-2", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0612048", + "name": "Cathedral City", + "state": "CA", + "query": "\"Cathedral City\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Online Services & Reporting | City of Cathedral City", + "url": "https://www.cathedralcity.gov/departments/police-department/online-services-reporting", + "evidence_url": "https://www.cathedralcity.gov/departments/police-department/online-services-reporting", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Services & Operations | City of Cathedral City", + "url": "https://www.cathedralcity.gov/departments/police-department/services-operations", + "evidence_url": "https://www.cathedralcity.gov/departments/police-department/services-operations", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Department | City of Cathedral City", + "url": "https://www.cathedralcity.gov/departments/police-department", + "evidence_url": "https://www.cathedralcity.gov/departments/police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0622678", + "name": "Encinitas", + "state": "CA", + "query": "\"Encinitas\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Sheriff Quarterly Presentation | City of Encinitas", + "url": "https://www.encinitasca.gov/government/departments/public-safety/sheriff-quarterly-presentation", + "evidence_url": "https://www.encinitasca.gov/government/departments/public-safety/sheriff-quarterly-presentation", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "News List | San Diego County Sheriff", + "url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-npage-4", + "evidence_url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-npage-4", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "News List | San Diego County Sheriff", + "url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-npage-3/-arch-1", + "evidence_url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-npage-3/-arch-1", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0658072", + "name": "Pomona", + "state": "CA", + "query": "\"Pomona\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Police Department | City of Pomona, CA", + "url": "https://www.pomonaca.gov/government/departments/police-department?locale=en", + "evidence_url": "https://www.pomonaca.gov/government/departments/police-department?locale=en", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Department | City of Pomona, CA", + "url": "https://www.pomonaca.gov/government/departments/police-department?locale=en"=", + "evidence_url": "https://www.pomonaca.gov/government/departments/police-department?locale=en"=", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "City Of Pomona Police Department", + "url": "https://locator.lacounty.gov/lac/Location/3175457/city-of-pomona-police-department", + "evidence_url": "https://locator.lacounty.gov/lac/Location/3175457/city-of-pomona-police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0608786", + "name": "Buena Park", + "state": "CA", + "query": "\"Buena Park\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "OC Crime Stoppers | Orange County California - Sheriff's Department", + "url": "https://www.ocsheriff.gov/occrimestoppers", + "evidence_url": "https://www.ocsheriff.gov/occrimestoppers", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Buena Park Police Department | State of California - Department of Justice - Office of the Attorney General", + "url": "https://oag.ca.gov/fingerprints/locations/buena-park-police-department", + "evidence_url": "https://oag.ca.gov/fingerprints/locations/buena-park-police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "California Department of Justice Investigating Buena Park Police Department Officer-Involved Shooting Under AB 1506 | State of California - Department of Justice - Office of the Attorney General", + "url": "https://www.oag.ca.gov/news/press-releases/california-department-justice-investigating-buena-park-police-department-officer", + "evidence_url": "https://www.oag.ca.gov/news/press-releases/california-department-justice-investigating-buena-park-police-department-officer", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0619192", + "name": "Diamond Bar", + "state": "CA", + "query": "\"Diamond Bar\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Public Safety | Diamond Bar, CA", + "url": "https://www.diamondbarca.gov/189/Public-Safety", + "evidence_url": "https://www.diamondbarca.gov/189/Public-Safety", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "", + "url": "https://oag.ca.gov/system/files/attachments/press-docs/AB%201191%20Crime%20Gun%20Report.pdf", + "evidence_url": "https://oag.ca.gov/system/files/attachments/press-docs/AB%201191%20Crime%20Gun%20Report.pdf", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0628000", + "name": "Fullerton", + "state": "CA", + "query": "\"Fullerton\" California police department official crime reports news alerts", + "channels": [], + "search_note": "Police | Fullerton, CA (https://www.cityoffullerton.com/government/departments/police)\n\ue200cite\ue202turn338search0\ue201 [wordlim: 200] Crawled: last month; *" + }, + { + "id": "162:0653896", + "name": "Ontario", + "state": "CA", + "query": "\"Ontario\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Contact Us | City of Ontario, California", + "url": "https://www.ontarioca.gov/government/police/about-us/contact-us", + "evidence_url": "https://www.ontarioca.gov/government/police/about-us/contact-us", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police | City of Ontario, California", + "url": "https://www.ontarioca.gov/government/police", + "evidence_url": "https://www.ontarioca.gov/government/police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Online Police Reporting | City of Ontario, California", + "url": "https://www.ontarioca.gov/government/police/online-police-reporting", + "evidence_url": "https://www.ontarioca.gov/government/police/online-police-reporting", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0684550", + "name": "Westminster", + "state": "CA", + "query": "\"Westminster\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "newsroom", + "title": "Press Releases | Westminster, CA", + "url": "https://www.westminster-ca.gov/departments/police/our-department/press-releases", + "evidence_url": "https://www.westminster-ca.gov/departments/police/our-department/press-releases", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police | Westminster, CA", + "url": "https://www.westminster-ca.gov/departments/police", + "evidence_url": "https://www.westminster-ca.gov/departments/police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "Press Releases | Westminster, CA", + "url": "https://www.westminster-ca.gov/departments/police/our-department/press-releases/-arch-1", + "evidence_url": "https://www.westminster-ca.gov/departments/police/our-department/press-releases/-arch-1", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0686832", + "name": "Yorba Linda", + "state": "CA", + "query": "\"Yorba Linda\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Police | Yorba Linda, CA", + "url": "https://www.yorbalindaca.gov/275/Police", + "evidence_url": "https://www.yorbalindaca.gov/275/Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Statistics | Yorba Linda, CA", + "url": "https://www.yorbalindaca.gov/411/Crime-Statistics", + "evidence_url": "https://www.yorbalindaca.gov/411/Crime-Statistics", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Yorba Linda | Orange County California - Sheriff's Department", + "url": "https://www.ocsheriff.gov/patrol-areas/yorba-linda", + "evidence_url": "https://www.ocsheriff.gov/patrol-areas/yorba-linda", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0633434", + "name": "Hesperia", + "state": "CA", + "query": "\"Hesperia\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Staff Directory \u2022 Police Department", + "url": "https://hesperiaca.gov/directory.aspx?did=7", + "evidence_url": "https://hesperiaca.gov/directory.aspx?did=7", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Map | City of Hesperia - Official Website", + "url": "https://www.hesperiaca.gov/325/Crime-Map", + "evidence_url": "https://www.hesperiaca.gov/325/Crime-Map", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police | City of Hesperia - Official Website", + "url": "https://www.hesperiaca.gov/306/Police", + "evidence_url": "https://www.hesperiaca.gov/306/Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0625380", + "name": "Fountain Valley", + "state": "CA", + "query": "\"Fountain Valley\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Police Department | The City of Fountain Valley", + "url": "https://www.fountainvalley.gov/1471/Police-Department", + "evidence_url": "https://www.fountainvalley.gov/1471/Police-Department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "My Police Department | The City of Fountain Valley", + "url": "https://www.fountainvalley.gov/430/My-Police-Department", + "evidence_url": "https://www.fountainvalley.gov/430/My-Police-Department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Prevention | The City of Fountain Valley", + "url": "https://fountainvalley.gov/709/Crime-Prevention", + "evidence_url": "https://fountainvalley.gov/709/Crime-Prevention", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0636000", + "name": "Huntington Beach", + "state": "CA", + "query": "\"Huntington Beach\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "OC Crime Stoppers | Orange County California - Sheriff's Department", + "url": "https://www.ocsheriff.gov/occrimestoppers", + "evidence_url": "https://www.ocsheriff.gov/occrimestoppers", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "WebPolice (MapServer)", + "url": "https://gis.huntingtonbeachca.gov/arcgis/rest/services/WebPolice/MapServer", + "evidence_url": "https://gis.huntingtonbeachca.gov/arcgis/rest/services/WebPolice/MapServer", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Residential Burglary Crew Arrested - Irvine Police Department", + "url": "https://irvinepd.gov/2026/06/25/residential-burglary-crew-arrested-2/", + "evidence_url": "https://irvinepd.gov/2026/06/25/residential-burglary-crew-arrested-2/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0602000", + "name": "Anaheim", + "state": "CA", + "query": "\"Anaheim\" California police department official crime reports news alerts", + "channels": [], + "search_note": "Anaheim Police, CA | Official Website (https://pd.anaheim.net/)\n\ue200cite\ue202turn346search0\ue201 [wordlim: 200] Crawled: 2 days ago; * File a ReportFile a repo" + }, + { + "id": "162:0653980", + "name": "Orange", + "state": "CA", + "query": "\"Orange\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Public Information | City of Orange, CA", + "url": "https://www.cityoforange.org/our-city/departments/police/public-information", + "evidence_url": "https://www.cityoforange.org/our-city/departments/police/public-information", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Records Bureau | City of Orange, CA", + "url": "https://www.cityoforange.org/our-city/departments/police/records-bureau", + "evidence_url": "https://www.cityoforange.org/our-city/departments/police/records-bureau", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "File an Online Police Report | City of Orange, CA", + "url": "https://www.cityoforange.org/our-city/departments/police/file-an-online-police-report", + "evidence_url": "https://www.cityoforange.org/our-city/departments/police/file-an-online-police-report", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0660466", + "name": "Rialto", + "state": "CA", + "query": "\"Rialto\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Staff Directory \u2022 Police Department", + "url": "https://www.rialtoca.gov/m/directory/department?did=53", + "evidence_url": "https://www.rialtoca.gov/m/directory/department?did=53", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0621230", + "name": "Eastvale", + "state": "CA", + "query": "\"Eastvale\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Crime Statistics | City of Eastvale, CA", + "url": "https://www.eastvaleca.gov/services/law-enforcement-services/crime-statistics", + "evidence_url": "https://www.eastvaleca.gov/services/law-enforcement-services/crime-statistics", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Services | City of Eastvale, CA", + "url": "https://www.eastvaleca.gov/government/police-services", + "evidence_url": "https://www.eastvaleca.gov/government/police-services", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0602364", + "name": "Apple Valley", + "state": "CA", + "query": "\"Apple Valley\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "newsroom", + "title": "Police News | Town of Apple Valley", + "url": "https://www.applevalley.org/services/police-department/police-news", + "evidence_url": "https://www.applevalley.org/services/police-department/police-news", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Department | Apple Valley, MN - Official Website", + "url": "https://www.applevalleymn.gov/114/Police-Department", + "evidence_url": "https://www.applevalleymn.gov/114/Police-Department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Department | Apple Valley, MN - Official Website", + "url": "https://applevalleymn.gov/114/Police-Department", + "evidence_url": "https://applevalleymn.gov/114/Police-Department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0637692", + "name": "Jurupa Valley", + "state": "CA", + "query": "\"Jurupa Valley\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "City of Jurupa Valley", + "url": "https://www.bscc.ca.gov/wp-content/uploads/78-Riverside-County-Jurupa-Valley-Sheriff-Station.pdf", + "evidence_url": "https://www.bscc.ca.gov/wp-content/uploads/78-Riverside-County-Jurupa-Valley-Sheriff-Station.pdf", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0616532", + "name": "Costa Mesa", + "state": "CA", + "query": "\"Costa Mesa\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Media & Public Affairs | City of Costa Mesa", + "url": "https://www.costamesaca.gov/government/departments-and-divisions/police/department-divisions/administration/media-public-affairs", + "evidence_url": "https://www.costamesaca.gov/government/departments-and-divisions/police/department-divisions/administration/media-public-affairs", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Information | City of Costa Mesa", + "url": "https://www.costamesaca.gov/government/departments-and-divisions/police/police-information", + "evidence_url": "https://www.costamesaca.gov/government/departments-and-divisions/police/police-information", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Statistics | City of Costa Mesa", + "url": "https://www.costamesaca.gov/government/departments-and-divisions/police/police-information/crime-statistics", + "evidence_url": "https://www.costamesaca.gov/government/departments-and-divisions/police/police-information/crime-statistics", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0665000", + "name": "San Bernardino", + "state": "CA", + "query": "\"San Bernardino\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Police Department | San Bernardino, CA", + "url": "https://www.sanbernardino.gov/police", + "evidence_url": "https://www.sanbernardino.gov/police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Form Center \u2022 Police Department", + "url": "https://sanbernardino.gov/FormCenter/Police-Department-10", + "evidence_url": "https://sanbernardino.gov/FormCenter/Police-Department-10", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Statistics | San Bernardino, CA", + "url": "https://www.sanbernardino.gov/600/Crime-Statistics", + "evidence_url": "https://www.sanbernardino.gov/600/Crime-Statistics", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0662000", + "name": "Riverside", + "state": "CA", + "query": "\"Riverside\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Home | Riverside Police Department", + "url": "https://riversideca.gov/rpd/rpd/rpd/", + "evidence_url": "https://riversideca.gov/rpd/rpd/rpd/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "About & Contact | Riverside Police Department", + "url": "https://www.riversideca.gov/rpd/about-contact", + "evidence_url": "https://www.riversideca.gov/rpd/about-contact", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "RIVERSIDE POLICE DEPARTMENT", + "url": "https://riversideca.gov/Explore/2018/Explore_WinSpr_DIGITAL_Linked.pdf", + "evidence_url": "https://riversideca.gov/Explore/2018/Explore_WinSpr_DIGITAL_Linked.pdf", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0614890", + "name": "Colton", + "state": "CA", + "query": "\"Colton\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Colton Police Department | Protecting Our Community Since 1887", + "url": "https://police.coltonca.gov/", + "evidence_url": "https://police.coltonca.gov/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "News Releases | Colton Police Department", + "url": "https://police.coltonca.gov/news-releases/", + "evidence_url": "https://police.coltonca.gov/news-releases/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Records | Colton Police Department", + "url": "https://police.coltonca.gov/records/", + "evidence_url": "https://police.coltonca.gov/records/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0633588", + "name": "Highland", + "state": "CA", + "query": "\"Highland\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Staff Directory \u2022 Police / Sheriff's Department", + "url": "https://www.highlandca.gov/m/directory/department?did=24", + "evidence_url": "https://www.highlandca.gov/m/directory/department?did=24", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "2024 ANNUAL CRIME REPORT", + "url": "https://wp.sbcounty.gov/sheriff/wp-content/uploads/sites/17/2024-Annual-Crime-Report.pdf", + "evidence_url": "https://wp.sbcounty.gov/sheriff/wp-content/uploads/sites/17/2024-Annual-Crime-Report.pdf", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "AB 1191 Crime Gun Report 2025", + "url": "https://oag.ca.gov/system/files/media/ab1191-crime-gun-report-2025.pdf", + "evidence_url": "https://oag.ca.gov/system/files/media/ab1191-crime-gun-report-2025.pdf", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0632548", + "name": "Hawthorne", + "state": "CA", + "query": "\"Hawthorne\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Police Department | Hawthorne, CA", + "url": "https://www.cityofhawthorne.org/departments/police-department", + "evidence_url": "https://www.cityofhawthorne.org/departments/police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "City Of Hawthorne Police Department", + "url": "https://locator.lacounty.gov/lac/Location/3068923/city-of-hawthorne-police-department", + "evidence_url": "https://locator.lacounty.gov/lac/Location/3068923/city-of-hawthorne-police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "nextdoor", + "title": "Hawthorne Police Department - 472 updates", + "url": "https://nextdoor.com/agency-detail/ca/hawthorne/hawthorne-police/", + "evidence_url": "https://nextdoor.com/agency-detail/ca/hawthorne/hawthorne-police/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0602462", + "name": "Arcadia", + "state": "CA", + "query": "\"Arcadia\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Arcadia, CA - Police", + "url": "https://www.arcadiacapolice.gov/services/request_a_police_record.php", + "evidence_url": "https://www.arcadiacapolice.gov/services/request_a_police_record.php", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Arcadia, CA - Police", + "url": "https://www.arcadiacapolice.gov/about_us/contact_us.php", + "evidence_url": "https://www.arcadiacapolice.gov/about_us/contact_us.php", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Arcadia, CA - Police", + "url": "https://www.arcadiaca.gov/government/police/services/index.php", + "evidence_url": "https://www.arcadiaca.gov/government/police/services/index.php", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0660018", + "name": "Redondo Beach", + "state": "CA", + "query": "\"Redondo Beach\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Redondo Beach Police Department", + "url": "https://www.redondo.org/Police%20Pictures/PD%20PDF/Transparency/RBPD%20Policy%20Manual%20September%202024.pdf", + "evidence_url": "https://www.redondo.org/Police%20Pictures/PD%20PDF/Transparency/RBPD%20Policy%20Manual%20September%202024.pdf", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "City Of Redondo Beach Police Department", + "url": "https://locator.lacounty.gov/lac/Location/3068962/city-of-redondo-beach-police-department", + "evidence_url": "https://locator.lacounty.gov/lac/Location/3068962/city-of-redondo-beach-police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0622230", + "name": "El Monte", + "state": "CA", + "query": "\"El Monte\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Police | El Monte, CA", + "url": "https://www.elmonteca.gov/209/Police", + "evidence_url": "https://www.elmonteca.gov/209/Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Staff Directory \u2022 Police", + "url": "https://www.elmonteca.gov/m/directory/department?did=13", + "evidence_url": "https://www.elmonteca.gov/m/directory/department?did=13", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Staff Directory \u2022 Police", + "url": "https://www.ci.el-monte.ca.us/m/directory/department?did=13", + "evidence_url": "https://www.ci.el-monte.ca.us/m/directory/department?did=13", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0619766", + "name": "Downey", + "state": "CA", + "query": "\"Downey\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "newsroom", + "title": "Department News | City of Downey, CA", + "url": "https://www.downeyca.org/our-city/departments/police/department-news", + "evidence_url": "https://www.downeyca.org/our-city/departments/police/department-news", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "File Online Report | City of Downey, CA", + "url": "https://www.downeyca.org/our-city/departments/police/file-online-report", + "evidence_url": "https://www.downeyca.org/our-city/departments/police/file-online-report", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Prevention and Safety | City of Downey, CA", + "url": "https://www.downeyca.org/our-city/departments/police/crime-prevention-and-safety", + "evidence_url": "https://www.downeyca.org/our-city/departments/police/crime-prevention-and-safety", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0656924", + "name": "Pico Rivera", + "state": "CA", + "query": "\"Pico Rivera\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "newsroom", + "title": "*UPDATE* LOCATED AT-RISK MISSING - MCGIFFERT", + "url": "https://origin.www.longbeach.gov/police/press-releases/at-risk-missing---mcgiffert/", + "evidence_url": "https://origin.www.longbeach.gov/police/press-releases/at-risk-missing---mcgiffert/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0611530", + "name": "Carson", + "state": "CA", + "query": "\"Carson\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Public Safety and Emergency Management Services", + "url": "https://ci.carson.ca.us/CityManager/PublicSafety.aspx", + "evidence_url": "https://ci.carson.ca.us/CityManager/PublicSafety.aspx", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Public Safety and Emergency Management Services", + "url": "https://ci.carson.ca.us/citymanager/PublicSafety.aspx", + "evidence_url": "https://ci.carson.ca.us/citymanager/PublicSafety.aspx", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime in our Area | Carson City", + "url": "https://www.carsoncity.gov/government/departments-g-z/sheriff-s-office/crime-in-our-area", + "evidence_url": "https://www.carsoncity.gov/government/departments-g-z/sheriff-s-office/crime-in-our-area", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0615044", + "name": "Compton", + "state": "CA", + "query": "\"Compton\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "newsroom", + "title": "Sheriff\u2019s Department Continues Compton Homicide Investigations | City News | Compton, CA", + "url": "https://www.comptoncity.org/Home/Components/News/News/152/16", + "evidence_url": "https://www.comptoncity.org/Home/Components/News/News/152/16", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "*Update* Located At-Risk Missing Person - Charles Garner III", + "url": "https://www.longbeach.gov/police/press-releases/at-risk-missing-person---charles-garner-iii/", + "evidence_url": "https://www.longbeach.gov/police/press-releases/at-risk-missing-person---charles-garner-iii/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Services | Compton, CA", + "url": "https://www.comptoncity.org/services/police-services", + "evidence_url": "https://www.comptoncity.org/services/police-services", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0604982", + "name": "Bellflower", + "state": "CA", + "query": "\"Bellflower\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Residential Burglary Crew Arrested - Irvine Police Department", + "url": "https://irvinepd.gov/2026/06/25/residential-burglary-crew-arrested-2/", + "evidence_url": "https://irvinepd.gov/2026/06/25/residential-burglary-crew-arrested-2/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "*UPDATE* LOCATED AT-RISK MISSING PERSON - JUAN MUNOZ", + "url": "https://origin.www.longbeach.gov/police/press-releases/at-risk-missing-person---juan-munoz/", + "evidence_url": "https://origin.www.longbeach.gov/police/press-releases/at-risk-missing-person---juan-munoz/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "*UPDATE* TRAFFIC FATALITY ARREST \u2013 2200 BLOCK OF BELLFLOWER BOULEVARD", + "url": "https://www.longbeach.gov/police/press-releases/traffic-fatality--2200-block-of-bellflower-boulevard/", + "evidence_url": "https://www.longbeach.gov/police/press-releases/traffic-fatality--2200-block-of-bellflower-boulevard/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0685292", + "name": "Whittier", + "state": "CA", + "query": "\"Whittier\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "City Of Whittier Police Department", + "url": "https://locator.lacounty.gov/lac/Location/3175447/city-of-whittier-police-department", + "evidence_url": "https://locator.lacounty.gov/lac/Location/3175447/city-of-whittier-police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0652526", + "name": "Norwalk", + "state": "CA", + "query": "\"Norwalk\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Police Department | Norwalk, CT - Official Website", + "url": "https://www.norwalkct.gov/139/Police-Department", + "evidence_url": "https://www.norwalkct.gov/139/Police-Department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "Police", + "url": "https://source.www.longbeach.gov/press-release-archive/?cid=6697", + "evidence_url": "https://source.www.longbeach.gov/press-release-archive/?cid=6697", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "Police", + "url": "https://longbeach.gov/press-release-archive/?cid=6697", + "evidence_url": "https://longbeach.gov/press-release-archive/?cid=6697", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0655618", + "name": "Paramount", + "state": "CA", + "query": "\"Paramount\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Public Safety Department - City of Paramount", + "url": "https://www.paramountcity.gov/government/departments/public-safety/", + "evidence_url": "https://www.paramountcity.gov/government/departments/public-safety/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "TRAFFIC FATALITY - PARAMOUNT BOULEVARD AND 56TH STREET", + "url": "https://longbeach.gov/police/press-releases/traffic-fatality---paramount-boulevard-and-56th-street/", + "evidence_url": "https://longbeach.gov/police/press-releases/traffic-fatality---paramount-boulevard-and-56th-street/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "incident-log", + "title": "LBPD Blotter - June 19, 2026", + "url": "https://www.longbeach.gov/police/news/lbpd-blotter-june-19-2026/", + "evidence_url": "https://www.longbeach.gov/police/news/lbpd-blotter-june-19-2026/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0603526", + "name": "Bakersfield", + "state": "CA", + "query": "\"Bakersfield\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Protecting the Central Valley: Results Show Initial Success in CHP\u2019s Operations to Take Down Crime | Governor of California", + "url": "https://www.gov.ca.gov/2024/04/30/chp-bakersfield-public-safety-2/", + "evidence_url": "https://www.gov.ca.gov/2024/04/30/chp-bakersfield-public-safety-2/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0659920", + "name": "Redding", + "state": "CA", + "query": "\"Redding\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Police Department", + "url": "https://files.cityofredding.gov/government/departments/police/index.php", + "evidence_url": "https://files.cityofredding.gov/government/departments/police/index.php", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Redding Police Department", + "url": "https://files.cityofredding.gov/Document%20Center/Departments/Police/Policies%20%26%20Reference%20Library/Policy%20Manual/General%20Operations/316_Public_Alerts.pdf", + "evidence_url": "https://files.cityofredding.gov/Document%20Center/Departments/Police/Policies%20%26%20Reference%20Library/Policy%20Manual/General%20Operations/316_Public_Alerts.pdf", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Statistics", + "url": "https://files.cityofredding.gov/government/departments/police/crime_info/crime_statistics.php", + "evidence_url": "https://files.cityofredding.gov/government/departments/police/crime_info/crime_statistics.php", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0654652", + "name": "Oxnard", + "state": "CA", + "query": "\"Oxnard\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "newsroom", + "title": "Police Department News | City of Oxnard", + "url": "https://www.oxnard.gov/police-department/pd-news", + "evidence_url": "https://www.oxnard.gov/police-department/pd-news", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Department | City of Oxnard", + "url": "https://www.oxnard.gov/police-department", + "evidence_url": "https://www.oxnard.gov/police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "Police Department News | City of Oxnard", + "url": "https://www.oxnard.gov/police-department/pd-news/", + "evidence_url": "https://www.oxnard.gov/police-department/pd-news/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0672016", + "name": "Simi Valley", + "state": "CA", + "query": "\"Simi Valley\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Police Department | City of Simi Valley, CA", + "url": "https://www.simivalley.org/departments/police-department", + "evidence_url": "https://www.simivalley.org/departments/police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "California Department of Justice Investigating Simi Valley Police Department Officer-Involved Shooting Under AB 1506 | State of California - Department of Justice - Office of the Attorney General", + "url": "https://www.oag.ca.gov/news/press-releases/california-department-justice-investigating-simi-valley-police-department", + "evidence_url": "https://www.oag.ca.gov/news/press-releases/california-department-justice-investigating-simi-valley-police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Resources | City of Simi Valley, CA", + "url": "https://www.simivalley.org/departments/police-department/resources", + "evidence_url": "https://www.simivalley.org/departments/police-department/resources", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0610046", + "name": "Camarillo", + "state": "CA", + "query": "\"Camarillo\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Camarillo Police Department | State of California - Department of Justice - Office of the Attorney General", + "url": "https://oag.ca.gov/fingerprints/locations/camarillo-police-department", + "evidence_url": "https://oag.ca.gov/fingerprints/locations/camarillo-police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "Camarillo \u2013 News Story-Kid Print & Person at Risk Prints conducted at the Camarillo Police Department \u2013 Ventura Sheriff Official Website", + "url": "https://sheriff.venturacounty.gov/?p=9065", + "evidence_url": "https://sheriff.venturacounty.gov/?p=9065", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "INITIAL REPORTS", + "url": "https://sheriff.venturacounty.gov/wp-content/uploads/2023/10/20030826OIS200324690_report_finalcompressed.pdf", + "evidence_url": "https://sheriff.venturacounty.gov/wp-content/uploads/2023/10/20030826OIS200324690_report_finalcompressed.pdf", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0669088", + "name": "Santa Clarita", + "state": "CA", + "query": "\"Santa Clarita\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "New Virtual Deputy Services Enhances Public Safety in Santa Clarita - City of Santa Clarita", + "url": "https://santaclarita.gov/blog/2025/09/20/new-virtual-deputy-services-enhances-public-safety-in-santa-clarita/", + "evidence_url": "https://santaclarita.gov/blog/2025/09/20/new-virtual-deputy-services-enhances-public-safety-in-santa-clarita/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "City of Santa Clarita Announces Brandon Barclay as New Chief of Police - City of Santa Clarita", + "url": "https://santaclarita.gov/blog/2025/08/14/city-of-santa-clarita-announces-brandon-barclay-as-new-chief-of-police/", + "evidence_url": "https://santaclarita.gov/blog/2025/08/14/city-of-santa-clarita-announces-brandon-barclay-as-new-chief-of-police/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0655156", + "name": "Palmdale", + "state": "CA", + "query": "\"Palmdale\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "newsroom", + "title": "Proactively Safe: Palmdale\u2019s Robust Public Safety Initiatives Yield Results", + "url": "https://www.cityofpalmdaleca.gov/m/newsflash/home/detail/1859", + "evidence_url": "https://www.cityofpalmdaleca.gov/m/newsflash/home/detail/1859", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Los Angeles Police Department", + "url": "https://file.lacounty.gov/lasd/cms1_154628.pdf", + "evidence_url": "https://file.lacounty.gov/lasd/cms1_154628.pdf", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0665042", + "name": "San Buenaventura (Ventura)", + "state": "CA", + "query": "\"San Buenaventura (Ventura)\" California police department official crime reports news alerts", + "channels": [], + "search_note": "Quick Links \u2022 Ventura, CA \u2022 CivicEngage (https://www.cityofventura.ca.gov/QuickLinks.aspx)\n\ue200cite\ue202turn289search0\ue201 [wordlim: 200] Crawled: 2 days ago; S" + }, + { + "id": "162:0640130", + "name": "Lancaster", + "state": "CA", + "query": "\"Lancaster\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Lancaster Police Department | City of Lancaster", + "url": "https://www.cityoflancasterca.org/our-city/departments-services/public-safety", + "evidence_url": "https://www.cityoflancasterca.org/our-city/departments-services/public-safety", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "News - Lancaster City Bureau of Police", + "url": "https://police.cityoflancasterpa.gov/news/", + "evidence_url": "https://police.cityoflancasterpa.gov/news/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "Lancaster Police Department | City of Lancaster", + "url": "https://www.cityoflancasterca.org/Home/Components/News/News/10422/2541", + "evidence_url": "https://www.cityoflancasterca.org/Home/Components/News/News/10422/2541", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0630000", + "name": "Glendale", + "state": "CA", + "query": "\"Glendale\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "newsroom", + "title": "Glendale Police News & Media Relations | City of Glendale, CA", + "url": "https://www.glendaleca.gov/government/departments/police-department/news-media-relations", + "evidence_url": "https://www.glendaleca.gov/government/departments/police-department/news-media-relations", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Glendale Police Department, California | City of Glendale, CA", + "url": "https://www.glendaleca.gov/government/departments/police-department", + "evidence_url": "https://www.glendaleca.gov/government/departments/police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Transparency | City of Glendale, CA", + "url": "https://www.glendaleca.gov/government/departments/police-department/transparency", + "evidence_url": "https://www.glendaleca.gov/government/departments/police-department/transparency", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0636546", + "name": "Inglewood", + "state": "CA", + "query": "\"Inglewood\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Crime Statistics | Inglewood, CA", + "url": "https://www.cityofinglewood.org/659/Crime-Statistics", + "evidence_url": "https://www.cityofinglewood.org/659/Crime-Statistics", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police | Inglewood, CA", + "url": "https://www.cityofinglewood.org/1649/Police", + "evidence_url": "https://www.cityofinglewood.org/1649/Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Inglewood Police Department", + "url": "https://locator.lacounty.gov/lac/Location/3052997/inglewood-police-department", + "evidence_url": "https://locator.lacounty.gov/lac/Location/3052997/inglewood-police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0644000", + "name": "Los Angeles", + "state": "CA", + "query": "\"Los Angeles\" California police department official crime reports news alerts", + "channels": [], + "search_note": "Newsroom - LAPD Online (https://www.lapdonline.org/lapd-newsroom/)\n\ue200cite\ue202turn305search0\ue201 [wordlim: 200] Crawled: 3 days ago; Silver Alert Issued for M" + }, + { + "id": "162:0600884", + "name": "Alhambra", + "state": "CA", + "query": "\"Alhambra\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Crime Statistics | Alhambra, CA", + "url": "https://alhambraca.gov/271/Crime-Statistics", + "evidence_url": "https://alhambraca.gov/271/Crime-Statistics", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police | Alhambra, CA", + "url": "https://www.alhambraca.gov/834/Police", + "evidence_url": "https://www.alhambraca.gov/834/Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police - 2025 | Alhambra, CA", + "url": "https://www.cityofalhambra.org/834", + "evidence_url": "https://www.cityofalhambra.org/834", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0622020", + "name": "Elk Grove", + "state": "CA", + "query": "\"Elk Grove\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Police Department", + "url": "https://elkgrove.gov/departments-and-divisions/police-department", + "evidence_url": "https://elkgrove.gov/departments-and-divisions/police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Safety Dashboard", + "url": "https://elkgrove.gov/police/safety-dashboard", + "evidence_url": "https://elkgrove.gov/police/safety-dashboard", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Emergencies and Non-emergencies", + "url": "https://elkgrove.gov/police/emergencies-and-non-emergencies", + "evidence_url": "https://elkgrove.gov/police/emergencies-and-non-emergencies", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0618100", + "name": "Davis", + "state": "CA", + "query": "\"Davis\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Online Crime Reporting | City of Davis, CA", + "url": "https://www.cityofdavis.org/city-hall/police-department/online-crime-reporting", + "evidence_url": "https://www.cityofdavis.org/city-hall/police-department/online-crime-reporting", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Contact Us | City of Davis, CA", + "url": "https://www.cityofdavis.org/city-hall/police-department/contact-us-6030", + "evidence_url": "https://www.cityofdavis.org/city-hall/police-department/contact-us-6030", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Davis Police Department | City of Davis, CA", + "url": "https://www.cityofdavis.org/city-hall/police-department/", + "evidence_url": "https://www.cityofdavis.org/city-hall/police-department/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0670098", + "name": "Santa Rosa", + "state": "CA", + "query": "\"Santa Rosa\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Police Reports | Santa Rosa, CA", + "url": "https://www.srcity.org/3328/Police-Reports", + "evidence_url": "https://www.srcity.org/3328/Police-Reports", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Santa Rosa Police Department", + "url": "https://www.bscc.ca.gov/wp-content/uploads/97-Santa-Rosa-Police.pdf", + "evidence_url": "https://www.bscc.ca.gov/wp-content/uploads/97-Santa-Rosa-Police.pdf", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police | Santa Rosa, CA", + "url": "https://www.srcity.org/3929/Police", + "evidence_url": "https://www.srcity.org/3929/Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0684816", + "name": "West Sacramento", + "state": "CA", + "query": "\"West Sacramento\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Contact Us | City of West Sacramento", + "url": "https://www.cityofwestsacramento.org/government/departments/police/contact-us", + "evidence_url": "https://www.cityofwestsacramento.org/government/departments/police/contact-us", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Records Section | City of West Sacramento", + "url": "https://www.cityofwestsacramento.org/government/departments/police/police-divisions-and-units/office-of-operations/records-section", + "evidence_url": "https://www.cityofwestsacramento.org/government/departments/police/police-divisions-and-units/office-of-operations/records-section", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "WEST SACRAMENTO POLICE DEPARTMENT | City of West Sacramento", + "url": "https://www.cityofwestsacramento.org/government/departments/police?from=AppAgg.com", + "evidence_url": "https://www.cityofwestsacramento.org/government/departments/police?from=AppAgg.com", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0662364", + "name": "Rocklin", + "state": "CA", + "query": "\"Rocklin\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "newsroom", + "title": "pd-news - City of Rocklin", + "url": "https://www.rocklin.ca.us/overview/pd-news-and-crime-reports", + "evidence_url": "https://www.rocklin.ca.us/overview/pd-news-and-crime-reports", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "Police Department News - City of Rocklin", + "url": "https://www.rocklin.ca.us/news/police-department-news", + "evidence_url": "https://www.rocklin.ca.us/news/police-department-news", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police - City of Rocklin", + "url": "https://www.rocklin.ca.us/locations-link/police-department", + "evidence_url": "https://www.rocklin.ca.us/locations-link/police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0659444", + "name": "Rancho Cordova", + "state": "CA", + "query": "\"Rancho Cordova\" California police department official crime reports news alerts", + "channels": [], + "search_note": "Rancho Cordova Police Department | Home (https://www.ranchocordovapd.com/)\n\ue200cite\ue202turn266search0\ue201 [wordlim: 200] Crawled: 2 days ago; # Rancho Cordova " + }, + { + "id": "162:0627000", + "name": "Fresno", + "state": "CA", + "query": "\"Fresno\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Police Department \u2013 City of Fresno", + "url": "https://www.fresno.gov/police/", + "evidence_url": "https://www.fresno.gov/police/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Records and Reports \u2013 City of Fresno", + "url": "https://www.fresno.gov/police/records-and-reports/", + "evidence_url": "https://www.fresno.gov/police/records-and-reports/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Contacts \u2013 City of Fresno", + "url": "https://www.fresno.gov/police/police-contacts/", + "evidence_url": "https://www.fresno.gov/police/police-contacts/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0624638", + "name": "Folsom", + "state": "CA", + "query": "\"Folsom\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Police | Folsom, CA", + "url": "https://www.folsom.ca.us/government/police", + "evidence_url": "https://www.folsom.ca.us/government/police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "incident-log", + "title": "Police Log | Folsom, CA", + "url": "https://www.folsom.ca.us/government/police/crime-information/police-log", + "evidence_url": "https://www.folsom.ca.us/government/police/crime-information/police-log", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Connect with Us | Folsom, CA", + "url": "https://www.folsom.ca.us/government/police/connect-with-us", + "evidence_url": "https://www.folsom.ca.us/government/police/connect-with-us", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0686972", + "name": "Yuba City", + "state": "CA", + "query": "\"Yuba City\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Yuba City Police Department | State of California - Department of Justice - Office of the Attorney General", + "url": "https://www.oag.ca.gov/fingerprints/locations/yuba-city-police-department", + "evidence_url": "https://www.oag.ca.gov/fingerprints/locations/yuba-city-police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Sutter County Sheriff, CA | Home Sheriff", + "url": "https://www.suttersheriff.gov/", + "evidence_url": "https://www.suttersheriff.gov/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Yuba County, CA", + "url": "https://yuba.gov/departments/sheriff_coroner/divisions/dispatch_communications.php", + "evidence_url": "https://yuba.gov/departments/sheriff_coroner/divisions/dispatch_communications.php", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0614218", + "name": "Clovis", + "state": "CA", + "query": "\"Clovis\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "nextdoor", + "title": "June 2026 Spotlight-", + "url": "https://nextdoor.com/agency-post/ca/clovis/clovis-police-department/june-2026-spotlight-497232963/", + "evidence_url": "https://nextdoor.com/agency-post/ca/clovis/clovis-police-department/june-2026-spotlight-497232963/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "nextdoor", + "title": "Clovis Police Department - 1042 updates", + "url": "https://nextdoor.com/agency-detail/ca/clovis/clovis-police-department/", + "evidence_url": "https://nextdoor.com/agency-detail/ca/clovis/clovis-police-department/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "x", + "title": "Posts with replies by Clovis Police (CA) (@ClovisPolice_CA) / X", + "url": "https://x.com/ClovisPolice_CA/with_replies", + "evidence_url": "https://x.com/ClovisPolice_CA/with_replies", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0631960", + "name": "Hanford", + "state": "CA", + "query": "\"Hanford\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Police | Hanford, CA", + "url": "https://www.ci.hanford.ca.us/1198/Police", + "evidence_url": "https://www.ci.hanford.ca.us/1198/Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police | Hanford, CA", + "url": "https://ci.hanford.ca.us/1198/Police", + "evidence_url": "https://ci.hanford.ca.us/1198/Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Staff Directory \u2022 Police Department", + "url": "https://www.ci.hanford.ca.us/m/directory/department?did=51", + "evidence_url": "https://www.ci.hanford.ca.us/m/directory/department?did=51", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0686328", + "name": "Woodland", + "state": "CA", + "query": "\"Woodland\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Woodland Police Department | Woodland, CA", + "url": "https://www.cityofwoodland.gov/394/Woodland-Police-Department", + "evidence_url": "https://www.cityofwoodland.gov/394/Woodland-Police-Department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Mapping | Woodland, CA", + "url": "https://cityofwoodland.gov/521/Crime-Mapping", + "evidence_url": "https://cityofwoodland.gov/521/Crime-Mapping", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Woodland Police Department - Case Log", + "url": "https://caselog.cityofwoodland.gov/", + "evidence_url": "https://caselog.cityofwoodland.gov/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0668154", + "name": "San Luis Obispo", + "state": "CA", + "query": "\"San Luis Obispo\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Public Information - County of San Luis Obispo", + "url": "https://www.slocounty.ca.gov/departments/sheriff-coroner/public-information", + "evidence_url": "https://www.slocounty.ca.gov/departments/sheriff-coroner/public-information", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Services - County of San Luis Obispo", + "url": "https://www.slocounty.ca.gov/departments/sheriff-coroner/public-information/services", + "evidence_url": "https://www.slocounty.ca.gov/departments/sheriff-coroner/public-information/services", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0682954", + "name": "Visalia", + "state": "CA", + "query": "\"Visalia\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Police | Visalia, CA", + "url": "https://www.visalia.gov/depts/police/contact_information/contact_numbers/default.asp", + "evidence_url": "https://www.visalia.gov/depts/police/contact_information/contact_numbers/default.asp", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Maps | Visalia, CA", + "url": "https://www.visalia.gov/446/Crime-Maps", + "evidence_url": "https://www.visalia.gov/446/Crime-Maps", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "VISALIA POLICE DEPARTMENT", + "url": "https://www.visalia.city/civicax/filebank/blobdload.aspx?BlobID=16179", + "evidence_url": "https://www.visalia.city/civicax/filebank/blobdload.aspx?BlobID=16179", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0680644", + "name": "Tulare", + "state": "CA", + "query": "\"Tulare\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Police | City of Tulare", + "url": "https://www.tulare.ca.gov/government/departments/police", + "evidence_url": "https://www.tulare.ca.gov/government/departments/police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Tips | City of Tulare", + "url": "https://www.tulare.ca.gov/government/departments/police/crime-tips", + "evidence_url": "https://www.tulare.ca.gov/government/departments/police/crime-tips", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "California Department of Justice Investigating Tulare County Sheriff\u2019s Department Officer-Involved Shooting Under AB 1506 | State of California - Department of Justice - Office of the Attorney General", + "url": "https://oag.ca.gov/news/press-releases/california-department-justice-investigating-tulare-county-sheriff%E2%80%99s-department", + "evidence_url": "https://oag.ca.gov/news/press-releases/california-department-justice-investigating-tulare-county-sheriff%E2%80%99s-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0669196", + "name": "Santa Maria", + "state": "CA", + "query": "\"Santa Maria\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Santa Maria Police Department | State of California - Department of Justice - Office of the Attorney General", + "url": "https://www.oag.ca.gov/fingerprints/locations/santa-maria-police-department", + "evidence_url": "https://www.oag.ca.gov/fingerprints/locations/santa-maria-police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0618394", + "name": "Delano", + "state": "CA", + "query": "\"Delano\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Police Department | Delano, CA - Official Website", + "url": "https://www.cityofdelano.org/105/Police-Department", + "evidence_url": "https://www.cityofdelano.org/105/Police-Department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Office of the Chief of Police | Delano, CA - Official Website", + "url": "https://www.cityofdelano.org/708/Office-of-the-Chief-of-Police", + "evidence_url": "https://www.cityofdelano.org/708/Office-of-the-Chief-of-Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0602252", + "name": "Antioch", + "state": "CA", + "query": "\"Antioch\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Contact Information \u2013 City of Antioch, California", + "url": "https://www.antiochca.gov/police/contact-information/", + "evidence_url": "https://www.antiochca.gov/police/contact-information/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Department | Antioch, CA", + "url": "https://www.antiochca.gov/186/Police-Department", + "evidence_url": "https://www.antiochca.gov/186/Police-Department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Statistics | Antioch, CA", + "url": "https://www.antiochca.gov/446/Crime-Statistics", + "evidence_url": "https://www.antiochca.gov/446/Crime-Statistics", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0657456", + "name": "Pittsburg", + "state": "CA", + "query": "\"Pittsburg\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "newsroom", + "title": "Contact Police / News & Events | City of Pittsburg", + "url": "https://www.pittsburgca.gov/services/police/contact-police-news-events", + "evidence_url": "https://www.pittsburgca.gov/services/police/contact-police-news-events", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Online Crime Reporting | City of Pittsburg", + "url": "https://www.pittsburgca.gov/services/police/online-crime-reporting", + "evidence_url": "https://www.pittsburgca.gov/services/police/online-crime-reporting", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Records Division | City of Pittsburg", + "url": "https://www.pittsburgca.gov/services/police/support-services-bureau/records-division", + "evidence_url": "https://www.pittsburgca.gov/services/police/support-services-bureau/records-division", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0645484", + "name": "Manteca", + "state": "CA", + "query": "\"Manteca\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Crime Information | Manteca, CA", + "url": "https://www.manteca.gov/627/Crime-Information", + "evidence_url": "https://www.manteca.gov/627/Crime-Information", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Manteca Police Department | State of California - Department of Justice - Office of the Attorney General", + "url": "https://oag.ca.gov/fingerprints/locations/manteca-police-department", + "evidence_url": "https://oag.ca.gov/fingerprints/locations/manteca-police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0648354", + "name": "Modesto", + "state": "CA", + "query": "\"Modesto\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Crime Map | Modesto, CA", + "url": "https://www.modestogov.com/229/Crime-Map", + "evidence_url": "https://www.modestogov.com/229/Crime-Map", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Department | Modesto, CA", + "url": "https://permits.modestogov.com/223/Police-Department", + "evidence_url": "https://permits.modestogov.com/223/Police-Department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "File an Online Police Report | Modesto, CA", + "url": "https://www.modestogov.com/1169/File-a-Non-Emergency-Police-Report", + "evidence_url": "https://www.modestogov.com/1169/File-a-Non-Emergency-Police-Report", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0675000", + "name": "Stockton", + "state": "CA", + "query": "\"Stockton\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "newsroom", + "title": "Attorney General Bonta and Stockton Police Department Announce 34 Arrests, Seizes 20 Firearms in Stockton | State of California - Department of Justice - Office of the Attorney General", + "url": "https://oag.ca.gov/news/press-releases/attorney-general-bonta-and-stockton-police-department-announce-34-arrests-seizes", + "evidence_url": "https://oag.ca.gov/news/press-releases/attorney-general-bonta-and-stockton-police-department-announce-34-arrests-seizes", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0681666", + "name": "Vallejo", + "state": "CA", + "query": "\"Vallejo\" California police department official crime reports news alerts", + "channels": [], + "search_note": "News & Media - City of Vallejo Police Department (https://www.vallejopd.net/public_information/news)\n\ue200cite\ue202turn246search0\ue201 [wordlim: 200] Crawled: yes" + }, + { + "id": "162:0652582", + "name": "Novato", + "state": "CA", + "query": "\"Novato\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Novato Police Department | City of Novato, CA", + "url": "https://www.novato.gov/government/police-department", + "evidence_url": "https://www.novato.gov/government/police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Novato Police Department | City of Novato, CA", + "url": "https://www.novato.gov/government/police-department?locale=es", + "evidence_url": "https://www.novato.gov/government/police-department?locale=es", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Map | City of Novato, CA", + "url": "https://www.novato.gov/government/police-department/crime-map", + "evidence_url": "https://www.novato.gov/government/police-department/crime-map", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0667000", + "name": "San Francisco", + "state": "CA", + "query": "\"San Francisco\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Services - City of South San Francisco", + "url": "https://www.ssfca.gov/Departments/Police-Department/Divisions/Services", + "evidence_url": "https://www.ssfca.gov/Departments/Police-Department/Divisions/Services", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "SAN FRANCISCO POLICE DEPARTMENT", + "url": "https://media.api.sf.gov/documents/PoliceCommission101624-_Commission_Crime_Trends_Notes_10.16.24.pdf", + "evidence_url": "https://media.api.sf.gov/documents/PoliceCommission101624-_Commission_Crime_Trends_Notes_10.16.24.pdf", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "SAN FRANCISCO POLICE DEPARTMENT", + "url": "https://media.api.sf.gov/documents/Commission_Crime_Trends_Notes_09.11.24.pdf", + "evidence_url": "https://media.api.sf.gov/documents/Commission_Crime_Trends_Notes_09.11.24.pdf", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0642202", + "name": "Lodi", + "state": "CA", + "query": "\"Lodi\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Lodi Police Department | Lodi, CA", + "url": "https://www.lodi.gov/215/Police", + "evidence_url": "https://www.lodi.gov/215/Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Chief of Police | Lodi, CA", + "url": "https://www.lodi.gov/886/Chief-of-Police", + "evidence_url": "https://www.lodi.gov/886/Chief-of-Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Lodi Police Department | Lodi, CA", + "url": "https://www.lodi.gov/215/Police?from=AppAgg.com", + "evidence_url": "https://www.lodi.gov/215/Police?from=AppAgg.com", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0623182", + "name": "Fairfield", + "state": "CA", + "query": "\"Fairfield\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Police Department | Fairfield, CA", + "url": "https://www.fairfield.ca.gov/government/city-departments/police", + "evidence_url": "https://www.fairfield.ca.gov/government/city-departments/police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Daily Activity Logs | Fairfield, CA", + "url": "https://www.fairfield.ca.gov/government/city-departments/police/operations-bureau/daily-activity-logs", + "evidence_url": "https://www.fairfield.ca.gov/government/city-departments/police/operations-bureau/daily-activity-logs", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Records & Reports | Fairfield, CA", + "url": "https://www.fairfield.ca.gov/government/city-departments/police/support-services-bureau/police-records-reports", + "evidence_url": "https://www.fairfield.ca.gov/government/city-departments/police/support-services-bureau/police-records-reports", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0650258", + "name": "Napa", + "state": "CA", + "query": "\"Napa\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Public Safety | Napa County, CA", + "url": "https://www.napacounty.gov/1579/Public-Safety", + "evidence_url": "https://www.napacounty.gov/1579/Public-Safety", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Office of the Chief of Police | Napa, CA", + "url": "https://www.cityofnapa.org/472/Office-of-the-Chief-of-Police", + "evidence_url": "https://www.cityofnapa.org/472/Office-of-the-Chief-of-Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Sheriff | Napa County, CA", + "url": "https://www.napacounty.gov/1292/Sheriff", + "evidence_url": "https://www.napacounty.gov/1292/Sheriff", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0681554", + "name": "Vacaville", + "state": "CA", + "query": "\"Vacaville\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Police Department | Vacaville, CA", + "url": "https://www.cityofvacaville.gov/government/police-department?locale=en_us", + "evidence_url": "https://www.cityofvacaville.gov/government/police-department?locale=en_us", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Reports & Prevention | Vacaville, CA", + "url": "https://www.cityofvacaville.gov/government/police-department/crime-reports-prevention", + "evidence_url": "https://www.cityofvacaville.gov/government/police-department/crime-reports-prevention", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Department | Vacaville, CA", + "url": "https://www.cityofvacaville.gov/government/police-department?locale=en", + "evidence_url": "https://www.cityofvacaville.gov/government/police-department?locale=en", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0656784", + "name": "Petaluma", + "state": "CA", + "query": "\"Petaluma\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "nextdoor", + "title": "Petaluma Police Department - 1435 updates", + "url": "https://nextdoor.com/agency-detail/ca/petaluma/petaluma-police-department/", + "evidence_url": "https://nextdoor.com/agency-detail/ca/petaluma/petaluma-police-department/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "nextdoor", + "title": "Petaluma Police Department - 1431 updates", + "url": "https://api.us.nextdoor.com/agency-detail/ca/petaluma/petaluma-police-department/", + "evidence_url": "https://api.us.nextdoor.com/agency-detail/ca/petaluma/petaluma-police-department/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0646898", + "name": "Merced", + "state": "CA", + "query": "\"Merced\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Police Department | City of Merced, CA", + "url": "https://www.cityofmerced.gov/public-safety/police", + "evidence_url": "https://www.cityofmerced.gov/public-safety/police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Transparency Hub | City of Merced, CA", + "url": "https://www.cityofmerced.gov/public-safety/police/transparency-hub", + "evidence_url": "https://www.cityofmerced.gov/public-safety/police/transparency-hub", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Online Crime Mapping | City of Merced, CA", + "url": "https://www.cityofmerced.gov/public-safety/police/crimemapping-com", + "evidence_url": "https://www.cityofmerced.gov/public-safety/police/crimemapping-com", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0649670", + "name": "Mountain View", + "state": "CA", + "query": "\"Mountain View\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "newsroom", + "title": "News | Mountain View, CA", + "url": "https://www.mountainview.gov/our-city/departments/police/news?locale=en", + "evidence_url": "https://www.mountainview.gov/our-city/departments/police/news?locale=en", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "News | Mountain View, CA", + "url": "https://www.mountainview.gov/our-city/departments/police/news/-arch-1/-fsiteid-1/-locale-en", + "evidence_url": "https://www.mountainview.gov/our-city/departments/police/news/-arch-1/-fsiteid-1/-locale-en", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police | Mountain View, CA", + "url": "https://www.mountainview.gov/our-city/departments/police?locale=en", + "evidence_url": "https://www.mountainview.gov/our-city/departments/police?locale=en", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0677000", + "name": "Sunnyvale", + "state": "CA", + "query": "\"Sunnyvale\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Crime Statistics | Sunnyvale, CA", + "url": "https://www.sunnyvale.ca.gov/your-government/departments/public-safety/public-safety-services/crime-statistics", + "evidence_url": "https://www.sunnyvale.ca.gov/your-government/departments/public-safety/public-safety-services/crime-statistics", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Public Safety | Sunnyvale, CA", + "url": "https://www.sunnyvale.ca.gov/your-government/departments/public-safety", + "evidence_url": "https://www.sunnyvale.ca.gov/your-government/departments/public-safety", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Public Safety Services | Sunnyvale, CA", + "url": "https://www.sunnyvale.ca.gov/your-government/departments/public-safety/public-safety-services", + "evidence_url": "https://www.sunnyvale.ca.gov/your-government/departments/public-safety/public-safety-services", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0626000", + "name": "Fremont", + "state": "CA", + "query": "\"Fremont\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Fremont Police Department, CA | Home", + "url": "https://www.fremontpolice.gov/", + "evidence_url": "https://www.fremontpolice.gov/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "News List | Fremont Police Department, CA", + "url": "https://www.fremontpolice.gov/about-us/about-fremont-police/spotlight-and-news/news-list", + "evidence_url": "https://www.fremontpolice.gov/about-us/about-fremont-police/spotlight-and-news/news-list", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "Fremont Police Department News and Spotlight | Fremont Police Department, CA", + "url": "https://www.fremontpolice.gov/about-us/about-fremont-police/spotlight-and-news", + "evidence_url": "https://www.fremontpolice.gov/about-us/about-fremont-police/spotlight-and-news", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0660102", + "name": "Redwood City", + "state": "CA", + "query": "\"Redwood City\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Redwood City Police Department | City of Redwood City", + "url": "https://www.redwoodcity.org/departments/police-department", + "evidence_url": "https://www.redwoodcity.org/departments/police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Welcome to the Redwood City Police Department | City of Redwood City", + "url": "https://www.redwoodcity.org/departments/police-department/about-us/community-policing", + "evidence_url": "https://www.redwoodcity.org/departments/police-department/about-us/community-policing", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Connect With Us | City of Redwood City", + "url": "https://www.redwoodcity.org/departments/police-department/connect-with-us", + "evidence_url": "https://www.redwoodcity.org/departments/police-department/connect-with-us", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0681204", + "name": "Union City", + "state": "CA", + "query": "\"Union City\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "incident-log", + "title": "The Blotter | Union City, CA", + "url": "https://www.unioncityca.gov/625/Crime-Blotter", + "evidence_url": "https://www.unioncityca.gov/625/Crime-Blotter", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime in My Neighborhood | Union City, CA", + "url": "https://www.unioncityca.gov/545/Crime-in-My-Neighborhood", + "evidence_url": "https://www.unioncityca.gov/545/Crime-in-My-Neighborhood", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police | Union City, CA", + "url": "https://www.unioncityca.gov/677/Police", + "evidence_url": "https://www.unioncityca.gov/677/Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0620018", + "name": "Dublin", + "state": "CA", + "query": "\"Dublin\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Police Services | Dublin, CA - Official Website", + "url": "https://www.dublin.ca.gov/2294/Police-Services", + "evidence_url": "https://www.dublin.ca.gov/2294/Police-Services", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Services | Dublin, CA - Official Website", + "url": "https://dublin.ca.gov/2294/Police-Services", + "evidence_url": "https://dublin.ca.gov/2294/Police-Services", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Events | Dublin, CA - Official Website", + "url": "https://dublin.ca.gov/130/Police-Events", + "evidence_url": "https://dublin.ca.gov/130/Police-Events", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0669084", + "name": "Santa Clara", + "state": "CA", + "query": "\"Santa Clara\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "incident-log", + "title": "Arrest Log | City of Santa Clara", + "url": "https://www.santaclaraca.gov/our-city/departments-g-z/police-department/crime/arrest-log", + "evidence_url": "https://www.santaclaraca.gov/our-city/departments-g-z/police-department/crime/arrest-log", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Department | City of Santa Clara", + "url": "https://www.santaclaraca.gov/our-city/departments-g-z/police-department", + "evidence_url": "https://www.santaclaraca.gov/our-city/departments-g-z/police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime | City of Santa Clara", + "url": "https://www.santaclaraca.gov/Home/Components/RFP/RFP/1687/", + "evidence_url": "https://www.santaclaraca.gov/Home/Components/RFP/RFP/1687/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0668084", + "name": "San Leandro", + "state": "CA", + "query": "\"San Leandro\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Police | San Leandro, CA", + "url": "https://www.sanleandro.org/police", + "evidence_url": "https://www.sanleandro.org/police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Stats | San Leandro, CA", + "url": "https://www.sanleandro.org/448/Crime-Stats", + "evidence_url": "https://www.sanleandro.org/448/Crime-Stats", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Stats | San Leandro, CA", + "url": "https://www.sanleandro.org/449/Crime-Stats", + "evidence_url": "https://www.sanleandro.org/449/Crime-Stats", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0641992", + "name": "Livermore", + "state": "CA", + "query": "\"Livermore\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "City of Livermore website | Home Police", + "url": "https://police.livermoreca.gov/", + "evidence_url": "https://police.livermoreca.gov/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "ABOUT US | City of Livermore website", + "url": "https://police.livermoreca.gov/about-us", + "evidence_url": "https://police.livermoreca.gov/about-us", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "CONTACT | City of Livermore website", + "url": "https://police.livermoreca.gov/contact", + "evidence_url": "https://police.livermoreca.gov/contact", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0683346", + "name": "Walnut Creek", + "state": "CA", + "query": "\"Walnut Creek\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "newsroom", + "title": "News Releases | Walnut Creek Police Department", + "url": "https://www.walnutcreekpdca.gov/data-and-transparency/transparency/news-releases", + "evidence_url": "https://www.walnutcreekpdca.gov/data-and-transparency/transparency/news-releases", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Contact | Walnut Creek Police Department", + "url": "https://www.walnutcreekpdca.gov/i-want-to/contact-wcpd", + "evidence_url": "https://www.walnutcreekpdca.gov/i-want-to/contact-wcpd", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Walnut Creek Police Department | Home", + "url": "https://www.walnutcreekpdca.gov/home-policenew", + "evidence_url": "https://www.walnutcreekpdca.gov/home-policenew", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0608142", + "name": "Brentwood", + "state": "CA", + "query": "\"Brentwood\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Contact Us | Brentwood, CA", + "url": "https://www.brentwoodca.gov/government/police/contact-us", + "evidence_url": "https://www.brentwoodca.gov/government/police/contact-us", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "Brentwood Police News Releases | Brentwood, CA", + "url": "https://www.brentwoodca.gov/government/police/news", + "evidence_url": "https://www.brentwoodca.gov/government/police/news", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Welcome to the Brentwood Police Department Website | Brentwood, CA", + "url": "https://www.brentwoodca.gov/government/police", + "evidence_url": "https://www.brentwoodca.gov/government/police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + }, + { + "id": "162:0616000", + "name": "Concord", + "state": "CA", + "query": "\"Concord\" California police department official crime reports news alerts", + "channels": [ + { + "kind": "department-page", + "title": "Police | Concord, CA", + "url": "https://www.cityofconcord.org/police", + "evidence_url": "https://www.cityofconcord.org/police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime and Incident Data | Concord, CA", + "url": "https://www.cityofconcord.org/1063/Crime-and-Incident-Data", + "evidence_url": "https://www.cityofconcord.org/1063/Crime-and-Incident-Data", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police | Concord, CA", + "url": "https://cityofconcord.org/183/Police", + "evidence_url": "https://cityofconcord.org/183/Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ] + } +] diff --git a/docs/data/police-sources/ingestion-check.json b/docs/data/police-sources/ingestion-check.json new file mode 100644 index 0000000..372e91f --- /dev/null +++ b/docs/data/police-sources/ingestion-check.json @@ -0,0 +1,314 @@ +[ + { + "city": "apple-valley", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12663427/", + "publishedAt": "2026-09-12T04:04:00.000Z", + "checkedAt": "2026-09-13T19:24:30.330Z" + }, + { + "city": "arcadia", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12662913/", + "publishedAt": "2026-09-11T21:36:00.000Z", + "checkedAt": "2026-09-13T19:24:31.475Z" + }, + { + "city": "berkeley", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12663421/", + "publishedAt": "2026-09-13T00:00:00.000Z", + "checkedAt": "2026-09-13T19:24:32.632Z" + }, + { + "city": "chino-hills", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12655249/", + "publishedAt": "2026-09-08T16:00:00.000Z", + "checkedAt": "2026-09-13T19:24:33.777Z" + }, + { + "city": "costa-mesa", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12609701/", + "publishedAt": "2026-08-18T22:58:00.000Z", + "checkedAt": "2026-09-13T19:24:34.911Z" + }, + { + "city": "daly-city", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12660207/", + "publishedAt": "2026-09-10T17:53:00.000Z", + "checkedAt": "2026-09-13T19:24:36.123Z" + }, + { + "city": "escondido", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12655737/", + "publishedAt": "2026-09-08T19:49:00.000Z", + "checkedAt": "2026-09-13T19:24:37.267Z" + }, + { + "city": "fairfield", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12661111/", + "publishedAt": "2026-09-11T03:40:00.000Z", + "checkedAt": "2026-09-13T19:24:38.396Z" + }, + { + "city": "folsom", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12664779/", + "publishedAt": "2026-09-12T21:22:00.000Z", + "checkedAt": "2026-09-13T19:24:39.534Z" + }, + { + "city": "fremont", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12658595/", + "publishedAt": "2026-09-11T20:15:00.000Z", + "checkedAt": "2026-09-13T19:24:40.708Z" + }, + { + "city": "gilroy", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12592725/", + "publishedAt": "2026-08-11T18:58:00.000Z", + "checkedAt": "2026-09-13T19:24:41.842Z" + }, + { + "city": "hemet", + "ok": true, + "items": 10, + "sampleUrl": "https://hemetpd.com/retail-theft-operation-leads-to-three-arrests", + "publishedAt": "2026-09-12T14:00:00.000Z", + "checkedAt": "2026-09-13T19:24:47.713Z" + }, + { + "city": "hesperia", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12660421/", + "publishedAt": "2026-09-10T19:47:00.000Z", + "checkedAt": "2026-09-13T19:24:48.886Z" + }, + { + "city": "highland", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12650579/", + "publishedAt": "2026-09-06T01:06:00.000Z", + "checkedAt": "2026-09-13T19:24:50.046Z" + }, + { + "city": "manteca", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12663631/", + "publishedAt": "2026-09-12T06:43:00.000Z", + "checkedAt": "2026-09-13T19:24:51.201Z" + }, + { + "city": "national-city", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12619631/", + "publishedAt": "2026-08-23T04:34:00.000Z", + "checkedAt": "2026-09-13T19:24:52.335Z" + }, + { + "city": "novato", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12655517/", + "publishedAt": "2026-09-08T18:04:00.000Z", + "checkedAt": "2026-09-13T19:24:53.499Z" + }, + { + "city": "oakland", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12660737/", + "publishedAt": "2026-09-10T23:01:00.000Z", + "checkedAt": "2026-09-13T19:24:54.665Z" + }, + { + "city": "palo-alto", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12640759/", + "publishedAt": "2026-09-02T00:29:00.000Z", + "checkedAt": "2026-09-13T19:24:56.025Z" + }, + { + "city": "pasadena", + "ok": true, + "items": 10, + "sampleUrl": "https://www.cityofpasadena.net/police/news/officer-involved-shooting-incident/", + "publishedAt": "2026-09-11T18:59:07.000Z", + "checkedAt": "2026-09-13T19:24:56.958Z" + }, + { + "city": "petaluma", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12662861/", + "publishedAt": "2026-09-11T21:11:00.000Z", + "checkedAt": "2026-09-13T19:24:58.093Z" + }, + { + "city": "pleasanton", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12664769/", + "publishedAt": "2026-09-12T21:15:00.000Z", + "checkedAt": "2026-09-13T19:24:59.245Z" + }, + { + "city": "rancho-cucamonga", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12659813/", + "publishedAt": "2026-09-10T14:36:00.000Z", + "checkedAt": "2026-09-13T19:25:00.408Z" + }, + { + "city": "redwood-city", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12648105/", + "publishedAt": "2026-09-04T19:32:00.000Z", + "checkedAt": "2026-09-13T19:25:01.537Z" + }, + { + "city": "salinas", + "ok": true, + "items": 10, + "sampleUrl": "https://police.salinas.gov/salinas-police-department-hosts-ebike-safety-presentations/", + "publishedAt": "2026-09-11T07:14:42.000Z", + "checkedAt": "2026-09-13T19:25:02.992Z" + }, + { + "city": "san-leandro", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12644711/", + "publishedAt": "2026-09-03T14:16:00.000Z", + "checkedAt": "2026-09-13T19:25:04.135Z" + }, + { + "city": "san-mateo", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12662571/", + "publishedAt": "2026-09-11T18:48:00.000Z", + "checkedAt": "2026-09-13T19:25:05.428Z" + }, + { + "city": "san-rafael", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12638331/", + "publishedAt": "2026-09-01T00:55:00.000Z", + "checkedAt": "2026-09-13T19:25:06.583Z" + }, + { + "city": "santa-clara", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12657773/", + "publishedAt": "2026-09-09T17:22:00.000Z", + "checkedAt": "2026-09-13T19:25:07.703Z" + }, + { + "city": "santa-maria", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12664231/", + "publishedAt": "2026-09-12T15:26:00.000Z", + "checkedAt": "2026-09-13T19:25:08.853Z" + }, + { + "city": "simi-valley", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12655529/", + "publishedAt": "2026-09-08T18:09:00.000Z", + "checkedAt": "2026-09-13T19:25:09.984Z" + }, + { + "city": "stockton", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12665889/", + "publishedAt": "2026-09-13T11:41:00.000Z", + "checkedAt": "2026-09-13T19:25:11.148Z" + }, + { + "city": "sunnyvale", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12655765/", + "publishedAt": "2026-09-08T20:04:00.000Z", + "checkedAt": "2026-09-13T19:25:12.290Z" + }, + { + "city": "tracy", + "ok": true, + "items": 10, + "sampleUrl": "https://tracypd.com/2026/09/12/high-school-teacher-arrested-for-recording-students-in-on-campus-locker-room", + "publishedAt": "2026-09-12T17:21:04.000Z", + "checkedAt": "2026-09-13T19:25:14.158Z" + }, + { + "city": "turlock", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12658407/", + "publishedAt": "2026-09-09T23:30:00.000Z", + "checkedAt": "2026-09-13T19:25:15.424Z" + }, + { + "city": "tustin", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12655673/", + "publishedAt": "2026-09-08T19:20:00.000Z", + "checkedAt": "2026-09-13T19:25:16.787Z" + }, + { + "city": "union-city", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12663113/", + "publishedAt": "2026-09-11T23:44:00.000Z", + "checkedAt": "2026-09-13T19:25:17.924Z" + }, + { + "city": "victorville", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12666473/", + "publishedAt": "2026-09-13T17:44:00.000Z", + "checkedAt": "2026-09-13T19:25:19.068Z" + }, + { + "city": "yucaipa", + "ok": true, + "items": 1, + "sampleUrl": "https://local.nixle.com/alert/12660557/", + "publishedAt": "2026-09-10T21:11:00.000Z", + "checkedAt": "2026-09-13T19:25:20.236Z" + } +] diff --git a/docs/data/police-sources/inventory.json b/docs/data/police-sources/inventory.json new file mode 100644 index 0000000..305efb6 --- /dev/null +++ b/docs/data/police-sources/inventory.json @@ -0,0 +1,20030 @@ +{ + "population_source": "https://www2.census.gov/programs-surveys/popest/datasets/2020-2025/cities/totals/sub-est2025.csv", + "domain_source": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv", + "population_min_exclusive": 50000, + "population_year": 2025, + "state": "CA", + "scope": "Active incorporated places, minor civil divisions and consolidated cities; overlapping governments retained; CDPs excluded", + "generated_at": "2026-09-13T19:31:08.409446+00:00", + "places": [ + { + "id": "162:0600562", + "geoid": "0600562", + "name": "Alameda", + "census_name": "Alameda city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 76876, + "population_year": 2025, + "lat": 37.741911, + "lon": -122.259914, + "checked_at": "2026-09-13T18:46:34.516119+00:00", + "domains": [ + { + "url": "https://alamedaca.gov/", + "organization": "City of Alameda", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.alamedaca.gov/Departments/Police-Department/Crime-Activity", + "evidence_url": "https://www.alamedaca.gov/Home", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.alamedaca.gov/RESIDENTS/Alerts-Advisories", + "evidence_url": "https://www.alamedaca.gov/Departments/Police-Department/Crime-Activity", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://alameda.citizenrims.com/map", + "evidence_url": "https://www.alamedaca.gov/Departments/Police-Department/Crime-Activity", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://www.alamedaca.gov/files/assets/public/v/27/departments/alameda/police/hate-crime-stats/apd-hate-crime-log-2023-present-june-2026.pdf", + "evidence_url": "https://www.alamedaca.gov/Departments/Police-Department/Crime-Activity", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://www.alamedaca.gov/files/assets/public/v/2/departments/alameda/police/hate-crime-log-public.xlsx.pdf", + "evidence_url": "https://www.alamedaca.gov/Departments/Police-Department/Crime-Activity", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.alamedaca.gov/Shortcut-Content/News-Media", + "evidence_url": "https://www.alamedaca.gov/Departments/Police-Department/Crime-Activity", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://www.alamedaca.gov/Shortcut-Content/News-Media/City-of-Alameda-Making-Library-Access-Easier-for-Students", + "evidence_url": "https://www.alamedaca.gov/Shortcut-Content/News-Media", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.alamedaca.gov/Shortcut-Content/News-Media/Alameda-Free-Library-Event-Alert-September-2026", + "evidence_url": "https://www.alamedaca.gov/Shortcut-Content/News-Media", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.alamedaca.gov/Shortcut-Content/News-Media/Proposed-Commercial-Zoning-Changes", + "evidence_url": "https://www.alamedaca.gov/Shortcut-Content/News-Media", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.alamedaca.gov/Shortcut-Content/News-Media/Oakland-Alameda-Water-Shuttle-Returns", + "evidence_url": "https://www.alamedaca.gov/Shortcut-Content/News-Media", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.alamedaca.gov/Shortcut-Content/News-Media/Alameda-Police-Month-in-Review-July-2026", + "evidence_url": "https://www.alamedaca.gov/Shortcut-Content/News-Media", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.alamedaca.gov/Shortcut-Content/News-Media/Assault-with-a-Deadly-Weapon-Press-Release-8.15.2026", + "evidence_url": "https://www.alamedaca.gov/Shortcut-Content/News-Media", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.alamedaca.gov/Shortcut-Content/News-Media/Traffic-Advisory-Oakland-Alameda-Water-Shuttle-Out-of-Service", + "evidence_url": "https://www.alamedaca.gov/Shortcut-Content/News-Media", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.ebmud.com/customers/alerts/", + "evidence_url": "https://www.alamedaca.gov/RESIDENTS/Alerts-Advisories", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.alamedaca.gov/RESIDENTS/ALERTS-COVID-19", + "evidence_url": "https://www.alamedaca.gov/RESIDENTS/Alerts-Advisories", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.acgov.org/emergencysite/", + "evidence_url": "https://www.alamedaca.gov/RESIDENTS/Alerts-Advisories", + "verification": "linked-from-official-page", + "access": "not-tested" + } + ], + "errors": [], + "pages_checked": 5, + "status": "channels-found", + "distance_from_link_km": 62.09 + }, + { + "id": "162:0600884", + "geoid": "0600884", + "name": "Alhambra", + "census_name": "Alhambra city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 79820, + "population_year": 2025, + "lat": 34.083571, + "lon": -118.136444, + "checked_at": "2026-09-13T18:50:28.608396+00:00", + "domains": [ + { + "url": "https://alhambraca.gov/", + "organization": "City of Alhambra", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://alhambrafireca.gov/", + "organization": "Alhambra Fire Department", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Crime Statistics | Alhambra, CA", + "url": "https://alhambraca.gov/271/Crime-Statistics", + "evidence_url": "https://alhambraca.gov/271/Crime-Statistics", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police | Alhambra, CA", + "url": "https://www.alhambraca.gov/834/Police", + "evidence_url": "https://www.alhambraca.gov/834/Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police - 2025 | Alhambra, CA", + "url": "https://www.cityofalhambra.org/834", + "evidence_url": "https://www.cityofalhambra.org/834", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://alhambrafireca.gov/", + "error": "robots unavailable" + } + ], + "pages_checked": 3, + "website_candidates": [ + { + "url": "http://www.cityofalhambra.org", + "evidence_url": "https://www.wikidata.org/entity/Q752681" + } + ], + "status": "department-found", + "distance_from_link_km": 491.53, + "indexed_search_query": "\"Alhambra\" California police department official crime reports news alerts" + }, + { + "id": "162:0602000", + "geoid": "0602000", + "name": "Anaheim", + "census_name": "Anaheim city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 341008, + "population_year": 2025, + "lat": 33.855502, + "lon": -117.758657, + "checked_at": "2026-09-13T18:50:33.371584+00:00", + "domains": [ + { + "url": "https://anaheim.gov/", + "organization": "City of Anaheim", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://pd.anaheim.net/", + "evidence_url": "https://pd.anaheim.net/", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://anaheim.gov/", + "error": "robots unavailable: HTTP 429" + } + ], + "pages_checked": 1, + "website_candidates": [], + "status": "department-found", + "distance_from_link_km": 533.93, + "indexed_search_query": "\"Anaheim\" California police department official crime reports news alerts" + }, + { + "id": "162:0602252", + "geoid": "0602252", + "name": "Antioch", + "census_name": "Antioch city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 118958, + "population_year": 2025, + "lat": 37.978336, + "lon": -121.796064, + "checked_at": "2026-09-13T18:50:19.557521+00:00", + "domains": [ + { + "url": "https://antiochca.gov/", + "organization": "City of Antioch", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://antiochcaboard.gov/", + "organization": "City of Antioch", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://antiochcacommittee.gov/", + "organization": "City of Antioch", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.antiochca.gov/186/Police-Department", + "evidence_url": "https://www.antiochca.gov/186/Police-Department", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Contact Information \u2013 City of Antioch, California", + "url": "https://www.antiochca.gov/police/contact-information/", + "evidence_url": "https://www.antiochca.gov/police/contact-information/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Statistics | Antioch, CA", + "url": "https://www.antiochca.gov/446/Crime-Statistics", + "evidence_url": "https://www.antiochca.gov/446/Crime-Statistics", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://antiochca.gov/", + "error": "robots unavailable: HTTP 429" + }, + { + "url": "https://antiochcaboard.gov/", + "error": "robots unavailable" + }, + { + "url": "https://antiochcacommittee.gov/", + "error": "robots unavailable" + }, + { + "url": "https://www.antiochca.gov/", + "error": "robots unavailable: HTTP 429" + } + ], + "pages_checked": 4, + "website_candidates": [ + { + "url": "https://www.antiochca.gov/", + "evidence_url": "https://www.wikidata.org/entity/Q495357" + } + ], + "status": "department-found", + "distance_from_link_km": 82.72, + "indexed_search_query": "\"Antioch\" California police department official crime reports news alerts" + }, + { + "id": "162:0602364", + "geoid": "0602364", + "name": "Apple Valley", + "census_name": "Apple Valley town", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 75247, + "population_year": 2025, + "lat": 34.533376, + "lon": -117.210358, + "checked_at": "2026-09-13T18:50:31.924347+00:00", + "domains": [ + { + "url": "https://applevalleyca.gov/", + "organization": "Town of Apple Valley", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "newsroom", + "title": "Police News | Town of Apple Valley", + "url": "https://www.applevalley.org/services/police-department/police-news", + "evidence_url": "https://www.applevalley.org/services/police-department/police-news", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Department | Apple Valley, MN - Official Website", + "url": "https://www.applevalleymn.gov/114/Police-Department", + "evidence_url": "https://www.applevalleymn.gov/114/Police-Department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/sbsd---apple-valley-police-department/", + "title": "SBSD - Apple Valley Police Department", + "evidence_url": "https://local.nixle.com/city/ca/apple-valley/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/sbsd---apple-valley-police-department/", + "checked_at": "2026-09-13T19:19:20.995088+00:00", + "final_url": "https://local.nixle.com/sbsd---apple-valley-police-department/", + "publisher": "SBSD - Apple Valley Police Department", + "item_count": 20, + "newest_label": "Entered: 1 day, 15 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.applevalley.org", + "evidence_url": "https://www.wikidata.org/entity/Q621372" + } + ], + "status": "channels-found", + "distance_from_link_km": 521.95, + "indexed_search_query": "\"Apple Valley\" California police department official crime reports news alerts" + }, + { + "id": "162:0602462", + "geoid": "0602462", + "name": "Arcadia", + "census_name": "Arcadia city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 54117, + "population_year": 2025, + "lat": 34.132689, + "lon": -118.036347, + "checked_at": "2026-09-13T18:46:44.797149+00:00", + "domains": [ + { + "url": "https://arcadiaca.gov/", + "organization": "City of Arcadia", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://arcadiacapolice.gov/", + "organization": "City of Arcadia", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.arcadiacapolice.gov/index.php", + "evidence_url": "https://arcadiaca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.arcadiacapolice.gov/crime_trends/index.php", + "evidence_url": "https://www.arcadiacapolice.gov/index.php", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.arcadiacapolice.gov/about_us/index.php", + "evidence_url": "https://arcadiaca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.arcadiacapolice.gov/services/weekly_police_activity.php", + "evidence_url": "https://www.arcadiacapolice.gov/about_us/index.php", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "title": "Arcadia, CA - Police", + "url": "https://www.arcadiacapolice.gov/services/request_a_police_record.php", + "evidence_url": "https://www.arcadiacapolice.gov/services/request_a_police_record.php", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Arcadia, CA - Police", + "url": "https://www.arcadiacapolice.gov/about_us/contact_us.php", + "evidence_url": "https://www.arcadiacapolice.gov/about_us/contact_us.php", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Arcadia, CA - Police", + "url": "https://www.arcadiaca.gov/government/police/services/index.php", + "evidence_url": "https://www.arcadiaca.gov/government/police/services/index.php", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/arcadia-police-department/", + "title": "Arcadia Police Department", + "evidence_url": "https://local.nixle.com/city/ca/arcadia/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/arcadia-police-department/", + "checked_at": "2026-09-13T19:19:20.996070+00:00", + "final_url": "https://local.nixle.com/arcadia-police-department/", + "publisher": "Arcadia Police Department", + "item_count": 20, + "newest_label": "Entered: 1 day, 21 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [ + { + "url": "https://www.arcadiacapolice.gov/news", + "error": "HTTP Error 404: Not Found" + }, + { + "url": "https://www.arcadiacapolice.gov/about_us/news", + "error": "HTTP Error 404: Not Found" + } + ], + "pages_checked": 7, + "status": "channels-found", + "distance_from_link_km": 493.98, + "indexed_search_query": "\"Arcadia\" California police department official crime reports news alerts" + }, + { + "id": "162:0603526", + "geoid": "0603526", + "name": "Bakersfield", + "census_name": "Bakersfield city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 422165, + "population_year": 2025, + "lat": 35.353171, + "lon": -119.037919, + "checked_at": "2026-09-13T18:50:27.042025+00:00", + "domains": [ + { + "url": "https://bakersfield.gov/", + "organization": "City of Bakersfield", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Protecting the Central Valley: Results Show Initial Success in CHP\u2019s Operations to Take Down Crime | Governor of California", + "url": "https://www.gov.ca.gov/2024/04/30/chp-bakersfield-public-safety-2/", + "evidence_url": "https://www.gov.ca.gov/2024/04/30/chp-bakersfield-public-safety-2/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://bakersfield.gov/", + "error": "robots unavailable" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://www.visitbakersfield.com/", + "evidence_url": "https://www.wikidata.org/entity/Q49256" + } + ], + "status": "department-found", + "distance_from_link_km": 334.55, + "indexed_search_query": "\"Bakersfield\" California police department official crime reports news alerts" + }, + { + "id": "162:0603666", + "geoid": "0603666", + "name": "Baldwin Park", + "census_name": "Baldwin Park city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 68880, + "population_year": 2025, + "lat": 34.082824, + "lon": -117.971286, + "checked_at": "2026-09-13T18:50:30.190395+00:00", + "domains": [ + { + "url": "https://baldwinparkca.gov/", + "organization": "City of Baldwin Park", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.baldwinparkpolice.com/", + "evidence_url": "https://www.baldwinpark.com/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.baldwinparkpolice.com/AlertCenter.aspx", + "evidence_url": "https://www.baldwinparkpolice.com/", + "link_text": "Alerts Learn More", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/BaldwinParkPD/", + "evidence_url": "https://www.baldwinparkpolice.com/", + "link_text": "Facebook", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/baldwinparkpd/", + "evidence_url": "https://www.baldwinparkpolice.com/", + "link_text": "Instagram", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.baldwinparkpolice.com/List.aspx", + "evidence_url": "https://www.baldwinparkpolice.com/AlertCenter.aspx", + "link_text": "Notify Me\u00ae", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "feed-directory", + "url": "https://www.baldwinparkpolice.com/Rss.aspx", + "evidence_url": "https://www.baldwinparkpolice.com/AlertCenter.aspx", + "link_text": "RSS", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.baldwinparkpolice.com/list.aspx?Mode=Subscribe", + "evidence_url": "https://www.baldwinparkpolice.com/AlertCenter.aspx", + "link_text": "Notify Me", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + } + ], + "errors": [ + { + "url": "https://baldwinparkca.gov/", + "error": "robots unavailable" + } + ], + "pages_checked": 4, + "website_candidates": [ + { + "url": "http://www.baldwinpark.com", + "evidence_url": "https://www.wikidata.org/entity/Q804878" + } + ], + "status": "channels-found", + "distance_from_link_km": 502.14 + }, + { + "id": "162:0604758", + "geoid": "0604758", + "name": "Beaumont", + "census_name": "Beaumont city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 60835, + "population_year": 2025, + "lat": 33.876722, + "lon": -116.953009, + "checked_at": "2026-09-13T18:46:57.726520+00:00", + "domains": [ + { + "url": "https://beaumontca.gov/", + "organization": "City of Beaumont", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://beaumont-ca.gov/", + "organization": "City of Beaumont, California", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://beaumontcabusiness.gov/", + "organization": "City of Beaumont", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://beaumontca.gov/1366/Police", + "evidence_url": "https://beaumontca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/beaumontCApolice", + "evidence_url": "https://beaumontca.gov/1366/Police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/beaumontca_pd/", + "evidence_url": "https://beaumontca.gov/1366/Police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://beaumontpd.citizenrims.com/map", + "evidence_url": "https://beaumontca.gov/1366/Police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://beaumontca.gov/1340/Emergency-Alerts", + "evidence_url": "https://beaumontca.gov/1366/Police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://beaumontca.gov/list.aspx", + "evidence_url": "https://beaumontca.gov/1366/Police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://beaumontca.gov/1169/Crime", + "evidence_url": "https://beaumontca.gov/1366/Police", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "incident-log", + "url": "https://beaumontpd.citizenrims.com", + "evidence_url": "https://beaumontca.gov/1169/Crime", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://beaumontca.gov/1196/Crime-Tips", + "evidence_url": "https://beaumontca.gov/1366/Police", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://beaumontca.gov/1166/Transparency", + "evidence_url": "https://beaumontca.gov/1366/Police", + "verification": "official-domain-or-referral", + "access": "public-html" + } + ], + "errors": [ + { + "url": "https://beaumont-ca.gov/", + "error": "robots unavailable" + } + ], + "pages_checked": 7, + "status": "channels-found", + "distance_from_link_km": 586.24 + }, + { + "id": "162:0604982", + "geoid": "0604982", + "name": "Bellflower", + "census_name": "Bellflower city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 74719, + "population_year": 2025, + "lat": 33.887821, + "lon": -118.12725, + "checked_at": "2026-09-13T18:50:30.601667+00:00", + "domains": [], + "channels": [ + { + "kind": "department-page", + "title": "Residential Burglary Crew Arrested - Irvine Police Department", + "url": "https://irvinepd.gov/2026/06/25/residential-burglary-crew-arrested-2/", + "evidence_url": "https://irvinepd.gov/2026/06/25/residential-burglary-crew-arrested-2/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "*UPDATE* LOCATED AT-RISK MISSING PERSON - JUAN MUNOZ", + "url": "https://origin.www.longbeach.gov/police/press-releases/at-risk-missing-person---juan-munoz/", + "evidence_url": "https://origin.www.longbeach.gov/police/press-releases/at-risk-missing-person---juan-munoz/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "*UPDATE* TRAFFIC FATALITY ARREST \u2013 2200 BLOCK OF BELLFLOWER BOULEVARD", + "url": "https://www.longbeach.gov/police/press-releases/traffic-fatality--2200-block-of-bellflower-boulevard/", + "evidence_url": "https://www.longbeach.gov/police/press-releases/traffic-fatality--2200-block-of-bellflower-boulevard/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "http://www.bellflower.org/", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 1, + "website_candidates": [ + { + "url": "http://www.bellflower.org/", + "evidence_url": "https://www.wikidata.org/entity/Q815979" + } + ], + "status": "channels-found", + "distance_from_link_km": 508.16, + "indexed_search_query": "\"Bellflower\" California police department official crime reports news alerts" + }, + { + "id": "162:0606000", + "geoid": "0606000", + "name": "Berkeley", + "census_name": "Berkeley city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 121911, + "population_year": 2025, + "lat": 37.865673, + "lon": -122.298725, + "checked_at": "2026-09-13T18:46:34.803190+00:00", + "domains": [ + { + "url": "https://berkeleyca.gov/", + "organization": "City of Berkeley", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://berkeleyca.gov/safety-health/police", + "evidence_url": "https://berkeleyca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://member.everbridge.net/index/453003085612570", + "evidence_url": "https://berkeleyca.gov/safety-health/police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://berkeleyca.gov/community-recreation/news", + "evidence_url": "https://berkeleyca.gov/safety-health/police", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://berkeleyca.gov/safety-health/police/report-crime", + "evidence_url": "https://berkeleyca.gov/safety-health/police", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://berkeleyca.gov/safety-health/police-accountability", + "evidence_url": "https://berkeleyca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://berkeleyca.gov/safety-health/disaster-preparedness/emergency-notifications", + "evidence_url": "https://berkeleyca.gov/safety-health/police-accountability", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://berkeleyca.gov/safety-health/public-health/public-health-alerts-and-advisories", + "evidence_url": "https://berkeleyca.gov/safety-health/police-accountability", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/berkeley-police-department/", + "title": "Berkeley Police Department", + "evidence_url": "https://local.nixle.com/city/ca/berkeley/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/berkeley-police-department/", + "checked_at": "2026-09-13T19:19:20.996292+00:00", + "final_url": "https://local.nixle.com/berkeley-police-department/", + "publisher": "Berkeley Police Department", + "item_count": 20, + "newest_label": "Entered: 19 hours, 19 minutes ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [], + "pages_checked": 5, + "status": "channels-found", + "distance_from_link_km": 75.97 + }, + { + "id": "162:0608142", + "geoid": "0608142", + "name": "Brentwood", + "census_name": "Brentwood city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 66607, + "population_year": 2025, + "lat": 37.935578, + "lon": -121.71897, + "checked_at": "2026-09-13T18:50:19.523404+00:00", + "domains": [ + { + "url": "https://brentwoodca.gov/", + "organization": "City of Brentwood", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.brentwoodca.gov/government/police", + "evidence_url": "https://www.brentwoodca.gov/government/police", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Contact Us | Brentwood, CA", + "url": "https://www.brentwoodca.gov/government/police/contact-us", + "evidence_url": "https://www.brentwoodca.gov/government/police/contact-us", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "Brentwood Police News Releases | Brentwood, CA", + "url": "https://www.brentwoodca.gov/government/police/news", + "evidence_url": "https://www.brentwoodca.gov/government/police/news", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://brentwoodca.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://www.brentwoodca.gov/", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://www.brentwoodca.gov/", + "evidence_url": "https://www.wikidata.org/entity/Q846426" + } + ], + "status": "channels-found", + "distance_from_link_km": 79.44, + "indexed_search_query": "\"Brentwood\" California police department official crime reports news alerts" + }, + { + "id": "162:0608786", + "geoid": "0608786", + "name": "Buena Park", + "census_name": "Buena Park city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 81741, + "population_year": 2025, + "lat": 33.857353, + "lon": -118.007373, + "checked_at": "2026-09-13T18:50:31.466925+00:00", + "domains": [], + "channels": [ + { + "kind": "department-page", + "title": "OC Crime Stoppers | Orange County California - Sheriff's Department", + "url": "https://www.ocsheriff.gov/occrimestoppers", + "evidence_url": "https://www.ocsheriff.gov/occrimestoppers", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Buena Park Police Department | State of California - Department of Justice - Office of the Attorney General", + "url": "https://oag.ca.gov/fingerprints/locations/buena-park-police-department", + "evidence_url": "https://oag.ca.gov/fingerprints/locations/buena-park-police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "California Department of Justice Investigating Buena Park Police Department Officer-Involved Shooting Under AB 1506 | State of California - Department of Justice - Office of the Attorney General", + "url": "https://www.oag.ca.gov/news/press-releases/california-department-justice-investigating-buena-park-police-department-officer", + "evidence_url": "https://www.oag.ca.gov/news/press-releases/california-department-justice-investigating-buena-park-police-department-officer", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "http://www.buenapark.com", + "error": "robots disallows discovery" + } + ], + "pages_checked": 1, + "website_candidates": [ + { + "url": "http://www.buenapark.com", + "evidence_url": "https://www.wikidata.org/entity/Q838762" + } + ], + "status": "channels-found", + "distance_from_link_km": 518.08, + "indexed_search_query": "\"Buena Park\" California police department official crime reports news alerts" + }, + { + "id": "162:0608954", + "geoid": "0608954", + "name": "Burbank", + "census_name": "Burbank city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 102988, + "population_year": 2025, + "lat": 34.190079, + "lon": -118.326405, + "checked_at": "2026-09-13T18:46:43.417831+00:00", + "domains": [ + { + "url": "https://burbankca.gov/", + "organization": "City of Burbank", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.burbankca.gov/web/police-department", + "evidence_url": "https://www.burbankca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/newsroom", + "evidence_url": "https://www.burbankca.gov/web/police-department", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/news/-/police_newsdetail/20124/burbank-police-news-release-man-arrested-for-lewd-behavior", + "evidence_url": "https://www.burbankca.gov/web/police-department", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/news/-/police_newsdetail/20124/burbank-pd-news-release-burbank-police-participated-in-statewide-organized-retail-theft-operation", + "evidence_url": "https://www.burbankca.gov/web/police-department", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/burbankpolice/", + "evidence_url": "https://www.burbankca.gov/web/police-department", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/BurbankPD/", + "evidence_url": "https://www.burbankca.gov/web/police-department", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "x", + "url": "https://x.com/burbankpd", + "evidence_url": "https://www.burbankca.gov/web/police-department", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/burbank-police-department-california/", + "evidence_url": "https://www.burbankca.gov/web/police-department", + "verification": "linked-from-official-page", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/burbank-police-department-california/", + "checked_at": "2026-09-13T19:03:09.455752+00:00", + "final_url": "https://local.nixle.com/burbank-police-department-california/", + "publisher": "Burbank Police Department, California", + "item_count": 20, + "newest_label": "Entered: 1 year, 3 months ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + }, + { + "kind": "nextdoor", + "url": "https://nextdoor.com/agency-post/ca/burbank/burbank-police-department/city-of-burbank-and-burbank-police-department-are-not-affiliated-with-a-private-police-department-survey-186592471/", + "evidence_url": "https://www.burbankca.gov/web/police-department", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.burbankca.gov/email-notifications", + "evidence_url": "https://www.burbankca.gov/web/police-department", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.burbankca.gov/web/police-department/crime", + "evidence_url": "https://www.burbankca.gov/web/police-department", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "crime-map", + "url": "https://www.communitycrimemap.com/", + "evidence_url": "https://www.burbankca.gov/web/police-department/crime", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "http://www.vinelink.com/", + "evidence_url": "https://www.burbankca.gov/web/police-department/crime", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/news/-/police_newsdetail/20124/burbank-pd-news-release-dui-checkpoint-results-3", + "evidence_url": "https://www.burbankca.gov/web/police-department/newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://www.burbankca.gov/web/police-department/news/-/police_newsdetail/20124/burbank-pd-community-bulletin-first-amendment-auditors", + "evidence_url": "https://www.burbankca.gov/web/police-department/newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/news/-/police_newsdetail/20124/burbank-pd-news-release-dui-checkpoint-scheduled-for-august-14-2026", + "evidence_url": "https://www.burbankca.gov/web/police-department/newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/news/-/police_newsdetail/20124/burbank-pd-news-release-alpr-technology-helps-detectives-solve-wallet-theft-case-of-elderly-victim", + "evidence_url": "https://www.burbankca.gov/web/police-department/newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/news/-/police_newsdetail/20124/burbank-pd-news-release-registered-sex-offender-arrested-following-indecent-exposure", + "evidence_url": "https://www.burbankca.gov/web/police-department/newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/news/-/police_newsdetail/20124/burbank-pd-news-release-fatal-traffic-collision-involving-electric-motorcycle", + "evidence_url": "https://www.burbankca.gov/web/police-department/newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/news/-/police_newsdetail/20124/burbank-pd-news-release-man-arrested-for-lewd-behavior", + "evidence_url": "https://www.burbankca.gov/web/police-department/newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=1", + "evidence_url": "https://www.burbankca.gov/web/police-department/newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=2", + "evidence_url": "https://www.burbankca.gov/web/police-department/newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=3", + "evidence_url": "https://www.burbankca.gov/web/police-department/newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=4", + "evidence_url": "https://www.burbankca.gov/web/police-department/newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=5", + "evidence_url": "https://www.burbankca.gov/web/police-department/newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=6", + "evidence_url": "https://www.burbankca.gov/web/police-department/newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=7", + "evidence_url": "https://www.burbankca.gov/web/police-department/newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=8", + "evidence_url": "https://www.burbankca.gov/web/police-department/newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=9", + "evidence_url": "https://www.burbankca.gov/web/police-department/newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=10", + "evidence_url": "https://www.burbankca.gov/web/police-department/newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=11", + "evidence_url": "https://www.burbankca.gov/web/police-department/newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=12", + "evidence_url": "https://www.burbankca.gov/web/police-department/newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=13", + "evidence_url": "https://www.burbankca.gov/web/police-department/newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=14", + "evidence_url": "https://www.burbankca.gov/web/police-department/newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=15", + "evidence_url": "https://www.burbankca.gov/web/police-department/newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=16", + "evidence_url": "https://www.burbankca.gov/web/police-department/newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=17", + "evidence_url": "https://www.burbankca.gov/web/police-department/newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=18", + "evidence_url": "https://www.burbankca.gov/web/police-department/newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=19", + "evidence_url": "https://www.burbankca.gov/web/police-department/newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/newsroom?p_p_id=com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv&p_p_lifecycle=0&p_p_state=normal&p_p_mode=view&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_delta=10&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByCol=modifiedDate&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_orderByType=DESC&p_r_p_resetCur=false&_com_liferay_asset_publisher_web_portlet_AssetPublisherPortlet_INSTANCE_dabv_cur=20", + "evidence_url": "https://www.burbankca.gov/web/police-department/newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.burbankca.gov/web/police-department/film-burbank", + "evidence_url": "https://www.burbankca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + } + ], + "errors": [], + "pages_checked": 5, + "status": "channels-found", + "distance_from_link_km": 470.94 + }, + { + "id": "162:0610046", + "geoid": "0610046", + "name": "Camarillo", + "census_name": "Camarillo city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 68652, + "population_year": 2025, + "lat": 34.221823, + "lon": -119.032154, + "checked_at": "2026-09-13T18:50:27.686063+00:00", + "domains": [ + { + "url": "https://camarillo.gov/", + "organization": "City of Camarillo", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Camarillo Police Department | State of California - Department of Justice - Office of the Attorney General", + "url": "https://oag.ca.gov/fingerprints/locations/camarillo-police-department", + "evidence_url": "https://oag.ca.gov/fingerprints/locations/camarillo-police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "Camarillo \u2013 News Story-Kid Print & Person at Risk Prints conducted at the Camarillo Police Department \u2013 Ventura Sheriff Official Website", + "url": "https://sheriff.venturacounty.gov/?p=9065", + "evidence_url": "https://sheriff.venturacounty.gov/?p=9065", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "announcement", + "title": "INITIAL REPORTS", + "url": "https://sheriff.venturacounty.gov/wp-content/uploads/2023/10/20030826OIS200324690_report_finalcompressed.pdf", + "evidence_url": "https://sheriff.venturacounty.gov/wp-content/uploads/2023/10/20030826OIS200324690_report_finalcompressed.pdf", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://www.ci.camarillo.ca.us/", + "error": "robots disallows discovery" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://www.ci.camarillo.ca.us/", + "evidence_url": "https://www.wikidata.org/entity/Q846040" + } + ], + "status": "channels-found", + "distance_from_link_km": 426.45, + "indexed_search_query": "\"Camarillo\" California police department official crime reports news alerts" + }, + { + "id": "162:0611194", + "geoid": "0611194", + "name": "Carlsbad", + "census_name": "Carlsbad city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 112260, + "population_year": 2025, + "lat": 33.129284, + "lon": -117.284183, + "checked_at": "2026-09-13T18:50:38.471503+00:00", + "domains": [ + { + "url": "https://carlsbadca.gov/", + "organization": "City of Carlsbad", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Police Department | Carlsbad, CA", + "url": "https://www.carlsbadca.gov/Departments/police", + "evidence_url": "https://www.carlsbadca.gov/Departments/police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Department | Carlsbad, CA", + "url": "https://www.carlsbadca.gov/departments/police/-npage-3", + "evidence_url": "https://www.carlsbadca.gov/departments/police/-npage-3", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Department | Carlsbad, CA", + "url": "https://www.carlsbadca.gov/departments/police/-npage-2", + "evidence_url": "https://www.carlsbadca.gov/departments/police/-npage-2", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://carlsbadca.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "http://www.carlsbadca.gov", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.carlsbadca.gov", + "evidence_url": "https://www.wikidata.org/entity/Q491099" + } + ], + "status": "department-found", + "distance_from_link_km": 623.13, + "indexed_search_query": "\"Carlsbad\" California police department official crime reports news alerts" + }, + { + "id": "162:0611530", + "geoid": "0611530", + "name": "Carson", + "census_name": "Carson city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 90808, + "population_year": 2025, + "lat": 33.840367, + "lon": -118.249574, + "checked_at": "2026-09-13T18:50:30.332042+00:00", + "domains": [ + { + "url": "https://carsonca.gov/", + "organization": "City of Carson, California", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://cityofcarsonca.gov/", + "organization": "City of Carson, California", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Public Safety and Emergency Management Services", + "url": "https://ci.carson.ca.us/CityManager/PublicSafety.aspx", + "evidence_url": "https://ci.carson.ca.us/CityManager/PublicSafety.aspx", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime in our Area | Carson City", + "url": "https://www.carsoncity.gov/government/departments-g-z/sheriff-s-office/crime-in-our-area", + "evidence_url": "https://www.carsoncity.gov/government/departments-g-z/sheriff-s-office/crime-in-our-area", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://carsonca.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://cityofcarsonca.gov/", + "error": "robots unavailable" + }, + { + "url": "https://carsonca.gov/services/public_safety/index.php", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://carsonca.gov/services/public_safety/animal_control.php", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://carsonca.gov/services/public_safety/code_enforcement.php", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 6, + "website_candidates": [ + { + "url": "https://ci.carson.ca.us/", + "evidence_url": "https://www.wikidata.org/entity/Q494690" + } + ], + "status": "department-found", + "distance_from_link_km": 504.73, + "indexed_search_query": "\"Carson\" California police department official crime reports news alerts" + }, + { + "id": "162:0612048", + "geoid": "0612048", + "name": "Cathedral City", + "census_name": "Cathedral City city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 52375, + "population_year": 2025, + "lat": 33.835487, + "lon": -116.463103, + "checked_at": "2026-09-13T18:50:38.569594+00:00", + "domains": [ + { + "url": "https://cathedralcity.gov/", + "organization": "City of Cathedral City", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Online Services & Reporting | City of Cathedral City", + "url": "https://www.cathedralcity.gov/departments/police-department/online-services-reporting", + "evidence_url": "https://www.cathedralcity.gov/departments/police-department/online-services-reporting", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Services & Operations | City of Cathedral City", + "url": "https://www.cathedralcity.gov/departments/police-department/services-operations", + "evidence_url": "https://www.cathedralcity.gov/departments/police-department/services-operations", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Department | City of Cathedral City", + "url": "https://www.cathedralcity.gov/departments/police-department", + "evidence_url": "https://www.cathedralcity.gov/departments/police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://cathedralcity.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "http://www.cathedralcity.gov", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.cathedralcity.gov", + "evidence_url": "https://www.wikidata.org/entity/Q578518" + } + ], + "status": "department-found", + "distance_from_link_km": 623.84, + "indexed_search_query": "\"Cathedral City\" California police department official crime reports news alerts" + }, + { + "id": "162:0613014", + "geoid": "0613014", + "name": "Chico", + "census_name": "Chico city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 105081, + "population_year": 2025, + "lat": 39.758951, + "lon": -121.81772, + "checked_at": "2026-09-13T18:46:41.437039+00:00", + "domains": [ + { + "url": "https://chicoca.gov/", + "organization": "City of Chico", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://chicoca.gov/City-Services/Public-Safety/index.html", + "evidence_url": "https://chicoca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "incident-log", + "url": "https://chicoca.gov/City-Services/Public-Safety/__catapult_pages/4ab3d961-5958-4376-b4c5-4fbadab060c9/Police-Department.html", + "evidence_url": "https://chicoca.gov/City-Services/Public-Safety/index.html", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://chicoca.gov/City-Services/Public-Safety/City-Services/Public-Safety/Police-Department/Police-Department-Online-Crime-Report/index.html", + "evidence_url": "https://chicoca.gov/City-Services/Public-Safety/index.html", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://chicoca.gov/City-Services/Public-Safety/City-Services/Public-Safety/Police-Department/Police-Department-Press-Releases/index.html", + "evidence_url": "https://chicoca.gov/City-Services/Public-Safety/index.html", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://chicoca.gov/City-Services/Public-Safety/Our-Community/Latest-News--Chico-TV/City-of-Chico-Press-Releases/index.html", + "evidence_url": "https://chicoca.gov/City-Services/Public-Safety/index.html", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://chicoca.gov/City-Services/Public-Safety/__catapult_pages/c84db201-df65-486e-a338-b43b51c11755/Police-Department-Press-Releases.html", + "evidence_url": "https://chicoca.gov/City-Services/Public-Safety/index.html", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://public.coderedweb.com/CNE/en-US/BFA19C579EA5", + "evidence_url": "https://chicoca.gov/City-Services/Public-Safety/index.html", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://chicoca.gov/City-Services/Public-Safety/__catapult_pages/1434a321-6462-4bc1-b275-f46a28f9cac5/Police-Department-Online-Crime-Report.html", + "evidence_url": "https://chicoca.gov/City-Services/Public-Safety/index.html", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://chicoca.gov/City-Services/Public-Safety/Fire-Department/index.html", + "evidence_url": "https://chicoca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "incident-log", + "url": "https://chicoca.gov/City-Services/Public-Safety/Fire-Department/__catapult_pages/4ab3d961-5958-4376-b4c5-4fbadab060c9/index.html", + "evidence_url": "https://chicoca.gov/City-Services/Public-Safety/Fire-Department/index.html", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://chicoca.gov/City-Services/Public-Safety/Fire-Department/City-Services/Public-Safety/Police-Department/Police-Department-Online-Crime-Report/index.html", + "evidence_url": "https://chicoca.gov/City-Services/Public-Safety/Fire-Department/index.html", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://chicoca.gov/City-Services/Public-Safety/Fire-Department/City-Services/Public-Safety/Police-Department/Police-Department-Press-Releases/index.html", + "evidence_url": "https://chicoca.gov/City-Services/Public-Safety/Fire-Department/index.html", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://chicoca.gov/City-Services/Public-Safety/Fire-Department/Our-Community/Latest-News--Chico-TV/City-of-Chico-Press-Releases/index.html", + "evidence_url": "https://chicoca.gov/City-Services/Public-Safety/Fire-Department/index.html", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.smart911.com/smart911/ref/reg.action?pa=buttecounty", + "evidence_url": "https://chicoca.gov/City-Services/Public-Safety/Fire-Department/index.html", + "verification": "linked-from-official-page", + "access": "not-tested" + } + ], + "errors": [ + { + "url": "https://chicoca.gov/City-Services/Public-Safety/Our-Community/Latest-News--Chico-TV/index.html", + "error": "HTTP Error 404: Not Found" + }, + { + "url": "https://chicoca.gov/City-Services/Public-Safety/City-Services/Public-Safety/Police-Department/Transparency/index.html", + "error": "HTTP Error 404: Not Found" + }, + { + "url": "https://chicoca.gov/City-Services/Public-Safety/Fire-Department/Our-Community/Latest-News--Chico-TV/index.html", + "error": "HTTP Error 404: Not Found" + }, + { + "url": "https://chicoca.gov/City-Services/Public-Safety/Fire-Department/City-Services/Public-Safety/Police-Department/Transparency/index.html", + "error": "HTTP Error 404: Not Found" + } + ], + "pages_checked": 7, + "status": "channels-found", + "distance_from_link_km": 279.92 + }, + { + "id": "162:0613210", + "geoid": "0613210", + "name": "Chino", + "census_name": "Chino city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 96957, + "population_year": 2025, + "lat": 33.975627, + "lon": -117.667351, + "checked_at": "2026-09-13T18:50:32.682121+00:00", + "domains": [ + { + "url": "https://chinopd.gov/", + "organization": "Chino Police Department", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://cityofchino.gov/", + "organization": "City of Chino", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.cityofchino.org/1740/Police", + "evidence_url": "https://www.cityofchino.org/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/chinopolicedept/", + "evidence_url": "https://www.cityofchino.org/1740/Police", + "link_text": "", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/CHINOPOLICEDEPT/", + "evidence_url": "https://www.cityofchino.org/1740/Police", + "link_text": "", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.cityofchino.org/CivicAlerts.aspx?AID=420", + "evidence_url": "https://www.cityofchino.org/1740/Police", + "link_text": "", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.cityofchino.org/CivicAlerts.aspx?AID=413", + "evidence_url": "https://www.cityofchino.org/1740/Police", + "link_text": "", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.cityofchino.org/CivicAlerts.aspx?AID=395", + "evidence_url": "https://www.cityofchino.org/1740/Police", + "link_text": "", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.cityofchino.org/CivicAlerts.aspx?AID=394", + "evidence_url": "https://www.cityofchino.org/1740/Police", + "link_text": "", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.cityofchino.org/CivicAlerts.aspx?AID=341", + "evidence_url": "https://www.cityofchino.org/1740/Police", + "link_text": "", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.cityofchino.org/CivicAlerts.aspx?AID=266", + "evidence_url": "https://www.cityofchino.org/1740/Police", + "link_text": "", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.cityofchino.org/CivicAlerts.aspx?AID=35", + "evidence_url": "https://www.cityofchino.org/1740/Police", + "link_text": "", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.cityofchino.org/CivicAlerts.aspx?AID=37", + "evidence_url": "https://www.cityofchino.org/1740/Police", + "link_text": "", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.cityofchino.org/CivicAlerts.aspx?AID=33", + "evidence_url": "https://www.cityofchino.org/1740/Police", + "link_text": "", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.cityofchino.org/CivicAlerts.aspx?AID=34", + "evidence_url": "https://www.cityofchino.org/1740/Police", + "link_text": "", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.cityofchino.org/CivicAlerts.aspx?CID=1%2C8", + "evidence_url": "https://www.cityofchino.org/1740/Police", + "link_text": "View All News", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "x", + "url": "https://x.com/chinopolicedept", + "evidence_url": "https://www.cityofchino.org/1740/Police", + "link_text": "Chino Police Twitter Feed", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.cityofchino.org/1759/Transparency", + "evidence_url": "https://www.cityofchino.org/1740/Police", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.cityofchino.org/CivicAlerts.aspx?CID=1", + "evidence_url": "https://www.cityofchino.org/1759/Transparency", + "link_text": "View All News", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.cityofchino.org/276/Crime-Information", + "evidence_url": "https://www.cityofchino.org/1740/Police", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "crime-map", + "url": "https://www.crimemapping.com/", + "evidence_url": "https://www.cityofchino.org/276/Crime-Information", + "link_text": "CrimeMapping.com", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.cityofchino.org/618/Chino-Newsletters", + "evidence_url": "https://www.cityofchino.org/1740/Police", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + } + ], + "errors": [ + { + "url": "https://chinopd.gov/", + "error": "robots unavailable" + }, + { + "url": "https://cityofchino.gov/", + "error": "robots unavailable" + } + ], + "pages_checked": 7, + "website_candidates": [ + { + "url": "http://www.cityofchino.org", + "evidence_url": "https://www.wikidata.org/entity/Q506395" + } + ], + "status": "channels-found", + "distance_from_link_km": 530.37 + }, + { + "id": "162:0613214", + "geoid": "0613214", + "name": "Chino Hills", + "census_name": "Chino Hills city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 77519, + "population_year": 2025, + "lat": 33.942969, + "lon": -117.725648, + "checked_at": "2026-09-13T18:50:32.588030+00:00", + "domains": [ + { + "url": "https://chinohills.gov/", + "organization": "City of Chino Hills", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.chinohills.org/Calendar.aspx?EID=8100", + "evidence_url": "https://www.chinohills.org/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "feed-directory", + "url": "https://www.chinohills.org/rss.aspx", + "evidence_url": "https://www.chinohills.org/Calendar.aspx?EID=8100", + "link_text": "View RSS Feeds View RSS Feeds for Calendar", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.chinohills.org/1947/Notify-Me-Sign-Up", + "evidence_url": "https://www.chinohills.org/Calendar.aspx?EID=8100", + "link_text": "Notify Me\u00ae", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.chinohills.org/1702/Transparency", + "evidence_url": "https://www.chinohills.org/Calendar.aspx?EID=8100", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://www.chinohills.org/Archive.aspx?AMID=48", + "evidence_url": "https://www.chinohills.org/1702/Transparency", + "link_text": "Press Releases", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.chinohills.org/Archive.asp?AMID=48", + "evidence_url": "https://www.chinohills.org/rss.aspx", + "link_text": "Press Releases", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/sbsd---chino-hills-police-department/", + "title": "SBSD - Chino Hills Police Department", + "evidence_url": "https://local.nixle.com/city/ca/chino-hills/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/sbsd---chino-hills-police-department/", + "checked_at": "2026-09-13T19:19:20.996513+00:00", + "final_url": "https://local.nixle.com/sbsd---chino-hills-police-department/", + "publisher": "SBSD - Chino Hills Police Department", + "item_count": 20, + "newest_label": "Entered: 5 days, 3 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [ + { + "url": "https://chinohills.gov/", + "error": "robots unavailable" + } + ], + "pages_checked": 5, + "website_candidates": [ + { + "url": "http://www.chinohills.org", + "evidence_url": "https://www.wikidata.org/entity/Q852721" + } + ], + "status": "channels-found", + "distance_from_link_km": 529.11 + }, + { + "id": "162:0613392", + "geoid": "0613392", + "name": "Chula Vista", + "census_name": "Chula Vista city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 275533, + "population_year": 2025, + "lat": 32.62767, + "lon": -117.01517, + "checked_at": "2026-09-13T18:50:39.512957+00:00", + "domains": [ + { + "url": "https://chulavistapdca.gov/", + "organization": "Chula Vista Police Department", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://chulavistaca.gov/", + "organization": "City of Chula Vista", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "newsroom", + "title": "News Center | City of Chula Vista", + "url": "https://www.chulavistaca.gov/departments/police-department/about-us/transparency-and-accountability/press-log", + "evidence_url": "https://www.chulavistaca.gov/departments/police-department/about-us/transparency-and-accountability/press-log", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Department | City of Chula Vista", + "url": "https://www.chulavistaca.gov/departments/police-department", + "evidence_url": "https://www.chulavistaca.gov/departments/police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Services | City of Chula Vista", + "url": "https://www.chulavistaca.gov/departments/police-department/services", + "evidence_url": "https://www.chulavistaca.gov/departments/police-department/services", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://chulavistapdca.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://chulavistaca.gov/", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [], + "status": "channels-found", + "distance_from_link_km": 681.82, + "indexed_search_query": "\"Chula Vista\" California police department official crime reports news alerts" + }, + { + "id": "162:0613588", + "geoid": "0613588", + "name": "Citrus Heights", + "census_name": "Citrus Heights city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 86348, + "population_year": 2025, + "lat": 38.69481, + "lon": -121.287953, + "checked_at": "2026-09-13T18:50:22.502162+00:00", + "domains": [ + { + "url": "https://citrusheights.gov/", + "organization": "City of Citrus Heights", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.citrusheights.net/245/Online-Reporting", + "evidence_url": "https://www.citrusheights.net/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://www.citrusheights.net/1481/Media-Releases", + "evidence_url": "https://www.citrusheights.net/245/Online-Reporting", + "link_text": "Media Releases", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/CitrusHeightsPD/", + "evidence_url": "https://www.citrusheights.net/245/Online-Reporting", + "link_text": "", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "x", + "url": "https://x.com/citrusheightspd", + "evidence_url": "https://www.citrusheights.net/245/Online-Reporting", + "link_text": "", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "nextdoor", + "url": "https://nextdoor.com/agency-detail/ca/citrus-heights/citrus-heights-police-department/", + "evidence_url": "https://www.citrusheights.net/245/Online-Reporting", + "link_text": "", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.citrusheights.net/347/Incident-Logs", + "evidence_url": "https://www.citrusheights.net/245/Online-Reporting", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.citrusheights.net/272/Internet-Crime", + "evidence_url": "https://www.citrusheights.net/245/Online-Reporting", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "incident-log", + "url": "https://www.citrusheights.net/DocumentCenter/View/29802/07272026---CHPD-Announces-New-Online-Crime-Reporting-System", + "evidence_url": "https://www.citrusheights.net/1481/Media-Releases", + "link_text": "CHPD Launches New Online Crime Reporting System", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://citrusheights.net/DocumentCenter/View/23691/09012024---Pedestrian-Safety-Starts-with-You---Stay-Alert-to-Protect-People-Walking-September-is-Pedestrian-Safety-Month-in-California", + "evidence_url": "https://www.citrusheights.net/1481/Media-Releases", + "link_text": "Pedestrian Safety Starts with You: Stay Alert to Protect People Walking - September is Pedestrian Safety Month", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.citrusheights.net/1254/Police-Department", + "evidence_url": "https://www.citrusheights.net/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + } + ], + "errors": [ + { + "url": "https://citrusheights.gov/", + "error": "robots unavailable" + } + ], + "pages_checked": 7, + "website_candidates": [ + { + "url": "http://www.citrusheights.net", + "evidence_url": "https://www.wikidata.org/entity/Q658402" + } + ], + "status": "channels-found", + "distance_from_link_km": 171.28 + }, + { + "id": "162:0614218", + "geoid": "0614218", + "name": "Clovis", + "census_name": "Clovis city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 129347, + "population_year": 2025, + "lat": 36.827809, + "lon": -119.681843, + "checked_at": "2026-09-13T18:50:23.512000+00:00", + "domains": [ + { + "url": "https://clovisca.gov/", + "organization": "City of Clovis", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "nextdoor", + "title": "June 2026 Spotlight-", + "url": "https://nextdoor.com/agency-post/ca/clovis/clovis-police-department/june-2026-spotlight-497232963/", + "evidence_url": "https://nextdoor.com/agency-post/ca/clovis/clovis-police-department/june-2026-spotlight-497232963/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "nextdoor", + "title": "Clovis Police Department - 1042 updates", + "url": "https://nextdoor.com/agency-detail/ca/clovis/clovis-police-department/", + "evidence_url": "https://nextdoor.com/agency-detail/ca/clovis/clovis-police-department/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "x", + "title": "Posts with replies by Clovis Police (CA) (@ClovisPolice_CA) / X", + "url": "https://x.com/clovispolice_ca", + "evidence_url": "https://x.com/ClovisPolice_CA/with_replies", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://clovisca.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "http://www.ci.clovis.ca.us", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.ci.clovis.ca.us", + "evidence_url": "https://www.wikidata.org/entity/Q303794" + } + ], + "status": "channels-found", + "distance_from_link_km": 205.92, + "indexed_search_query": "\"Clovis\" California police department official crime reports news alerts" + }, + { + "id": "162:0614890", + "geoid": "0614890", + "name": "Colton", + "census_name": "Colton city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 53383, + "population_year": 2025, + "lat": 34.054525, + "lon": -117.325029, + "checked_at": "2026-09-13T18:50:35.098832+00:00", + "domains": [ + { + "url": "https://coltonca.gov/", + "organization": "City of Colton", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Colton Police Department | Protecting Our Community Since 1887", + "url": "https://police.coltonca.gov/", + "evidence_url": "https://police.coltonca.gov/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "News Releases | Colton Police Department", + "url": "https://police.coltonca.gov/news-releases/", + "evidence_url": "https://police.coltonca.gov/news-releases/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Records | Colton Police Department", + "url": "https://police.coltonca.gov/records/", + "evidence_url": "https://police.coltonca.gov/records/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.ci.colton.ca.us", + "evidence_url": "https://www.wikidata.org/entity/Q846606" + } + ], + "status": "channels-found", + "distance_from_link_km": 547.43, + "indexed_search_query": "\"Colton\" California police department official crime reports news alerts" + }, + { + "id": "162:0615044", + "geoid": "0615044", + "name": "Compton", + "census_name": "Compton city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 90500, + "population_year": 2025, + "lat": 33.894047, + "lon": -118.227469, + "checked_at": "2026-09-13T18:50:29.918151+00:00", + "domains": [], + "channels": [ + { + "kind": "announcement", + "title": "Sheriff\u2019s Department Continues Compton Homicide Investigations | City News | Compton, CA", + "url": "https://www.comptoncity.org/Home/Components/News/News/152/16", + "evidence_url": "https://www.comptoncity.org/Home/Components/News/News/152/16", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "*Update* Located At-Risk Missing Person - Charles Garner III", + "url": "https://www.longbeach.gov/police/press-releases/at-risk-missing-person---charles-garner-iii/", + "evidence_url": "https://www.longbeach.gov/police/press-releases/at-risk-missing-person---charles-garner-iii/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Services | Compton, CA", + "url": "https://www.comptoncity.org/services/police-services", + "evidence_url": "https://www.comptoncity.org/services/police-services", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "http://www.comptoncity.org/", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 1, + "website_candidates": [ + { + "url": "http://www.comptoncity.org/", + "evidence_url": "https://www.wikidata.org/entity/Q487119" + } + ], + "status": "channels-found", + "distance_from_link_km": 501.53, + "indexed_search_query": "\"Compton\" California police department official crime reports news alerts" + }, + { + "id": "162:0616000", + "geoid": "0616000", + "name": "Concord", + "census_name": "Concord city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 123261, + "population_year": 2025, + "lat": 37.972184, + "lon": -122.001587, + "checked_at": "2026-09-13T18:50:19.548280+00:00", + "domains": [], + "channels": [ + { + "kind": "department-page", + "url": "https://www.cityofconcord.org/183/Police", + "evidence_url": "https://www.cityofconcord.org/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.cityofconcord.org/1136/Crime-Map", + "evidence_url": "https://www.cityofconcord.org/183/Police", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.cityofconcord.org/830/Transparency-Portal", + "evidence_url": "https://www.cityofconcord.org/183/Police", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.cityofconcord.org/248/Major-Crimes-Unit-MCU", + "evidence_url": "https://www.cityofconcord.org/183/Police", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "department-page", + "title": "Police | Concord, CA", + "url": "https://www.cityofconcord.org/police", + "evidence_url": "https://www.cityofconcord.org/police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime and Incident Data | Concord, CA", + "url": "https://www.cityofconcord.org/1063/Crime-and-Incident-Data", + "evidence_url": "https://www.cityofconcord.org/1063/Crime-and-Incident-Data", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [], + "pages_checked": 5, + "website_candidates": [ + { + "url": "https://www.cityofconcord.org/", + "evidence_url": "https://www.wikidata.org/entity/Q490441" + } + ], + "status": "department-found", + "distance_from_link_km": 81.19, + "indexed_search_query": "\"Concord\" California police department official crime reports news alerts" + }, + { + "id": "162:0616350", + "geoid": "0616350", + "name": "Corona", + "census_name": "Corona city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 161734, + "population_year": 2025, + "lat": 33.861969, + "lon": -117.565495, + "checked_at": "2026-09-13T18:46:55.822440+00:00", + "domains": [ + { + "url": "https://coronaca.gov/", + "organization": "City of Corona", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "crime-map", + "url": "https://www.crimemapping.com/map/ca/corona", + "evidence_url": "https://www.coronaca.gov/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.coronaca.gov/departments/police", + "evidence_url": "https://www.coronaca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://www.coronaca.gov/news", + "evidence_url": "https://www.coronaca.gov/departments/police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/coronapd/reels/", + "evidence_url": "https://www.coronaca.gov/departments/police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.coronaca.gov/i-want-to/enotifications", + "evidence_url": "https://www.coronaca.gov/departments/police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.coronaca.gov/news/fatal-traffic-collision-7", + "evidence_url": "https://www.coronaca.gov/news", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.coronaca.gov/news/assault-with-a-deadly-weapon-suspect-shot-by-police-2", + "evidence_url": "https://www.coronaca.gov/news", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.coronaca.gov/departments/police/permits", + "evidence_url": "https://www.coronaca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://www.coronaca.gov/news?category=Press+Releases", + "evidence_url": "https://www.coronaca.gov/departments/police/permits", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.coronaca.gov/departments/police/community-engagement/explorers", + "evidence_url": "https://www.coronaca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + } + ], + "errors": [], + "pages_checked": 5, + "status": "channels-found", + "distance_from_link_km": 545.94 + }, + { + "id": "162:0616532", + "geoid": "0616532", + "name": "Costa Mesa", + "census_name": "Costa Mesa city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 108881, + "population_year": 2025, + "lat": 33.665905, + "lon": -117.912336, + "checked_at": "2026-09-13T18:50:33.622261+00:00", + "domains": [ + { + "url": "https://cmsdca.gov/", + "organization": "Costa Mesa Sanitary District", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://costamesaca.gov/", + "organization": "City of Costa Mesa", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Media & Public Affairs | City of Costa Mesa", + "url": "https://www.costamesaca.gov/government/departments-and-divisions/police/department-divisions/administration/media-public-affairs", + "evidence_url": "https://www.costamesaca.gov/government/departments-and-divisions/police/department-divisions/administration/media-public-affairs", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Information | City of Costa Mesa", + "url": "https://www.costamesaca.gov/government/departments-and-divisions/police/police-information", + "evidence_url": "https://www.costamesaca.gov/government/departments-and-divisions/police/police-information", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Statistics | City of Costa Mesa", + "url": "https://www.costamesaca.gov/government/departments-and-divisions/police/police-information/crime-statistics", + "evidence_url": "https://www.costamesaca.gov/government/departments-and-divisions/police/police-information/crime-statistics", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/costa-mesa-police-department/", + "title": "Costa Mesa Police Department", + "evidence_url": "https://local.nixle.com/city/ca/costa-mesa/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/costa-mesa-police-department/", + "checked_at": "2026-09-13T19:19:20.996704+00:00", + "final_url": "https://local.nixle.com/costa-mesa-police-department/", + "publisher": "Costa Mesa Police Department", + "item_count": 20, + "newest_label": "Entered: 3 weeks, 4 days ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [ + { + "url": "https://costamesaca.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://www.costamesaca.gov/", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 3, + "website_candidates": [ + { + "url": "https://www.costamesaca.gov/", + "evidence_url": "https://www.wikidata.org/entity/Q499196" + } + ], + "status": "channels-found", + "distance_from_link_km": 539.81, + "indexed_search_query": "\"Costa Mesa\" California police department official crime reports news alerts" + }, + { + "id": "162:0617610", + "geoid": "0617610", + "name": "Cupertino", + "census_name": "Cupertino city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 58333, + "population_year": 2025, + "lat": 37.3194, + "lon": -122.044957, + "checked_at": "2026-09-13T18:46:34.349974+00:00", + "domains": [ + { + "url": "https://cupertino.gov/", + "organization": "City of Cupertino", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "newsroom", + "url": "https://sheriff.santaclaracounty.gov/about-us/newsroom-press-releases", + "evidence_url": "https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff", + "verification": "reviewed-contract-agency", + "access": "public-html", + "coverage_note": "County sheriff; filter releases to Cupertino. Do not assign every county incident to this city." + }, + { + "kind": "department-page", + "url": "https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff", + "evidence_url": "curated department URL", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.cupertino.gov/Residents/Emergency-Management/Alert-SCC", + "evidence_url": "https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.cupertino.gov/Residents/Utilities/Street-Sweeping-Notifications", + "evidence_url": "https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.cupertino.gov/Our-Community/Online-Services/Notifications-News-Social-Media", + "evidence_url": "https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.cupertino.gov/Your-City/News-and-Updates/Press-Release", + "evidence_url": "https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.cupertino.gov/I-Want-To/Sign-Up-For", + "evidence_url": "https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.cupertino.gov/I-Want-To/Sign-Up-For/Email-Notification", + "evidence_url": "https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.cupertino.gov/I-Want-To/Sign-Up-For/Street-Sweeping-Notification", + "evidence_url": "https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.cupertino.gov/I-Want-To/View-City-Data/Citys-Press-Releases", + "evidence_url": "https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff/Crime-Reports", + "evidence_url": "https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.cupertino.gov/Your-City/Divisions/Communications/eNotification-Sign-Up", + "evidence_url": "https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.cupertino.gov/News-articles", + "evidence_url": "https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "announcement", + "url": "https://www.cupertino.gov/News-articles/Independent-Audit-Identifies-10.7-Million-Non-Allocable-Unjustified-Costs-in-County-Sheriff-Proposal", + "evidence_url": "https://www.cupertino.gov/News-articles", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.cupertino.gov/Your-City/Divisions/Communications/Cupertino-SCENE-Newsletter", + "evidence_url": "https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://www.cupertino.gov/Your-City/Divisions/Communications/Press-Releases", + "evidence_url": "https://www.cupertino.gov/Your-City/Divisions/Communications/Cupertino-SCENE-Newsletter", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.cupertino.gov/Parks-Recreation/Senior-Center/Socials", + "evidence_url": "https://www.cupertino.gov/Your-City/Divisions/Communications/Cupertino-SCENE-Newsletter", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.cupertino.gov/Your-City/Divisions/Public-Safety", + "evidence_url": "https://www.cupertino.gov/Home", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.cupertino.gov/Your-City/Divisions/Public-Safety/Emergency-Management/Emergency-Alerts-Warnings-and-Notifications", + "evidence_url": "https://www.cupertino.gov/Your-City/Divisions/Public-Safety", + "verification": "linked-from-official-page", + "access": "not-tested" + } + ], + "errors": [], + "pages_checked": 7, + "status": "channels-found", + "distance_from_link_km": 12.38 + }, + { + "id": "162:0617918", + "geoid": "0617918", + "name": "Daly City", + "census_name": "Daly City city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 101261, + "population_year": 2025, + "lat": 37.701684, + "lon": -122.464968, + "checked_at": "2026-09-13T18:50:19.277436+00:00", + "domains": [ + { + "url": "https://dalycity.gov/", + "organization": "City of Daly City", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.dalycity.org/1231/Police", + "evidence_url": "https://www.dalycity.org/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/dalycitypolice/", + "evidence_url": "https://www.dalycity.org/1231/Police", + "link_text": "", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "x", + "url": "https://x.com/dalycitypd", + "evidence_url": "https://www.dalycity.org/1231/Police", + "link_text": "", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/explore/locations/5264698/daly-city-police-department/", + "evidence_url": "https://www.dalycity.org/1231/Police", + "link_text": "", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "youtube", + "url": "https://www.youtube.com/user/DalyCityPolice", + "evidence_url": "https://www.dalycity.org/1231/Police", + "link_text": "", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "nextdoor", + "url": "https://nextdoor.com/agency-detail/ca/daly-city/daly-city-police-department/", + "evidence_url": "https://www.dalycity.org/1231/Police", + "link_text": "", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://www.dalycity.org/906/Crime-Alert-Bulletins", + "evidence_url": "https://www.dalycity.org/1231/Police", + "link_text": "Alerts", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.dalycity.org/905/DCPD-Social-Media", + "evidence_url": "https://www.dalycity.org/1231/Police", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.dalycity.org/514/Safety-Prevention", + "evidence_url": "https://www.dalycity.org/1231/Police", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.dalycity.org/528/GPS-Wanted-Alert", + "evidence_url": "https://www.dalycity.org/514/Safety-Prevention", + "link_text": "GPS Wanted Alert", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.dalycity.org/m/newsflash/home/detail/1014", + "evidence_url": "https://www.dalycity.org/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.dalycity.org/m/newsflash", + "evidence_url": "https://www.dalycity.org/m/newsflash/home/detail/1014", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "feed-directory", + "url": "https://www.dalycity.org/rss.aspx", + "evidence_url": "https://www.dalycity.org/m/newsflash", + "link_text": "RSS Feed", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.dalycity.org/list.aspx?Mode=Subscribe", + "evidence_url": "https://www.dalycity.org/m/newsflash", + "link_text": "Notify Me: Subscribe to NewsFlash notifications Notify Me", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/daly-city-police-department/", + "title": "Daly City Police Department", + "evidence_url": "https://local.nixle.com/city/ca/daly-city/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/daly-city-police-department/", + "checked_at": "2026-09-13T19:19:20.996874+00:00", + "final_url": "https://local.nixle.com/daly-city-police-department/", + "publisher": "Daly City Police Department", + "item_count": 20, + "newest_label": "Entered: 3 days, 1 hour ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [ + { + "url": "https://dalycity.gov/", + "error": "robots unavailable" + } + ], + "pages_checked": 7, + "website_candidates": [ + { + "url": "http://www.dalycity.org", + "evidence_url": "https://www.wikidata.org/entity/Q370925" + } + ], + "status": "channels-found", + "distance_from_link_km": 68.7 + }, + { + "id": "162:0618100", + "geoid": "0618100", + "name": "Davis", + "census_name": "Davis city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 66110, + "population_year": 2025, + "lat": 38.556147, + "lon": -121.737793, + "checked_at": "2026-09-13T18:50:21.932130+00:00", + "domains": [ + { + "url": "https://davisca.gov/", + "organization": "The City of Davis", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Online Crime Reporting | City of Davis, CA", + "url": "https://www.cityofdavis.org/city-hall/police-department/online-crime-reporting", + "evidence_url": "https://www.cityofdavis.org/city-hall/police-department/online-crime-reporting", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Contact Us | City of Davis, CA", + "url": "https://www.cityofdavis.org/city-hall/police-department/contact-us-6030", + "evidence_url": "https://www.cityofdavis.org/city-hall/police-department/contact-us-6030", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Davis Police Department | City of Davis, CA", + "url": "https://www.cityofdavis.org/city-hall/police-department/", + "evidence_url": "https://www.cityofdavis.org/city-hall/police-department/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/city-of-davis-police/", + "title": "City of Davis Police", + "evidence_url": "https://local.nixle.com/city/ca/davis/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/city-of-davis-police/", + "checked_at": "2026-09-13T19:19:20.997032+00:00", + "final_url": "https://local.nixle.com/city-of-davis-police/", + "publisher": "City of Davis Police", + "item_count": 20, + "newest_label": "Entered: 3 months ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [ + { + "url": "https://davisca.gov/", + "error": "robots unavailable" + }, + { + "url": "http://cityofdavis.org/", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://cityofdavis.org/", + "evidence_url": "https://www.wikidata.org/entity/Q668546" + } + ], + "status": "channels-found", + "distance_from_link_km": 147.06, + "indexed_search_query": "\"Davis\" California police department official crime reports news alerts" + }, + { + "id": "162:0618394", + "geoid": "0618394", + "name": "Delano", + "census_name": "Delano city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 52334, + "population_year": 2025, + "lat": 35.76643, + "lon": -119.264221, + "checked_at": "2026-09-13T18:50:25.904084+00:00", + "domains": [], + "channels": [ + { + "kind": "department-page", + "title": "Police Department | Delano, CA - Official Website", + "url": "https://www.cityofdelano.org/105/Police-Department", + "evidence_url": "https://www.cityofdelano.org/105/Police-Department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Office of the Chief of Police | Delano, CA - Official Website", + "url": "https://www.cityofdelano.org/708/Office-of-the-Chief-of-Police", + "evidence_url": "https://www.cityofdelano.org/708/Office-of-the-Chief-of-Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [], + "pages_checked": 1, + "website_candidates": [ + { + "url": "http://www.cityofdelano.org", + "evidence_url": "https://www.wikidata.org/entity/Q775868" + } + ], + "status": "department-found", + "distance_from_link_km": 290.3, + "indexed_search_query": "\"Delano\" California police department official crime reports news alerts" + }, + { + "id": "162:0619192", + "geoid": "0619192", + "name": "Diamond Bar", + "census_name": "Diamond Bar city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 51884, + "population_year": 2025, + "lat": 34.001573, + "lon": -117.817601, + "checked_at": "2026-09-13T18:50:31.554658+00:00", + "domains": [ + { + "url": "https://diamondbarca.gov/", + "organization": "City of Diamond Bar", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Public Safety | Diamond Bar, CA", + "url": "https://www.diamondbarca.gov/189/Public-Safety", + "evidence_url": "https://www.diamondbarca.gov/189/Public-Safety", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "announcement", + "title": "
", + "url": "https://oag.ca.gov/system/files/attachments/press-docs/AB%201191%20Crime%20Gun%20Report.pdf", + "evidence_url": "https://oag.ca.gov/system/files/attachments/press-docs/AB%201191%20Crime%20Gun%20Report.pdf", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://diamondbarca.gov/", + "error": "robots unavailable" + }, + { + "url": "http://www.ci.diamond-bar.ca.us", + "error": "robots unavailable" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.ci.diamond-bar.ca.us", + "evidence_url": "https://www.wikidata.org/entity/Q768449" + } + ], + "status": "department-found", + "distance_from_link_km": 518.51, + "indexed_search_query": "\"Diamond Bar\" California police department official crime reports news alerts" + }, + { + "id": "162:0619766", + "geoid": "0619766", + "name": "Downey", + "census_name": "Downey city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 108468, + "population_year": 2025, + "lat": 33.938237, + "lon": -118.130856, + "checked_at": "2026-09-13T18:50:30.305719+00:00", + "domains": [], + "channels": [ + { + "kind": "newsroom", + "title": "Department News | City of Downey, CA", + "url": "https://www.downeyca.org/our-city/departments/police/department-news", + "evidence_url": "https://www.downeyca.org/our-city/departments/police/department-news", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "File Online Report | City of Downey, CA", + "url": "https://www.downeyca.org/our-city/departments/police/file-online-report", + "evidence_url": "https://www.downeyca.org/our-city/departments/police/file-online-report", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Prevention and Safety | City of Downey, CA", + "url": "https://www.downeyca.org/our-city/departments/police/crime-prevention-and-safety", + "evidence_url": "https://www.downeyca.org/our-city/departments/police/crime-prevention-and-safety", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "http://www.downeyca.org/", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 1, + "website_candidates": [ + { + "url": "http://www.downeyca.org/", + "evidence_url": "https://www.wikidata.org/entity/Q488946" + } + ], + "status": "channels-found", + "distance_from_link_km": 503.77, + "indexed_search_query": "\"Downey\" California police department official crime reports news alerts" + }, + { + "id": "162:0620018", + "geoid": "0620018", + "name": "Dublin", + "census_name": "Dublin city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 71602, + "population_year": 2025, + "lat": 37.716137, + "lon": -121.896229, + "checked_at": "2026-09-13T18:50:19.218890+00:00", + "domains": [ + { + "url": "https://dublinca.gov/", + "organization": "City of Dublin", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://dublin-ca.gov/", + "organization": "City of Dublin", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "alerts", + "url": "https://dublin.ca.gov/alertcenter.aspx?CID=1", + "evidence_url": "https://dublin.ca.gov/alertcenter.aspx?CID=1", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Services | Dublin, CA - Official Website", + "url": "https://www.dublin.ca.gov/2294/Police-Services", + "evidence_url": "https://www.dublin.ca.gov/2294/Police-Services", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Events | Dublin, CA - Official Website", + "url": "https://dublin.ca.gov/130/Police-Events", + "evidence_url": "https://dublin.ca.gov/130/Police-Events", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://dublinca.gov/", + "error": "robots unavailable" + }, + { + "url": "https://dublin-ca.gov/", + "error": "robots unavailable" + } + ], + "pages_checked": 3, + "website_candidates": [ + { + "url": "https://www.dublin.ca.gov/", + "evidence_url": "https://www.wikidata.org/entity/Q837109" + } + ], + "status": "channels-found", + "distance_from_link_km": 52.71, + "indexed_search_query": "\"Dublin\" California police department official crime reports news alerts" + }, + { + "id": "162:0621230", + "geoid": "0621230", + "name": "Eastvale", + "census_name": "Eastvale city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 70594, + "population_year": 2025, + "lat": 33.963274, + "lon": -117.582369, + "checked_at": "2026-09-13T18:50:33.390125+00:00", + "domains": [ + { + "url": "https://eastvaleca.gov/", + "organization": "City of Eastvale", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Crime Statistics | City of Eastvale, CA", + "url": "https://www.eastvaleca.gov/services/law-enforcement-services/crime-statistics", + "evidence_url": "https://www.eastvaleca.gov/services/law-enforcement-services/crime-statistics", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Services | City of Eastvale, CA", + "url": "https://www.eastvaleca.gov/government/police-services", + "evidence_url": "https://www.eastvaleca.gov/government/police-services", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://eastvaleca.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://www.eastvaleca.gov/", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://www.eastvaleca.gov/", + "evidence_url": "https://www.wikidata.org/entity/Q3046621" + } + ], + "status": "department-found", + "distance_from_link_km": 536.94, + "indexed_search_query": "\"Eastvale\" California police department official crime reports news alerts" + }, + { + "id": "162:0621712", + "geoid": "0621712", + "name": "El Cajon", + "census_name": "El Cajon city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 101755, + "population_year": 2025, + "lat": 32.801673, + "lon": -116.960468, + "checked_at": "2026-09-13T18:50:39.100530+00:00", + "domains": [ + { + "url": "https://elcajon.gov/", + "organization": "City of El Cajon", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "newsroom", + "title": "Happening Now | El Cajon, CA", + "url": "https://www.elcajon.gov/your-government/departments/police-department/information-you-may-need/police-department-news/happening-now", + "evidence_url": "https://www.elcajon.gov/your-government/departments/police-department/information-you-may-need/police-department-news/happening-now", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "Happening Now | El Cajon, CA", + "url": "https://www.elcajon.gov/your-government/departments/police-department/information-you-may-need/police-department-news/happening-now/-arch-1", + "evidence_url": "https://www.elcajon.gov/your-government/departments/police-department/information-you-may-need/police-department-news/happening-now/-arch-1", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Welcome to the El Cajon Police Department | El Cajon, CA", + "url": "https://www.elcajon.gov/your-government/departments/police", + "evidence_url": "https://www.elcajon.gov/your-government/departments/police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://elcajon.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "http://www.ci.el-cajon.ca.us/", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.ci.el-cajon.ca.us/", + "evidence_url": "https://www.wikidata.org/entity/Q369947" + } + ], + "status": "channels-found", + "distance_from_link_km": 670.43, + "indexed_search_query": "\"El Cajon\" California police department official crime reports news alerts" + }, + { + "id": "162:0622230", + "geoid": "0622230", + "name": "El Monte", + "census_name": "El Monte city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 105075, + "population_year": 2025, + "lat": 34.074633, + "lon": -118.029136, + "checked_at": "2026-09-13T18:50:29.609115+00:00", + "domains": [ + { + "url": "https://elmonteca.gov/", + "organization": "City of El Monte", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Police | El Monte, CA", + "url": "https://www.elmonteca.gov/209/Police", + "evidence_url": "https://www.elmonteca.gov/209/Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Staff Directory \u2022 Police", + "url": "https://www.elmonteca.gov/m/directory/department?did=13", + "evidence_url": "https://www.elmonteca.gov/m/directory/department?did=13", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Staff Directory \u2022 Police", + "url": "https://www.ci.el-monte.ca.us/m/directory/department?did=13", + "evidence_url": "https://www.ci.el-monte.ca.us/m/directory/department?did=13", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.ci.el-monte.ca.us", + "evidence_url": "https://www.wikidata.org/entity/Q595550" + } + ], + "status": "department-found", + "distance_from_link_km": 499.07, + "indexed_search_query": "\"El Monte\" California police department official crime reports news alerts" + }, + { + "id": "162:0622020", + "geoid": "0622020", + "name": "Elk Grove", + "census_name": "Elk Grove city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 185007, + "population_year": 2025, + "lat": 38.414621, + "lon": -121.384961, + "checked_at": "2026-09-13T18:50:21.836380+00:00", + "domains": [ + { + "url": "https://elkgrove.gov/", + "organization": "City of Elk Grove, CA", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Police Department", + "url": "https://elkgrove.gov/departments-and-divisions/police-department", + "evidence_url": "https://elkgrove.gov/departments-and-divisions/police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Safety Dashboard", + "url": "https://elkgrove.gov/police/safety-dashboard", + "evidence_url": "https://elkgrove.gov/police/safety-dashboard", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Emergencies and Non-emergencies", + "url": "https://elkgrove.gov/police/emergencies-and-non-emergencies", + "evidence_url": "https://elkgrove.gov/police/emergencies-and-non-emergencies", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://elkgrove.gov/", + "error": "HTTP Error 403: Forbidden" + }, + { + "url": "http://www.elkgrovecity.org/", + "error": "HTTP Error 403: Forbidden" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.elkgrovecity.org/", + "evidence_url": "https://www.wikidata.org/entity/Q671314" + } + ], + "status": "department-found", + "distance_from_link_km": 139.13, + "indexed_search_query": "\"Elk Grove\" California police department official crime reports news alerts" + }, + { + "id": "162:0622678", + "geoid": "0622678", + "name": "Encinitas", + "census_name": "Encinitas city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 60736, + "population_year": 2025, + "lat": 33.050632, + "lon": -117.263616, + "checked_at": "2026-09-13T18:50:38.606324+00:00", + "domains": [ + { + "url": "https://encinitasca.gov/", + "organization": "City of Encinitas", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Sheriff Quarterly Presentation | City of Encinitas", + "url": "https://www.encinitasca.gov/government/departments/public-safety/sheriff-quarterly-presentation", + "evidence_url": "https://www.encinitasca.gov/government/departments/public-safety/sheriff-quarterly-presentation", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "News List | San Diego County Sheriff", + "url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-npage-4", + "evidence_url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-npage-4", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "News List | San Diego County Sheriff", + "url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-npage-3/-arch-1", + "evidence_url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-npage-3/-arch-1", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://encinitasca.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://www.encinitasca.gov/", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://www.encinitasca.gov/", + "evidence_url": "https://www.wikidata.org/entity/Q532711" + } + ], + "status": "channels-found", + "distance_from_link_km": 630.97, + "indexed_search_query": "\"Encinitas\" California police department official crime reports news alerts" + }, + { + "id": "162:0622804", + "geoid": "0622804", + "name": "Escondido", + "census_name": "Escondido city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 146030, + "population_year": 2025, + "lat": 33.133053, + "lon": -117.074043, + "checked_at": "2026-09-13T18:47:00.967376+00:00", + "domains": [ + { + "url": "https://escondido.gov/", + "organization": "City of Escondido", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://escondido.gov/m/newsflash/home/detail/218", + "evidence_url": "https://escondido.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://escondido.gov/m/newsflash/Home/Detail/301", + "evidence_url": "https://escondido.gov/m/newsflash/home/detail/218", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://escondido.gov/m/newsflash/Home/Detail/299", + "evidence_url": "https://escondido.gov/m/newsflash/home/detail/218", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://escondido.gov/m/newsflash/Home/Detail/298", + "evidence_url": "https://escondido.gov/m/newsflash/home/detail/218", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://escondido.gov/m/newsflash", + "evidence_url": "https://escondido.gov/m/newsflash/home/detail/218", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://escondido.gov/list.aspx?Mode=Subscribe", + "evidence_url": "https://escondido.gov/m/newsflash", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://escondido.gov/m/newsflash/Home/Detail/172", + "evidence_url": "https://escondido.gov/m/newsflash", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/escondido-police-department/", + "title": "Escondido Police Department", + "evidence_url": "https://local.nixle.com/city/ca/escondido/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/escondido-police-department/", + "checked_at": "2026-09-13T19:19:20.997196+00:00", + "final_url": "https://local.nixle.com/escondido-police-department/", + "publisher": "Escondido Police Department", + "item_count": 20, + "newest_label": "Entered: 4 days, 23 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [], + "pages_checked": 5, + "status": "channels-found", + "distance_from_link_km": 635.93 + }, + { + "id": "162:0623182", + "geoid": "0623182", + "name": "Fairfield", + "census_name": "Fairfield city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 122489, + "population_year": 2025, + "lat": 38.261965, + "lon": -122.032389, + "checked_at": "2026-09-13T18:50:20.838612+00:00", + "domains": [], + "channels": [ + { + "kind": "department-page", + "title": "Police Department | Fairfield, CA", + "url": "https://www.fairfield.ca.gov/government/city-departments/police", + "evidence_url": "https://www.fairfield.ca.gov/government/city-departments/police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Daily Activity Logs | Fairfield, CA", + "url": "https://www.fairfield.ca.gov/government/city-departments/police/operations-bureau/daily-activity-logs", + "evidence_url": "https://www.fairfield.ca.gov/government/city-departments/police/operations-bureau/daily-activity-logs", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Records & Reports | Fairfield, CA", + "url": "https://www.fairfield.ca.gov/government/city-departments/police/support-services-bureau/police-records-reports", + "evidence_url": "https://www.fairfield.ca.gov/government/city-departments/police/support-services-bureau/police-records-reports", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/fairfield-ca-police-department/", + "title": "Fairfield, CA Police Department", + "evidence_url": "https://local.nixle.com/city/ca/fairfield/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/fairfield-ca-police-department/", + "checked_at": "2026-09-13T19:19:21.834007+00:00", + "final_url": "https://local.nixle.com/fairfield-ca-police-department/", + "publisher": "Fairfield, CA Police Department", + "item_count": 20, + "newest_label": "Entered: 2 days, 15 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [ + { + "url": "http://www.fairfield.ca.gov", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 1, + "website_candidates": [ + { + "url": "http://www.fairfield.ca.gov", + "evidence_url": "https://www.wikidata.org/entity/Q323432" + } + ], + "status": "channels-found", + "distance_from_link_km": 113.52, + "indexed_search_query": "\"Fairfield\" California police department official crime reports news alerts" + }, + { + "id": "162:0624638", + "geoid": "0624638", + "name": "Folsom", + "census_name": "Folsom city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 91983, + "population_year": 2025, + "lat": 38.666597, + "lon": -121.141635, + "checked_at": "2026-09-13T18:50:22.541894+00:00", + "domains": [ + { + "url": "https://folsom.gov/", + "organization": "City of Folsom", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Police | Folsom, CA", + "url": "https://www.folsom.ca.us/government/police", + "evidence_url": "https://www.folsom.ca.us/government/police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "incident-log", + "title": "Police Log | Folsom, CA", + "url": "https://www.folsom.ca.us/government/police/crime-information/police-log", + "evidence_url": "https://www.folsom.ca.us/government/police/crime-information/police-log", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Connect with Us | Folsom, CA", + "url": "https://www.folsom.ca.us/government/police/connect-with-us", + "evidence_url": "https://www.folsom.ca.us/government/police/connect-with-us", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/folsom-police-department/", + "title": "Folsom Police Department", + "evidence_url": "https://local.nixle.com/city/ca/folsom/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/folsom-police-department/", + "checked_at": "2026-09-13T19:19:22.532991+00:00", + "final_url": "https://local.nixle.com/folsom-police-department/", + "publisher": "Folsom Police Department", + "item_count": 20, + "newest_label": "Entered: 21 hours, 57 minutes ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [ + { + "url": "https://folsom.gov/", + "error": "robots unavailable" + }, + { + "url": "http://www.folsom.ca.us", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.folsom.ca.us", + "evidence_url": "https://www.wikidata.org/entity/Q984155" + } + ], + "status": "channels-found", + "distance_from_link_km": 173.12, + "indexed_search_query": "\"Folsom\" California police department official crime reports news alerts" + }, + { + "id": "162:0624680", + "geoid": "0624680", + "name": "Fontana", + "census_name": "Fontana city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 221223, + "population_year": 2025, + "lat": 34.109686, + "lon": -117.462888, + "checked_at": "2026-09-13T18:46:54.799633+00:00", + "domains": [ + { + "url": "https://fontanaca.gov/", + "organization": "City of Fontana", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://fontanaca.gov/3577/Police-Department", + "evidence_url": "https://fontanaca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://fontanaca.gov/AlertCenter.aspx", + "evidence_url": "https://fontanaca.gov/3577/Police-Department", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://fontanaca.gov/AlertCenter.aspx?AID=The-City-has-been-made-aware-of-fraudule-26", + "evidence_url": "https://fontanaca.gov/3577/Police-Department", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "x", + "url": "https://x.com/fontanapd", + "evidence_url": "https://fontanaca.gov/3577/Police-Department", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "crime-map", + "url": "http://www.crimemapping.com/", + "evidence_url": "https://fontanaca.gov/3577/Police-Department", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://fontanaca.gov/CivicAlerts.aspx?CID=32", + "evidence_url": "https://fontanaca.gov/3577/Police-Department", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://fontanaca.gov/List.aspx", + "evidence_url": "https://fontanaca.gov/AlertCenter.aspx", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://fontanaca.gov/list.aspx?Mode=Subscribe", + "evidence_url": "https://fontanaca.gov/AlertCenter.aspx", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://fontanaca.gov/AlertCenter.aspx?CID=Emergency-Alert-1", + "evidence_url": "https://fontanaca.gov/AlertCenter.aspx", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://fontanaca.gov/m/newsflash?cat=32", + "evidence_url": "https://fontanaca.gov/3577/Police-Department", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://fontanaca.gov/DocumentCenter/View/49386/March-2026-Crime-Stats-PDF?bidId=", + "evidence_url": "https://fontanaca.gov/3577/Police-Department", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/sbsd---fontana-sheriffs-department/", + "title": "SBSD - Fontana Sheriff's Department", + "evidence_url": "https://local.nixle.com/city/ca/fontana/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/sbsd---fontana-sheriffs-department/", + "checked_at": "2026-09-13T19:19:23.248393+00:00", + "final_url": "https://local.nixle.com/sbsd---fontana-sheriffs-department/", + "publisher": "SBSD - Fontana Sheriff's Department", + "item_count": 20, + "newest_label": "Entered: 4 days ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [], + "pages_checked": 5, + "status": "channels-found", + "distance_from_link_km": 533.88 + }, + { + "id": "162:0625380", + "geoid": "0625380", + "name": "Fountain Valley", + "census_name": "Fountain Valley city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 55508, + "population_year": 2025, + "lat": 33.710582, + "lon": -117.951129, + "checked_at": "2026-09-13T18:50:33.318900+00:00", + "domains": [ + { + "url": "https://fountainvalley.gov/", + "organization": "Fountain Valley", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Police Department | The City of Fountain Valley", + "url": "https://www.fountainvalley.gov/1471/Police-Department", + "evidence_url": "https://www.fountainvalley.gov/1471/Police-Department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "My Police Department | The City of Fountain Valley", + "url": "https://www.fountainvalley.gov/430/My-Police-Department", + "evidence_url": "https://www.fountainvalley.gov/430/My-Police-Department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Prevention | The City of Fountain Valley", + "url": "https://fountainvalley.gov/709/Crime-Prevention", + "evidence_url": "https://fountainvalley.gov/709/Crime-Prevention", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://www.fountainvalley.org/", + "evidence_url": "https://www.wikidata.org/entity/Q838769" + } + ], + "status": "department-found", + "distance_from_link_km": 533.71, + "indexed_search_query": "\"Fountain Valley\" California police department official crime reports news alerts" + }, + { + "id": "162:0626000", + "geoid": "0626000", + "name": "Fremont", + "census_name": "Fremont city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 226442, + "population_year": 2025, + "lat": 37.49446, + "lon": -121.94115, + "checked_at": "2026-09-13T18:50:19.173340+00:00", + "domains": [ + { + "url": "https://fremontpolice.gov/", + "organization": "City of Fremont Police Department", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://fremont.gov/", + "organization": "City of Fremont", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://fremontfire.gov/", + "organization": "City of Fremont", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.fremontpolice.gov/", + "evidence_url": "https://www.fremontpolice.gov/", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + }, + { + "kind": "x", + "url": "https://x.com/fremontpd", + "evidence_url": "https://www.fremont.gov/about/news-media/social-media-center", + "verification": "official-department-reference", + "access": "not-tested" + }, + { + "kind": "newsroom", + "title": "News List | Fremont Police Department, CA", + "url": "https://www.fremontpolice.gov/about-us/about-fremont-police/spotlight-and-news/news-list", + "evidence_url": "https://www.fremontpolice.gov/about-us/about-fremont-police/spotlight-and-news/news-list", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "Fremont Police Department News and Spotlight | Fremont Police Department, CA", + "url": "https://www.fremontpolice.gov/about-us/about-fremont-police/spotlight-and-news", + "evidence_url": "https://www.fremontpolice.gov/about-us/about-fremont-police/spotlight-and-news", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/fremont-police-department-ca/", + "title": "Fremont Police Department (CA)", + "evidence_url": "https://local.nixle.com/city/ca/fremont/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/fremont-police-department-ca/", + "checked_at": "2026-09-13T19:19:23.950956+00:00", + "final_url": "https://local.nixle.com/fremont-police-department-ca/", + "publisher": "Fremont Police Department (CA)", + "item_count": 20, + "newest_label": "Entered: 1 day, 23 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [ + { + "url": "https://fremontpolice.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://fremont.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://fremontfire.gov/", + "error": "robots unavailable" + }, + { + "url": "http://www.ci.fremont.ca.us", + "error": "HTTP Error 400: Bad Request" + } + ], + "pages_checked": 4, + "website_candidates": [ + { + "url": "http://www.ci.fremont.ca.us", + "evidence_url": "https://www.wikidata.org/entity/Q49220" + } + ], + "status": "channels-found", + "distance_from_link_km": 27.91, + "indexed_search_query": "\"Fremont\" California police department official crime reports news alerts" + }, + { + "id": "162:0627000", + "geoid": "0627000", + "name": "Fresno", + "census_name": "Fresno city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 555549, + "population_year": 2025, + "lat": 36.782684, + "lon": -119.793359, + "checked_at": "2026-09-13T18:50:23.146178+00:00", + "domains": [ + { + "url": "https://fresno.gov/", + "organization": "City of Fresno", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Police Department \u2013 City of Fresno", + "url": "https://www.fresno.gov/police/", + "evidence_url": "https://www.fresno.gov/police/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Records and Reports \u2013 City of Fresno", + "url": "https://www.fresno.gov/police/records-and-reports/", + "evidence_url": "https://www.fresno.gov/police/records-and-reports/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Contacts \u2013 City of Fresno", + "url": "https://www.fresno.gov/police/police-contacts/", + "evidence_url": "https://www.fresno.gov/police/police-contacts/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://fresno.gov/", + "error": "HTTP Error 400: Bad Request" + } + ], + "pages_checked": 1, + "website_candidates": [], + "status": "department-found", + "distance_from_link_km": 197.59, + "indexed_search_query": "\"Fresno\" California police department official crime reports news alerts" + }, + { + "id": "162:0628000", + "geoid": "0628000", + "name": "Fullerton", + "census_name": "Fullerton city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 138675, + "population_year": 2025, + "lat": 33.885716, + "lon": -117.928025, + "checked_at": "2026-09-13T18:50:31.765067+00:00", + "domains": [ + { + "url": "https://fullertonca.gov/", + "organization": "City of Fullerton", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "social-directory", + "url": "https://linktr.ee/fullertonpd", + "evidence_url": "https://linktr.ee/fullertonpd", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "url": "https://www.cityoffullerton.com/government/departments/police", + "evidence_url": "https://www.cityoffullerton.com/government/departments/police", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "url": "https://www.cityoffullerton.com/government/departments/police/crime-trends/latest-news", + "evidence_url": "https://linktr.ee/fullertonpd", + "verification": "reviewed-primary-web-source", + "access": "HTTP-403; reference-only" + } + ], + "errors": [ + { + "url": "https://fullertonca.gov/", + "error": "robots unavailable" + } + ], + "pages_checked": 1, + "website_candidates": [], + "status": "channels-found", + "distance_from_link_km": 520.73, + "indexed_search_query": "\"Fullerton\" California police department official crime reports news alerts" + }, + { + "id": "162:0629000", + "geoid": "0629000", + "name": "Garden Grove", + "census_name": "Garden Grove city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 170455, + "population_year": 2025, + "lat": 33.778782, + "lon": -117.960472, + "checked_at": "2026-09-13T18:50:32.380834+00:00", + "domains": [ + { + "url": "https://gardengroveca.gov/", + "organization": "City of Garden Grove", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://ggcity.org/public-safety", + "evidence_url": "https://ggcity.org", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://ggcity.org/docs/police-press-release/amber-alert-kidnapping-victim-suspect-located", + "evidence_url": "https://ggcity.org/public-safety", + "link_text": "Amber Alert- Kidnapping / Victim & Suspect Located", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://ggcity.org/docs/police-press-release/archive", + "evidence_url": "https://ggcity.org/public-safety", + "link_text": "View All Press Releases", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "facebook", + "url": "http://facebook.com/GardenGrovePD", + "evidence_url": "https://ggcity.org/public-safety", + "link_text": "Facebook @GardenGrovePD", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "x", + "url": "https://x.com/gardengrovepd", + "evidence_url": "https://ggcity.org/public-safety", + "link_text": "Twitter @GardenGrovePD", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "instagram", + "url": "http://instagram.com/gardengrovepd", + "evidence_url": "https://ggcity.org/public-safety", + "link_text": "Instagram @GardenGrovePD", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "nextdoor", + "url": "https://nextdoor.com/agency-detail/ca/garden-grove/garden-grove-police-department/", + "evidence_url": "https://ggcity.org/public-safety", + "link_text": "NextDoor GGPD on NextDoor", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://ggcity.org/news", + "evidence_url": "https://ggcity.org/public-safety", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://ggcity.org/connect", + "evidence_url": "https://ggcity.org/public-safety", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://ggcity.org/media-kit", + "evidence_url": "https://ggcity.org/public-safety", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + } + ], + "errors": [ + { + "url": "https://gardengroveca.gov/", + "error": "robots unavailable" + } + ], + "pages_checked": 6, + "website_candidates": [ + { + "url": "https://ggcity.org", + "evidence_url": "https://www.wikidata.org/entity/Q50054" + } + ], + "status": "channels-found", + "distance_from_link_km": 527.47 + }, + { + "id": "162:0628168", + "geoid": "0628168", + "name": "Gardena", + "census_name": "Gardena city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 58460, + "population_year": 2025, + "lat": 33.894417, + "lon": -118.307522, + "checked_at": "2026-09-13T18:46:45.582753+00:00", + "domains": [ + { + "url": "https://gardenaca.gov/", + "organization": "City of Gardena", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://cityofgardena.org/", + "evidence_url": "https://cityofgardena.org/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://cityofgardena.org/local-news/", + "evidence_url": "https://cityofgardena.org/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://cityofgardena.org/social-media/", + "evidence_url": "https://cityofgardena.org/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/gardena_police/", + "evidence_url": "https://cityofgardena.org/social-media/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "x", + "url": "https://x.com/gpdchief", + "evidence_url": "https://cityofgardena.org/social-media/", + "verification": "linked-from-official-page", + "access": "not-tested" + } + ], + "errors": [], + "pages_checked": 4, + "status": "channels-found", + "distance_from_link_km": 496.68 + }, + { + "id": "162:0629504", + "geoid": "0629504", + "name": "Gilroy", + "census_name": "Gilroy city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 60764, + "population_year": 2025, + "lat": 37.006407, + "lon": -121.585321, + "checked_at": "2026-09-13T18:50:19.198921+00:00", + "domains": [], + "channels": [ + { + "kind": "department-page", + "url": "https://www.cityofgilroy.org/151/Police-Department", + "evidence_url": "https://www.cityofgilroy.org/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.cityofgilroy.org/197/Transparency", + "evidence_url": "https://www.cityofgilroy.org/151/Police-Department", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "incident-log", + "url": "http://gilroy.citizenrims.com/", + "evidence_url": "https://www.cityofgilroy.org/197/Transparency", + "link_text": "gilroy.crimegraphics.com Opens in new window Gilroy.citizenrims.com", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.cityofgilroy.org/298/Development-Activity-Projects", + "evidence_url": "https://www.cityofgilroy.org/151/Police-Department", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.cityofgilroy.org/653/Police-Forms", + "evidence_url": "https://www.cityofgilroy.org/151/Police-Department", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "incident-log", + "url": "https://gilroy.citizenrims.com/form?formId=35", + "evidence_url": "https://www.cityofgilroy.org/653/Police-Forms", + "link_text": "Surveillance Camera Registration", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.cityofgilroy.org/DocumentCenter/View/20609", + "evidence_url": "https://www.cityofgilroy.org/653/Police-Forms", + "link_text": "Amplified Sound Notification", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.cityofgilroy.org/DocumentCenter/View/5498/Police-Records---Application-for-Release-of-Information-Police-Report-Request?bidId=", + "evidence_url": "https://www.cityofgilroy.org/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/gilroy-police-department/", + "title": "Gilroy Police Department", + "evidence_url": "https://local.nixle.com/city/ca/gilroy/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/gilroy-police-department/", + "checked_at": "2026-09-13T19:19:24.727165+00:00", + "final_url": "https://local.nixle.com/gilroy-police-department/", + "publisher": "Gilroy Police Department", + "item_count": 20, + "newest_label": "Entered: 1 month ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [], + "pages_checked": 6, + "website_candidates": [ + { + "url": "http://www.ci.gilroy.ca.us", + "evidence_url": "https://www.wikidata.org/entity/Q837097" + } + ], + "status": "channels-found", + "distance_from_link_km": 41.22 + }, + { + "id": "162:0630000", + "geoid": "0630000", + "name": "Glendale", + "census_name": "Glendale city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 187160, + "population_year": 2025, + "lat": 34.181393, + "lon": -118.24583, + "checked_at": "2026-09-13T18:50:28.477634+00:00", + "domains": [ + { + "url": "https://glendaleca.gov/", + "organization": "City of Glendale", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "newsroom", + "title": "Glendale Police News & Media Relations | City of Glendale, CA", + "url": "https://www.glendaleca.gov/government/departments/police-department/news-media-relations", + "evidence_url": "https://www.glendaleca.gov/government/departments/police-department/news-media-relations", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Glendale Police Department, California | City of Glendale, CA", + "url": "https://www.glendaleca.gov/government/departments/police-department", + "evidence_url": "https://www.glendaleca.gov/government/departments/police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Transparency | City of Glendale, CA", + "url": "https://www.glendaleca.gov/government/departments/police-department/transparency", + "evidence_url": "https://www.glendaleca.gov/government/departments/police-department/transparency", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://glendaleca.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://www.glendaleca.gov/", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://www.glendaleca.gov/", + "evidence_url": "https://www.wikidata.org/entity/Q485716" + } + ], + "status": "channels-found", + "distance_from_link_km": 476.71, + "indexed_search_query": "\"Glendale\" California police department official crime reports news alerts" + }, + { + "id": "162:0631960", + "geoid": "0631960", + "name": "Hanford", + "census_name": "Hanford city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 62229, + "population_year": 2025, + "lat": 36.328141, + "lon": -119.654773, + "checked_at": "2026-09-13T18:50:24.945073+00:00", + "domains": [ + { + "url": "https://hanfordca.gov/", + "organization": "City of Hanford", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Police | Hanford, CA", + "url": "https://www.ci.hanford.ca.us/1198/Police", + "evidence_url": "https://www.ci.hanford.ca.us/1198/Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Staff Directory \u2022 Police Department", + "url": "https://www.ci.hanford.ca.us/m/directory/department?did=51", + "evidence_url": "https://www.ci.hanford.ca.us/m/directory/department?did=51", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://www.cityofhanfordca.com/", + "evidence_url": "https://www.wikidata.org/entity/Q375185" + } + ], + "status": "department-found", + "distance_from_link_km": 227.74, + "indexed_search_query": "\"Hanford\" California police department official crime reports news alerts" + }, + { + "id": "162:0632548", + "geoid": "0632548", + "name": "Hawthorne", + "census_name": "Hawthorne city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 82741, + "population_year": 2025, + "lat": 33.914775, + "lon": -118.348083, + "checked_at": "2026-09-13T18:50:28.698478+00:00", + "domains": [ + { + "url": "https://hawthorneca.gov/", + "organization": "City of Hawthorne", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Police Department | Hawthorne, CA", + "url": "https://www.cityofhawthorne.org/departments/police-department", + "evidence_url": "https://www.cityofhawthorne.org/departments/police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "City Of Hawthorne Police Department", + "url": "https://locator.lacounty.gov/lac/Location/3068923/city-of-hawthorne-police-department", + "evidence_url": "https://locator.lacounty.gov/lac/Location/3068923/city-of-hawthorne-police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "nextdoor", + "title": "Hawthorne Police Department - 472 updates", + "url": "https://nextdoor.com/agency-detail/ca/hawthorne/hawthorne-police/", + "evidence_url": "https://nextdoor.com/agency-detail/ca/hawthorne/hawthorne-police/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://hawthorneca.gov/", + "error": "robots unavailable" + }, + { + "url": "https://www.cityofhawthorne.org", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://www.cityofhawthorne.org", + "evidence_url": "https://www.wikidata.org/entity/Q688596" + } + ], + "status": "channels-found", + "distance_from_link_km": 492.54, + "indexed_search_query": "\"Hawthorne\" California police department official crime reports news alerts" + }, + { + "id": "162:0633000", + "geoid": "0633000", + "name": "Hayward", + "census_name": "Hayward city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 157113, + "population_year": 2025, + "lat": 37.626826, + "lon": -122.104015, + "checked_at": "2026-09-13T18:46:34.417184+00:00", + "domains": [ + { + "url": "https://hayward-ca.gov/", + "organization": "CITY OF HAYWARD", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://hayward-ca.gov/police-department", + "evidence_url": "https://hayward-ca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://hayward-ca.gov/discover/news/sep26/press-release-safe-drives-save-lives", + "evidence_url": "https://hayward-ca.gov/police-department", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/HaywardPoliceDept", + "evidence_url": "https://hayward-ca.gov/police-department", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "x", + "url": "https://x.com/haywardpd", + "evidence_url": "https://hayward-ca.gov/police-department", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "youtube", + "url": "https://www.youtube.com/user/HaywardPoliceDept", + "evidence_url": "https://hayward-ca.gov/police-department", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "nextdoor", + "url": "https://nextdoor.com/agency/ca/hayward/hayward-police-department", + "evidence_url": "https://hayward-ca.gov/police-department", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://hayward-ca.gov/discover/news/1", + "evidence_url": "https://hayward-ca.gov/police-department", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://hayward-ca.gov/discover/news/2", + "evidence_url": "https://hayward-ca.gov/police-department", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://hayward-ca.gov/discover/news/aug26/press-release-fatal-collision-harder-rd-and-soto-rd", + "evidence_url": "https://hayward-ca.gov/discover/news/2", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://hayward-ca.gov/discover/news/aug26/press-release-homicide-investigation-300-block-winton-ave", + "evidence_url": "https://hayward-ca.gov/discover/news/2", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://hayward-ca.gov/discover/news/jul26/update-amber-alert-issued-3-month-old-maxence-sirois", + "evidence_url": "https://hayward-ca.gov/discover/news/2", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://hayward-ca.gov/discover/news/jul26/amber-alert-issued-3-month-old-maxence-sirois", + "evidence_url": "https://hayward-ca.gov/discover/news/2", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://hayward-ca.gov/discover/news/306", + "evidence_url": "https://hayward-ca.gov/police-department", + "verification": "official-domain-or-referral", + "access": "public-html" + } + ], + "errors": [], + "pages_checked": 5, + "status": "channels-found", + "distance_from_link_km": 44.94 + }, + { + "id": "162:0633182", + "geoid": "0633182", + "name": "Hemet", + "census_name": "Hemet city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 93649, + "population_year": 2025, + "lat": 33.734068, + "lon": -116.996808, + "checked_at": "2026-09-13T18:50:38.089900+00:00", + "domains": [ + { + "url": "https://hemetca.gov/", + "organization": "City of Hemet", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "newsroom", + "url": "https://hemetpd.com/", + "evidence_url": "https://hemetpd.com/", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + }, + { + "kind": "feed-candidate", + "url": "https://hemetpd.com/feed/", + "evidence_url": "https://hemetpd.com/", + "verification": "reviewed-police-publisher-feed", + "access": "public-feed-with-items", + "link_text": "Hemet Police Department RSS", + "validation": { + "url": "https://hemetpd.com/feed/", + "checked_at": "2026-09-13T19:22:30.700425+00:00", + "final_url": "https://hemetpd.com/feed", + "publisher": "Hemet Police Department", + "item_count": 10, + "newest_label": "2026-09-12T14:00:00+00:00", + "access": "public-feed-with-items", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + } + } + ], + "errors": [ + { + "url": "http://www.cityofhemet.org", + "error": "robots unavailable" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.cityofhemet.org", + "evidence_url": "https://www.wikidata.org/entity/Q948188" + } + ], + "status": "channels-found", + "distance_from_link_km": 593.8, + "indexed_search_query": "\"Hemet\" California police department official crime reports news alerts" + }, + { + "id": "162:0633434", + "geoid": "0633434", + "name": "Hesperia", + "census_name": "Hesperia city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 102605, + "population_year": 2025, + "lat": 34.397038, + "lon": -117.315198, + "checked_at": "2026-09-13T18:50:31.928169+00:00", + "domains": [ + { + "url": "https://hesperiaca.gov/", + "organization": "City Of Hesperia", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Staff Directory \u2022 Police Department", + "url": "https://hesperiaca.gov/directory.aspx?did=7", + "evidence_url": "https://hesperiaca.gov/directory.aspx?did=7", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Map | City of Hesperia - Official Website", + "url": "https://www.hesperiaca.gov/325/Crime-Map", + "evidence_url": "https://www.hesperiaca.gov/325/Crime-Map", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police | City of Hesperia - Official Website", + "url": "https://www.hesperiaca.gov/306/Police", + "evidence_url": "https://www.hesperiaca.gov/306/Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/sbsd---hesperia-police-department/", + "title": "SBSD - Hesperia Police Department", + "evidence_url": "https://local.nixle.com/city/ca/hesperia/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/sbsd---hesperia-police-department/", + "checked_at": "2026-09-13T19:19:25.523116+00:00", + "final_url": "https://local.nixle.com/sbsd---hesperia-police-department/", + "publisher": "SBSD - Hesperia Police Department", + "item_count": 20, + "newest_label": "Entered: 2 days, 23 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.cityofhesperia.us", + "evidence_url": "https://www.wikidata.org/entity/Q773516" + } + ], + "status": "channels-found", + "distance_from_link_km": 523.58, + "indexed_search_query": "\"Hesperia\" California police department official crime reports news alerts" + }, + { + "id": "162:0633588", + "geoid": "0633588", + "name": "Highland", + "census_name": "Highland city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 57614, + "population_year": 2025, + "lat": 34.113473, + "lon": -117.165729, + "checked_at": "2026-09-13T18:50:35.988716+00:00", + "domains": [ + { + "url": "https://highlandca.gov/", + "organization": "City of Highland", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Staff Directory \u2022 Police / Sheriff's Department", + "url": "https://www.highlandca.gov/m/directory/department?did=24", + "evidence_url": "https://www.highlandca.gov/m/directory/department?did=24", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "2024 ANNUAL CRIME REPORT", + "url": "https://wp.sbcounty.gov/sheriff/wp-content/uploads/sites/17/2024-Annual-Crime-Report.pdf", + "evidence_url": "https://wp.sbcounty.gov/sheriff/wp-content/uploads/sites/17/2024-Annual-Crime-Report.pdf", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "AB 1191 Crime Gun Report 2025", + "url": "https://oag.ca.gov/system/files/media/ab1191-crime-gun-report-2025.pdf", + "evidence_url": "https://oag.ca.gov/system/files/media/ab1191-crime-gun-report-2025.pdf", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/sbsd---highland-police-department/", + "title": "SBSD - Highland Police Department", + "evidence_url": "https://local.nixle.com/city/ca/highland/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/sbsd---highland-police-department/", + "checked_at": "2026-09-13T19:19:26.069527+00:00", + "final_url": "https://local.nixle.com/sbsd---highland-police-department/", + "publisher": "SBSD - Highland Police Department", + "item_count": 20, + "newest_label": "Entered: 1 week ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [ + { + "url": "http://www.ci.highland.ca.us", + "error": "robots unavailable" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.ci.highland.ca.us", + "evidence_url": "https://www.wikidata.org/entity/Q693577" + } + ], + "status": "channels-found", + "distance_from_link_km": 554.21, + "indexed_search_query": "\"Highland\" California police department official crime reports news alerts" + }, + { + "id": "162:0636000", + "geoid": "0636000", + "name": "Huntington Beach", + "census_name": "Huntington Beach city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 191451, + "population_year": 2025, + "lat": 33.698007, + "lon": -118.003834, + "checked_at": "2026-09-13T18:50:33.024478+00:00", + "domains": [ + { + "url": "https://huntingtonbeachca.gov/", + "organization": "City of Huntington Beach", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "OC Crime Stoppers | Orange County California - Sheriff's Department", + "url": "https://www.ocsheriff.gov/occrimestoppers", + "evidence_url": "https://www.ocsheriff.gov/occrimestoppers", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "WebPolice (MapServer)", + "url": "https://gis.huntingtonbeachca.gov/arcgis/rest/services/WebPolice/MapServer", + "evidence_url": "https://gis.huntingtonbeachca.gov/arcgis/rest/services/WebPolice/MapServer", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Residential Burglary Crew Arrested - Irvine Police Department", + "url": "https://irvinepd.gov/2026/06/25/residential-burglary-crew-arrested-2/", + "evidence_url": "https://irvinepd.gov/2026/06/25/residential-burglary-crew-arrested-2/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://huntingtonbeachca.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://www.huntingtonbeachca.gov", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://www.huntingtonbeachca.gov", + "evidence_url": "https://www.wikidata.org/entity/Q5917" + } + ], + "status": "department-found", + "distance_from_link_km": 531.54, + "indexed_search_query": "\"Huntington Beach\" California police department official crime reports news alerts" + }, + { + "id": "162:0636056", + "geoid": "0636056", + "name": "Huntington Park", + "census_name": "Huntington Park city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 51544, + "population_year": 2025, + "lat": 33.979248, + "lon": -118.217438, + "checked_at": "2026-09-13T18:46:45.356750+00:00", + "domains": [ + { + "url": "https://hpca.gov/", + "organization": "City Of Huntington Park", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://hppolice.org/", + "evidence_url": "https://hpca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "feed-candidate", + "url": "https://hppolice.org/feed/", + "evidence_url": "https://hppolice.org/", + "verification": "linked-from-official-page", + "access": "public-feed-with-items", + "validation": { + "url": "https://hppolice.org/feed/", + "checked_at": "2026-09-13T19:03:11.180894+00:00", + "final_url": "https://hppolice.org/feed/", + "publisher": "Huntington Park Police Department", + "item_count": 10, + "newest_label": "2023-11-15T07:35:48+00:00", + "access": "public-feed-with-items", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + } + }, + { + "kind": "feed-candidate", + "url": "https://hppolice.org/comments/feed/", + "evidence_url": "https://hppolice.org/", + "verification": "linked-from-official-page", + "access": "empty-public-feed", + "validation": { + "url": "https://hppolice.org/comments/feed/", + "checked_at": "2026-09-13T19:03:11.519133+00:00", + "final_url": "https://hppolice.org/comments/feed/", + "publisher": "\n\tComments for Huntington Park Police Department\t", + "item_count": 0, + "newest_label": null, + "access": "empty-public-feed", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + } + }, + { + "kind": "newsroom", + "url": "https://hppolice.org/2022/08/08/dui-checkpoint-press-release/", + "evidence_url": "https://hppolice.org/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/huntingtonparkpd/", + "evidence_url": "https://hppolice.org/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://hppolice.org/category/news/", + "evidence_url": "https://hppolice.org/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "feed-candidate", + "url": "https://hppolice.org/category/news/feed/", + "evidence_url": "https://hppolice.org/category/news/", + "verification": "linked-from-official-page", + "access": "public-feed-with-items", + "validation": { + "url": "https://hppolice.org/category/news/feed/", + "checked_at": "2026-09-13T19:03:11.814319+00:00", + "final_url": "https://hppolice.org/category/news/feed/", + "publisher": "News Archives - Huntington Park Police Department", + "item_count": 10, + "newest_label": "2023-11-15T07:35:48+00:00", + "access": "public-feed-with-items", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + } + }, + { + "kind": "newsroom", + "url": "https://hppolice.org/2022/05/31/press-release-historic-lieutenant-promotion/", + "evidence_url": "https://hppolice.org/category/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://hppolice.org/crime-prevention/", + "evidence_url": "https://hppolice.org/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://hppolice.org/about-hppd/crime-statistics/", + "evidence_url": "https://hppolice.org/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://hpca.gov/600/Police-Department", + "evidence_url": "https://hpca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://hpca.gov/list.aspx", + "evidence_url": "https://hpca.gov/600/Police-Department", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://hpca.gov/472/Social-Networking", + "evidence_url": "https://hpca.gov/600/Police-Department", + "verification": "official-domain-or-referral", + "access": "public-html" + } + ], + "errors": [], + "pages_checked": 7, + "status": "channels-found", + "distance_from_link_km": 495.04 + }, + { + "id": "162:0636448", + "geoid": "0636448", + "name": "Indio", + "census_name": "Indio city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 94269, + "population_year": 2025, + "lat": 33.731639, + "lon": -116.235971, + "checked_at": "2026-09-13T18:50:38.870093+00:00", + "domains": [ + { + "url": "https://indioca.gov/", + "organization": "City of Indio", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "DOJ CJSC CRIMES Context", + "url": "https://data-openjustice.doj.ca.gov/sites/default/files/dataset/2025-07/Crimes-Clear-Arson%20Context_06162025.pdf", + "evidence_url": "https://data-openjustice.doj.ca.gov/sites/default/files/dataset/2025-07/Crimes-Clear-Arson%20Context_06162025.pdf", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://indioca.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "http://www.indio.org", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.indio.org", + "evidence_url": "https://www.wikidata.org/entity/Q838789" + } + ], + "status": "department-found", + "distance_from_link_km": 647.43, + "indexed_search_query": "\"Indio\" California police department official crime reports news alerts" + }, + { + "id": "162:0636546", + "geoid": "0636546", + "name": "Inglewood", + "census_name": "Inglewood city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 101662, + "population_year": 2025, + "lat": 33.956068, + "lon": -118.344274, + "checked_at": "2026-09-13T18:50:28.573489+00:00", + "domains": [ + { + "url": "https://cityofinglewood.gov/", + "organization": "City of Inglewood", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Crime Statistics | Inglewood, CA", + "url": "https://www.cityofinglewood.org/659/Crime-Statistics", + "evidence_url": "https://www.cityofinglewood.org/659/Crime-Statistics", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police | Inglewood, CA", + "url": "https://www.cityofinglewood.org/1649/Police", + "evidence_url": "https://www.cityofinglewood.org/1649/Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Inglewood Police Department", + "url": "https://locator.lacounty.gov/lac/Location/3052997/inglewood-police-department", + "evidence_url": "https://locator.lacounty.gov/lac/Location/3052997/inglewood-police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://cityofinglewood.gov/", + "error": "robots unavailable" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://www.cityofinglewood.org/", + "evidence_url": "https://www.wikidata.org/entity/Q621549" + } + ], + "status": "department-found", + "distance_from_link_km": 489.27, + "indexed_search_query": "\"Inglewood\" California police department official crime reports news alerts" + }, + { + "id": "162:0636770", + "geoid": "0636770", + "name": "Irvine", + "census_name": "Irvine city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 318764, + "population_year": 2025, + "lat": 33.678399, + "lon": -117.771254, + "checked_at": "2026-09-13T18:46:56.496506+00:00", + "domains": [ + { + "url": "https://irvinepd.gov/", + "organization": "City of Irvine", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://cityofirvine.gov/", + "organization": "City of Irvine", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://joinirvinepd.gov/", + "organization": "City of Irvine", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "instagram", + "url": "https://www.instagram.com/irvinepolice/", + "evidence_url": "https://irvinepd.gov/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "x", + "url": "https://x.com/irvinepolice", + "evidence_url": "https://irvinepd.gov/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/IrvinePD/", + "evidence_url": "https://irvinepd.gov/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "youtube", + "url": "http://www.youtube.com/@IrvinePolice", + "evidence_url": "https://irvinepd.gov/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "crime-map", + "url": "https://communitycrimemap.com/", + "evidence_url": "https://irvinepd.gov/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://irvinepd.gov", + "evidence_url": "https://irvinepd.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://member.everbridge.net/453003085613900/login", + "evidence_url": "https://irvinepd.gov", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.chp.ca.gov/news-alerts/alerts/amber-alert/", + "evidence_url": "https://irvinepd.gov", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.calalerts.org/", + "evidence_url": "https://irvinepd.gov", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://irvinepd.gov/category/news-releases/", + "evidence_url": "https://irvinepd.gov", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://irvinepd.gov/social-media-policy/", + "evidence_url": "https://irvinepd.gov", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://irvinepd.gov/news-and-information/", + "evidence_url": "https://irvinepd.gov", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://irvinepd.gov/2026/01/05/scam-alert/", + "evidence_url": "https://irvinepd.gov/news-and-information/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.ocsheriff.gov/", + "evidence_url": "https://irvinepd.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "crime-map", + "url": "https://www.crimemapping.com/", + "evidence_url": "https://www.ocsheriff.gov/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "http://ws.ocsheriff.gov/Blotter/", + "evidence_url": "https://www.ocsheriff.gov/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.ocsheriff.gov/news/protecting-pedestrians-california-urges-drivers-stay-alert-september", + "evidence_url": "https://www.ocsheriff.gov/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "facebook", + "url": "https://facebook.com/ocsheriff", + "evidence_url": "https://www.ocsheriff.gov/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "instagram", + "url": "https://instagram.com/ocsheriff", + "evidence_url": "https://www.ocsheriff.gov/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "x", + "url": "https://x.com/ocsheriff", + "evidence_url": "https://www.ocsheriff.gov/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "youtube", + "url": "https://youtube.com/ocsheriff", + "evidence_url": "https://www.ocsheriff.gov/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.ocsheriff.gov/news", + "evidence_url": "https://www.ocsheriff.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://www.ocsheriff.gov/news/fatal-traffic-collision-lake-forest-driver-arrested-dui-1", + "evidence_url": "https://www.ocsheriff.gov/news", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.ocsheriff.gov/news/multi-location-search-warrant-takes-down-catalytic-converter-theft-ring", + "evidence_url": "https://www.ocsheriff.gov/news", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.ocsheriff.gov/news/fatal-traffic-collision-mission-viejo-two-drivers-arrested", + "evidence_url": "https://www.ocsheriff.gov/news", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.ocsheriff.gov/news/fatal-traffic-collision-lake-forest-driver-arrested-dui-0", + "evidence_url": "https://www.ocsheriff.gov/news", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.ocsheriff.gov/news/fatal-traffic-collision-san-juan-capistrano-driver-arrested-hit-and-run", + "evidence_url": "https://www.ocsheriff.gov/news", + "verification": "linked-from-official-page", + "access": "not-tested" + } + ], + "errors": [], + "pages_checked": 7, + "status": "channels-found", + "distance_from_link_km": 547.49 + }, + { + "id": "162:0637692", + "geoid": "0637692", + "name": "Jurupa Valley", + "census_name": "Jurupa Valley city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 107311, + "population_year": 2025, + "lat": 34.002591, + "lon": -117.467612, + "checked_at": "2026-09-13T18:50:34.136576+00:00", + "domains": [ + { + "url": "https://jurupavalley.gov/", + "organization": "City of Jurupa Valley", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "City of Jurupa Valley", + "url": "https://www.bscc.ca.gov/wp-content/uploads/78-Riverside-County-Jurupa-Valley-Sheriff-Station.pdf", + "evidence_url": "https://www.bscc.ca.gov/wp-content/uploads/78-Riverside-County-Jurupa-Valley-Sheriff-Station.pdf", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://www.jurupavalley.org/", + "evidence_url": "https://www.wikidata.org/entity/Q3736036" + } + ], + "status": "department-found", + "distance_from_link_km": 541.61, + "indexed_search_query": "\"Jurupa Valley\" California police department official crime reports news alerts" + }, + { + "id": "162:0639290", + "geoid": "0639290", + "name": "La Habra", + "census_name": "La Habra city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 60908, + "population_year": 2025, + "lat": 33.927927, + "lon": -117.951554, + "checked_at": "2026-09-13T18:46:51.673654+00:00", + "domains": [ + { + "url": "https://lahabra.gov/", + "organization": "City of La Habra", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://lahabraca.gov/", + "organization": "City of La Habra", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://cityoflahabra-ca.gov/", + "organization": "CITY OF LA HABRA", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://lahabraca.gov/227/Police-Department", + "evidence_url": "https://lahabraca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "crime-map", + "url": "https://communitycrimemap.com/", + "evidence_url": "https://lahabraca.gov/227/Police-Department", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://lahabraca.gov/CivicAlerts.aspx?AID=694", + "evidence_url": "https://lahabraca.gov/227/Police-Department", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://lahabraca.gov/CivicAlerts.aspx?CID=5", + "evidence_url": "https://lahabraca.gov/227/Police-Department", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://lahabraca.gov/m/newsflash?cat=5", + "evidence_url": "https://lahabraca.gov/227/Police-Department", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://lahabraca.gov/list.aspx?Mode=Subscribe", + "evidence_url": "https://lahabraca.gov/m/newsflash?cat=5", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://lahabraca.gov/1044/Alerts-Requests", + "evidence_url": "https://lahabraca.gov/m/newsflash?cat=5", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://lahabraca.gov/list.aspx", + "evidence_url": "https://lahabraca.gov/m/newsflash?cat=5", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://lahabraca.gov/m/newsflash/home/detail/694", + "evidence_url": "https://lahabraca.gov/227/Police-Department", + "verification": "official-domain-or-referral", + "access": "public-html" + } + ], + "errors": [ + { + "url": "https://lahabra.gov/", + "error": "robots unavailable" + }, + { + "url": "https://cityoflahabra-ca.gov/", + "error": "robots unavailable" + } + ], + "pages_checked": 6, + "status": "channels-found", + "distance_from_link_km": 515.82 + }, + { + "id": "162:0640004", + "geoid": "0640004", + "name": "La Mesa", + "census_name": "La Mesa city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 59914, + "population_year": 2025, + "lat": 32.769495, + "lon": -117.021923, + "checked_at": "2026-09-13T18:47:01.931920+00:00", + "domains": [ + { + "url": "https://cityoflamesa.gov/", + "organization": "City of La Mesa", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/city-of-la-mesa", + "evidence_url": "https://cityoflamesa.gov/", + "verification": "linked-from-official-page", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/city-of-la-mesa", + "checked_at": "2026-09-13T19:03:11.913961+00:00", + "final_url": "https://local.nixle.com/city-of-la-mesa", + "publisher": "City of La Mesa", + "item_count": 20, + "newest_label": "Entered: 2 days ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [], + "pages_checked": 1, + "status": "channels-found", + "distance_from_link_km": 669.37 + }, + { + "id": "162:0639248", + "geoid": "0639248", + "name": "Laguna Niguel", + "census_name": "Laguna Niguel city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 64107, + "population_year": 2025, + "lat": 33.528654, + "lon": -117.701253, + "checked_at": "2026-09-13T18:50:36.850279+00:00", + "domains": [], + "channels": [ + { + "kind": "department-page", + "title": "Laguna Niguel | Orange County California - Sheriff's Department", + "url": "https://www.ocsheriff.gov/patrol-areas/laguna-niguel", + "evidence_url": "https://www.ocsheriff.gov/patrol-areas/laguna-niguel", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Patrol Areas | Orange County California - Sheriff's Department", + "url": "https://www.ocsheriff.gov/patrol-areas", + "evidence_url": "https://www.ocsheriff.gov/patrol-areas", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Laguna Niguel Police Services | Orange County California - Sheriff's Department", + "url": "https://www.ocsheriff.gov/location/laguna-niguel-police-services", + "evidence_url": "https://www.ocsheriff.gov/location/laguna-niguel-police-services", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [], + "pages_checked": 1, + "website_candidates": [ + { + "url": "http://ci.laguna-niguel.ca.us", + "evidence_url": "https://www.wikidata.org/entity/Q948086" + } + ], + "status": "department-found", + "distance_from_link_km": 564.2, + "indexed_search_query": "\"Laguna Niguel\" California police department official crime reports news alerts" + }, + { + "id": "162:0639486", + "geoid": "0639486", + "name": "Lake Elsinore", + "census_name": "Lake Elsinore city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 75067, + "population_year": 2025, + "lat": 33.685956, + "lon": -117.335404, + "checked_at": "2026-09-13T18:50:37.628737+00:00", + "domains": [], + "channels": [ + { + "kind": "department-page", + "url": "https://www.lake-elsinore.org/172/Public-Safety", + "evidence_url": "https://www.lake-elsinore.org/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.lake-elsinore.org/706/LE-Ready-Emergency-Alerts", + "evidence_url": "https://www.lake-elsinore.org/172/Public-Safety", + "link_text": "LE Ready Emergency Alerts", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.lake-elsinore.org/list.aspx", + "evidence_url": "https://www.lake-elsinore.org/172/Public-Safety", + "link_text": "Notifications", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.lake-elsinore.org/313/Crime-Free-Multi-Housing-Program", + "evidence_url": "https://www.lake-elsinore.org/172/Public-Safety", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.lake-elsinore.org/309/Police", + "evidence_url": "https://www.lake-elsinore.org/172/Public-Safety", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + } + ], + "errors": [], + "pages_checked": 5, + "website_candidates": [ + { + "url": "http://www.lake-elsinore.org", + "evidence_url": "https://www.wikidata.org/entity/Q948102" + } + ], + "status": "channels-found", + "distance_from_link_km": 574.82 + }, + { + "id": "162:0639496", + "geoid": "0639496", + "name": "Lake Forest", + "census_name": "Lake Forest city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 86333, + "population_year": 2025, + "lat": 33.654946, + "lon": -117.675848, + "checked_at": "2026-09-13T18:50:36.424794+00:00", + "domains": [ + { + "url": "https://lakeforestca.gov/", + "organization": "City of Lake Forest", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Lake Forest | Orange County California - Sheriff's Department", + "url": "https://ocsheriff.gov/patrol-areas/lake-forest", + "evidence_url": "https://ocsheriff.gov/patrol-areas/lake-forest", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "| Orange County California - Sheriff's Department", + "url": "https://www.ocsheriff.gov/node", + "evidence_url": "https://www.ocsheriff.gov/node", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Services | Lake Forest, CA - Official Website", + "url": "https://city-lakeforest.com/298/Police-Services.html", + "evidence_url": "https://city-lakeforest.com/298/Police-Services.html", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://lakeforestca.gov/", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.city-lakeforest.com", + "evidence_url": "https://www.wikidata.org/entity/Q752671" + } + ], + "status": "department-found", + "distance_from_link_km": 555.39, + "indexed_search_query": "\"Lake Forest\" California police department official crime reports news alerts" + }, + { + "id": "162:0639892", + "geoid": "0639892", + "name": "Lakewood", + "census_name": "Lakewood city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 78010, + "population_year": 2025, + "lat": 33.847135, + "lon": -118.121894, + "checked_at": "2026-09-13T18:46:50.117517+00:00", + "domains": [ + { + "url": "https://lakewoodca.gov/", + "organization": "City of Lakewood, California", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.lakewoodca.gov/Residents/Public-Safety", + "evidence_url": "https://www.lakewoodca.gov/Home", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.lakewoodca.gov/About/Traffic-and-Construction-Alerts", + "evidence_url": "https://www.lakewoodca.gov/Residents/Public-Safety", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.lakewoodca.gov/About/City-news", + "evidence_url": "https://www.lakewoodca.gov/Residents/Public-Safety", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.lakewoodca.gov/About/City-news/eMagazine-Subscription", + "evidence_url": "https://www.lakewoodca.gov/Residents/Public-Safety", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.lakewoodca.gov/Residents/Public-Safety/Homelessness", + "evidence_url": "https://www.lakewoodca.gov/Home", + "verification": "official-domain-or-referral", + "access": "public-html" + } + ], + "errors": [], + "pages_checked": 6, + "status": "channels-found", + "distance_from_link_km": 511.88 + }, + { + "id": "162:0640130", + "geoid": "0640130", + "name": "Lancaster", + "census_name": "Lancaster city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 170084, + "population_year": 2025, + "lat": 34.693558, + "lon": -118.175305, + "checked_at": "2026-09-13T18:50:28.015751+00:00", + "domains": [ + { + "url": "https://cityoflancasterca.gov/", + "organization": "City of Lancaster", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Lancaster Police Department | City of Lancaster", + "url": "https://www.cityoflancasterca.org/our-city/departments-services/public-safety", + "evidence_url": "https://www.cityoflancasterca.org/our-city/departments-services/public-safety", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "News - Lancaster City Bureau of Police", + "url": "https://police.cityoflancasterpa.gov/news/", + "evidence_url": "https://police.cityoflancasterpa.gov/news/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "announcement", + "title": "Lancaster Police Department | City of Lancaster", + "url": "https://www.cityoflancasterca.org/Home/Components/News/News/10422/2541", + "evidence_url": "https://www.cityoflancasterca.org/Home/Components/News/News/10422/2541", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://cityoflancasterca.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://www.cityoflancasterca.org/", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://www.cityoflancasterca.org/", + "evidence_url": "https://www.wikidata.org/entity/Q494711" + } + ], + "status": "channels-found", + "distance_from_link_km": 441.91, + "indexed_search_query": "\"Lancaster\" California police department official crime reports news alerts" + }, + { + "id": "162:0641474", + "geoid": "0641474", + "name": "Lincoln", + "census_name": "Lincoln city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 57367, + "population_year": 2025, + "lat": 38.874464, + "lon": -121.292886, + "checked_at": "2026-09-13T18:46:40.733839+00:00", + "domains": [ + { + "url": "https://lincolnca.gov/", + "organization": "City of Lincoln", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.lincolnca.gov/living-here/police-and-fire/", + "evidence_url": "https://www.lincolnca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.lincolnca.gov/css/GOV/modules/alert/alert.css", + "evidence_url": "https://www.lincolnca.gov/living-here/police-and-fire/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://lincolnca.citizenrims.com/map", + "evidence_url": "https://www.lincolnca.gov/living-here/police-and-fire/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://lincolnca.citizenrims.com/form?formId=128", + "evidence_url": "https://www.lincolnca.gov/living-here/police-and-fire/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://lincolnca.citizenrims.com/form?formId=129", + "evidence_url": "https://www.lincolnca.gov/living-here/police-and-fire/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.lincolnca.gov/news", + "evidence_url": "https://www.lincolnca.gov/living-here/police-and-fire/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://www.lincolnca.gov/news/posts/lincoln-police-arrest-suspect-following-stabbing-investigation-news-release/", + "evidence_url": "https://www.lincolnca.gov/news", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.lincolnca.gov/news/posts/homicide-investigation-and-arrest-news-release/", + "evidence_url": "https://www.lincolnca.gov/news", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.lincolnca.gov/our-government/social-media/", + "evidence_url": "https://www.lincolnca.gov/living-here/police-and-fire/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/MyLincolnPD", + "evidence_url": "https://www.lincolnca.gov/our-government/social-media/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/lincolnpd/", + "evidence_url": "https://www.lincolnca.gov/our-government/social-media/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "x", + "url": "https://x.com/lincolnpolice", + "evidence_url": "https://www.lincolnca.gov/our-government/social-media/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://media-001-us.cdn.govstack.com/lincolnca-003-us/media/pcdlwoml/8242026-lpd-presser.pdf", + "evidence_url": "https://www.lincolnca.gov/news/posts/lincoln-police-arrest-suspect-following-stabbing-investigation-news-release/", + "verification": "linked-from-official-page", + "access": "not-tested" + } + ], + "errors": [], + "pages_checked": 7, + "status": "channels-found", + "distance_from_link_km": 190.07 + }, + { + "id": "162:0641992", + "geoid": "0641992", + "name": "Livermore", + "census_name": "Livermore city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 83457, + "population_year": 2025, + "lat": 37.686977, + "lon": -121.759781, + "checked_at": "2026-09-13T18:50:19.214714+00:00", + "domains": [ + { + "url": "https://livermoreca.gov/", + "organization": "City of Livermore", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "City of Livermore website | Home Police", + "url": "https://police.livermoreca.gov/", + "evidence_url": "https://police.livermoreca.gov/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "ABOUT US | City of Livermore website", + "url": "https://police.livermoreca.gov/about-us", + "evidence_url": "https://police.livermoreca.gov/about-us", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "CONTACT | City of Livermore website", + "url": "https://police.livermoreca.gov/contact", + "evidence_url": "https://police.livermoreca.gov/contact", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "url": "https://police.livermoreca.gov/community/news-press-releases", + "evidence_url": "https://police.livermoreca.gov/community/news-press-releases", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://livermoreca.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "http://www.cityoflivermore.net", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.cityoflivermore.net", + "evidence_url": "https://www.wikidata.org/entity/Q138901" + } + ], + "status": "channels-found", + "distance_from_link_km": 51.89, + "indexed_search_query": "\"Livermore\" California police department official crime reports news alerts" + }, + { + "id": "162:0642202", + "geoid": "0642202", + "name": "Lodi", + "census_name": "Lodi city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 69100, + "population_year": 2025, + "lat": 38.12161, + "lon": -121.290765, + "checked_at": "2026-09-13T18:50:20.751396+00:00", + "domains": [ + { + "url": "https://lodi.gov/", + "organization": "City of Lodi", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://lodica.gov/", + "organization": "City of Lodi", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Lodi Police Department | Lodi, CA", + "url": "https://www.lodi.gov/215/Police", + "evidence_url": "https://www.lodi.gov/215/Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Chief of Police | Lodi, CA", + "url": "https://www.lodi.gov/886/Chief-of-Police", + "evidence_url": "https://www.lodi.gov/886/Chief-of-Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Lodi Police Department | Lodi, CA", + "url": "https://www.lodi.gov/215/Police?from=AppAgg.com", + "evidence_url": "https://www.lodi.gov/215/Police?from=AppAgg.com", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://lodi.gov/", + "error": "robots unavailable" + }, + { + "url": "https://lodica.gov/", + "error": "robots unavailable" + } + ], + "pages_checked": 3, + "website_candidates": [ + { + "url": "http://www.lodi.gov/", + "evidence_url": "https://www.wikidata.org/entity/Q852647" + } + ], + "status": "department-found", + "distance_from_link_km": 113.24, + "indexed_search_query": "\"Lodi\" California police department official crime reports news alerts" + }, + { + "id": "162:0643000", + "geoid": "0643000", + "name": "Long Beach", + "census_name": "Long Beach city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 450469, + "population_year": 2025, + "lat": 33.780791, + "lon": -118.16818, + "checked_at": "2026-09-13T18:46:51.379835+00:00", + "domains": [ + { + "url": "https://longbeach.gov/", + "organization": "City of Long Beach California", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://longbeach.gov/police/", + "evidence_url": "https://longbeach.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "incident-log", + "url": "https://www.p3tips.com/TipForm.aspx?ID=365", + "evidence_url": "https://longbeach.gov/police/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://longbeach.gov/disasterpreparedness/alert-long-beach/", + "evidence_url": "https://longbeach.gov/police/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://longbeach.gov/press-release-archive/?cid=6697", + "evidence_url": "https://longbeach.gov/police/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-sept-12-2026/", + "evidence_url": "https://longbeach.gov/police/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-sept-11-2026/", + "evidence_url": "https://longbeach.gov/police/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-sept-10-2026/", + "evidence_url": "https://longbeach.gov/police/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "x", + "url": "https://x.com/lbpd", + "evidence_url": "https://longbeach.gov/police/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://longbeach.gov/socialmedia/", + "evidence_url": "https://longbeach.gov/police/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://longbeach.gov/social-media-tc/", + "evidence_url": "https://longbeach.gov/police/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://longbeach.gov/news-archive/?cid=6697", + "evidence_url": "https://longbeach.gov/police/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-sept-9-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-sept-8-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-sept-7-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-sept-6-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-sept-5-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-sept-4-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-sept-3-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-sept-2-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-sept-1-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-31-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-30-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-29-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-28-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-27-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-26-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-25-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-24-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-23-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-22-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-21-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-20-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-19-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-18-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-17-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-16-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-15-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-14-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-13-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-12-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-11-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-10-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-9-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-8-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-6-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-7-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-5-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-4-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-3-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-2-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-1-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-31-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-30-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-29-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-28-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-27-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-26-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-25-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-24-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-23-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-22-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-21-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-20-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-19-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-18-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-17-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-16-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-15-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-14-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter---july-13-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-12-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-11-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-10-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-9-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-8-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-7-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-6-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-5-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-4-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-3-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-2-20262/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-1-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-30-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-29-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-28-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-27-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-26-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-25-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-24-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-23-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-22-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-21-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-20-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-19-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-18-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-17-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-16-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-15-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-14-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-13-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-12-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-11-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-10-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-9-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-8-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-7-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-6-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-5-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-4-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-June-3-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-2-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-1-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-31-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-30-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-29-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-28-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-27-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-26-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-25-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-24-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-23-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-22-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-21-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-20-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-19-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-18-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-17-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-16-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-15-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-14-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-13-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-12-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-11-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-10-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-9-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-8-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-7-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-6-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-5-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-4-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-3-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-2-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-1-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-30-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-29-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-28-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-27-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-26-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-25-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-24-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-23-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-22-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-21-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-20-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-19-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-18-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-17-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-16-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-15-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-14-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-13-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-12-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-11-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-10-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-9-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-8-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-7-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-6-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-5-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-4-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-3-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-2-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-1-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-31-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-30-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-29-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-28-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-27-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-26-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-25-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-24-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-23-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-22-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-21-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-20-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-19-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-18-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-17-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-16-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-15-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-14-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-13-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-12-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-11-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-10-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-9-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-8-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-7-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-6-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-5-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-4-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-3-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-2-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-1-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-feb-28-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-feb-27-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-feb-26-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-feb-25-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-feb-24-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-feb-23-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-feb-22-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-feb-21-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-feb-20-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-feb-19-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-feb-18-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-feb-17-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-feb-16-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-feb-15-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-feb-14-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-feb-13-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-feb-12-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-feb-11-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-feb-10-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-feb-9-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-feb-8-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-feb-7-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-feb-6-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-feb-5-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-feb-4-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-feb-3-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-feb-2-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-feb-1-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-31-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-30-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-29-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-28-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-27-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-26-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-25-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-24-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-23-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-22-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-21-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-20-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-19-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-18-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-17-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-16-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-15-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-14-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-13-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-12-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-11-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-10-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-9-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-8-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-7-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-6-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-5-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-4-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-3-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-2-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-jan-1-2026/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-31-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-30-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-29-20252/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-28-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-27-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-26-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-25-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-24-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-23-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-22-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-21-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-20-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-19-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-18-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-17-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-16-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-15-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-14-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-13-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-12-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-11-20252/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-10-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-9-20252/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-8-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-7-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-6-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-5-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-4-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-3-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-2-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-dec-1-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-30-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-29-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-28-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-27-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-26-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-25-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-24-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-23-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-22-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-21-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-20-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-19-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-18-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-17-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-16-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-15-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-14-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-13-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-12-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-11-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-10-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-9-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-8-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-7-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-6-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-5-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-4-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-3-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-2-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-nov-1-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-october-31-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-october-30-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-october-29-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-october-28-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-october-27-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-oct-26-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-oct-25-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-october-24-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-october-23-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-october-22-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-october-21-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-october-20-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-october-19-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-october-18-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter---oct-17-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-october-16-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-october-15-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-october-14-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-october-13-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-october-12-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-october-11-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-october-10-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-october-9-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-october-8-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-october-7-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-october-6-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-october-5-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-october-4-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-october-3-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-october-2-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-october-1-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-september-30-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-september-29-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-september-28-20252/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-september-27-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-september-26-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-september-25-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-september-24-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-sept.-23-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-september-22-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-september-20-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-september-19-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-september-18-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-september-17-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-september-16-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-september-15-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-september-14-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-september-13-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-september-12-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-september-11-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-september-10-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-september-9-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-september-8-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-sept.-7-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-september-6-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-sept-5-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-sept-4-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-september-3-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-september-2-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-september-1-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-august-31-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-august-30-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-august-29-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-august-28-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-august-27-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-august-26-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-august-25-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-august-24-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-august-23-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-august-22-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-august-21-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-august-20-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-august-19-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-august-18-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-august-17-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-august-16-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-august-15-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-august-14-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-august-13-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-august-12-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-august-11-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-august-10-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-august-9-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-august-8-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-3-20252/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-6-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-5-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-4-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-3-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-2-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-1-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-31-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-30-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-29-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-28-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-27-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter---july-26-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter---july-25-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-24-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-23-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-22-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-21-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-20-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-19-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-18-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-17-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-16-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-15-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-14-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-13-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-12-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-11-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-10-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-9-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-8-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-7-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-6-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-5-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-4-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-3-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-2-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-july-1-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-30-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-29-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-28-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-27-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-26-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-25-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-24-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-23-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-22-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-21-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-20-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-19-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-18-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-17-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-16-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-15-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-14-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-13-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-12-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-11-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-10-20252/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-9-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-8-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-7-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-6-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-5-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-4-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-3-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-2-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-june-1-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-31-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-30-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-29-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-28-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-27-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-26-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-25-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-24-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-23-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-22-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-21-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-20-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-19-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-18-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-17-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-16-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-15-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-14-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-13-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-12-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-11-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-10-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-9-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-8-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-7-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-6-20252/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-5-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-4-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-3-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-2-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-may-1-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-30-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-29-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-28-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-27-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-26-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-25-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-24-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-23-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-22-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-21-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-20-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-19-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-18-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-17-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-16-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-15-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-14-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-13-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-12-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-11-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-10-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-9-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-8-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-7-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-6-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-5-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-4-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-3-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-2-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-april-1-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-31-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-30-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-29-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-28-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-27-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-26-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-25-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-24-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-23-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-22-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-21-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-20-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-20-20252/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-19-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-march-18-2025/", + "evidence_url": "https://longbeach.gov/news-archive/?cid=6697", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://longbeach.gov/policeoversight/", + "evidence_url": "https://longbeach.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://accountportal.onsolve.net/alertlb", + "evidence_url": "https://longbeach.gov/disasterpreparedness/alert-long-beach/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://longbeach.gov/globalassets/disaster-preparedness/media-library/documents/alert-long-beach/press-release-alertlongbeach", + "evidence_url": "https://longbeach.gov/disasterpreparedness/alert-long-beach/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://longbeach.gov/globalassets/disaster-preparedness/media-library/documents/alert-long-beach/alert-long-beach-english-", + "evidence_url": "https://longbeach.gov/disasterpreparedness/alert-long-beach/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://longbeach.gov/globalassets/disaster-preparedness/media-library/documents/alert-long-beach/press-release-alertlongbeach-spanish", + "evidence_url": "https://longbeach.gov/disasterpreparedness/alert-long-beach/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://longbeach.gov/globalassets/disaster-preparedness/media-library/documents/alert-long-beach/alert-long-beach-spanish", + "evidence_url": "https://longbeach.gov/disasterpreparedness/alert-long-beach/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "http://lbc.ahasalerts.com/Default.aspx", + "evidence_url": "https://longbeach.gov/disasterpreparedness/alert-long-beach/", + "verification": "linked-from-official-page", + "access": "not-tested" + } + ], + "errors": [], + "pages_checked": 7, + "status": "channels-found", + "distance_from_link_km": 514.65 + }, + { + "id": "162:0644000", + "geoid": "0644000", + "name": "Los Angeles", + "census_name": "Los Angeles city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 3869089, + "population_year": 2025, + "lat": 34.019394, + "lon": -118.410825, + "checked_at": "2026-09-13T18:50:28.565329+00:00", + "domains": [ + { + "url": "https://lapd.gov/", + "organization": "Los Angeles Police Department", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://vny.gov/", + "organization": "Los Angeles World Airports", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://ladwp.gov/", + "organization": "Los Angeles Department of Water and Power", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "newsroom", + "url": "https://www.lapdonline.org/newsroom/", + "evidence_url": "https://www.lapdonline.org/newsroom/", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://lapd.gov/", + "error": "robots unavailable" + }, + { + "url": "https://vny.gov/", + "error": "HTTP Error 403: Forbidden" + }, + { + "url": "https://ladwp.gov/", + "error": "can only concatenate str (not \"NoneType\") to str" + } + ], + "pages_checked": 3, + "website_candidates": [], + "status": "channels-found", + "distance_from_link_km": 479.93, + "indexed_search_query": "\"Los Angeles\" California police department official crime reports news alerts" + }, + { + "id": "162:0644574", + "geoid": "0644574", + "name": "Lynwood", + "census_name": "Lynwood city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 63512, + "population_year": 2025, + "lat": 33.923959, + "lon": -118.201655, + "checked_at": "2026-09-13T18:46:46.473894+00:00", + "domains": [ + { + "url": "https://lynwoodca.gov/", + "organization": "City of Lynwood", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://lynwoodca.gov/m/newsflash/home/detail/351", + "evidence_url": "https://lynwoodca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://lynwoodca.gov/m/newsflash", + "evidence_url": "https://lynwoodca.gov/m/newsflash/home/detail/351", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://lynwoodca.gov/list.aspx?Mode=Subscribe", + "evidence_url": "https://lynwoodca.gov/m/newsflash", + "verification": "linked-from-official-page", + "access": "not-tested" + } + ], + "errors": [], + "pages_checked": 5, + "status": "channels-found", + "distance_from_link_km": 500.6 + }, + { + "id": "162:0645022", + "geoid": "0645022", + "name": "Madera", + "census_name": "Madera city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 69017, + "population_year": 2025, + "lat": 36.966193, + "lon": -120.085855, + "checked_at": "2026-09-13T18:46:40.057772+00:00", + "domains": [ + { + "url": "https://madera.gov/", + "organization": "City of Madera", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://maderametro.gov/", + "organization": "City of Madera", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://cityofmadera.gov/", + "organization": "City of Madera", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.madera.gov/emergency-protective-services/police-department/", + "evidence_url": "https://www.madera.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.madera.gov/css/GOV/modules/alert/alert.css", + "evidence_url": "https://www.madera.gov/emergency-protective-services/police-department/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/madera-police-department/", + "title": "Madera Police Department", + "evidence_url": "https://local.nixle.com/city/ca/madera/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/madera-police-department/", + "checked_at": "2026-09-13T19:19:28.994066+00:00", + "final_url": "https://local.nixle.com/madera-police-department/", + "publisher": "Madera Police Department", + "item_count": 20, + "newest_label": "Entered: 2 months, 3 weeks ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [ + { + "url": "https://maderametro.gov/", + "error": "robots unavailable" + }, + { + "url": "https://cityofmadera.gov/", + "error": "robots unavailable" + } + ], + "pages_checked": 5, + "status": "channels-found", + "distance_from_link_km": 167.52 + }, + { + "id": "162:0645484", + "geoid": "0645484", + "name": "Manteca", + "census_name": "Manteca city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 96693, + "population_year": 2025, + "lat": 37.792839, + "lon": -121.226076, + "checked_at": "2026-09-13T18:50:19.742787+00:00", + "domains": [ + { + "url": "https://manteca.gov/", + "organization": "City of Manteca", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "crime-map-directory", + "url": "https://www.manteca.gov/627/Crime-Information", + "evidence_url": "https://www.manteca.gov/627/Crime-Information", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Manteca Police Department | State of California - Department of Justice - Office of the Attorney General", + "url": "https://oag.ca.gov/fingerprints/locations/manteca-police-department", + "evidence_url": "https://oag.ca.gov/fingerprints/locations/manteca-police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/manteca-police-department/", + "title": "Manteca Police Department", + "evidence_url": "https://local.nixle.com/city/ca/manteca/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/manteca-police-department/", + "checked_at": "2026-09-13T19:19:29.844334+00:00", + "final_url": "https://local.nixle.com/manteca-police-department/", + "publisher": "Manteca Police Department", + "item_count": 20, + "newest_label": "Entered: 1 day, 12 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [ + { + "url": "https://manteca.gov/", + "error": "robots unavailable: HTTP 429" + } + ], + "pages_checked": 1, + "website_candidates": [], + "status": "channels-found", + "distance_from_link_km": 87.89, + "indexed_search_query": "\"Manteca\" California police department official crime reports news alerts" + }, + { + "id": "162:0646842", + "geoid": "0646842", + "name": "Menifee", + "census_name": "Menifee city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 118592, + "population_year": 2025, + "lat": 33.689858, + "lon": -117.184383, + "checked_at": "2026-09-13T18:50:37.814824+00:00", + "domains": [], + "channels": [ + { + "kind": "department-page", + "title": "MENIFEE POLICE DEPARTMENT", + "url": "https://www.cityofmenifee.us/Archive/ViewFile/Item/2998", + "evidence_url": "https://www.cityofmenifee.us/Archive/ViewFile/Item/2998", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [], + "pages_checked": 1, + "website_candidates": [ + { + "url": "http://www.cityofmenifee.us", + "evidence_url": "https://www.wikidata.org/entity/Q3476276" + } + ], + "status": "department-found", + "distance_from_link_km": 584.51, + "indexed_search_query": "\"Menifee\" California police department official crime reports news alerts" + }, + { + "id": "162:0646898", + "geoid": "0646898", + "name": "Merced", + "census_name": "Merced city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 99724, + "population_year": 2025, + "lat": 37.31138, + "lon": -120.470408, + "checked_at": "2026-09-13T18:50:21.707459+00:00", + "domains": [ + { + "url": "https://cityofmerced.gov/", + "organization": "City of Merced", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Police Department | City of Merced, CA", + "url": "https://www.cityofmerced.gov/public-safety/police", + "evidence_url": "https://www.cityofmerced.gov/public-safety/police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Transparency Hub | City of Merced, CA", + "url": "https://www.cityofmerced.gov/public-safety/police/transparency-hub", + "evidence_url": "https://www.cityofmerced.gov/public-safety/police/transparency-hub", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Online Crime Mapping | City of Merced, CA", + "url": "https://www.cityofmerced.gov/public-safety/police/crimemapping-com", + "evidence_url": "https://www.cityofmerced.gov/public-safety/police/crimemapping-com", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://cityofmerced.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://www.cityofmerced.gov/", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://www.cityofmerced.gov/", + "evidence_url": "https://www.wikidata.org/entity/Q499189" + } + ], + "status": "department-found", + "distance_from_link_km": 130.48, + "indexed_search_query": "\"Merced\" California police department official crime reports news alerts" + }, + { + "id": "162:0647766", + "geoid": "0647766", + "name": "Milpitas", + "census_name": "Milpitas city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 78596, + "population_year": 2025, + "lat": 37.433136, + "lon": -121.890934, + "checked_at": "2026-09-13T18:46:34.370587+00:00", + "domains": [ + { + "url": "https://milpitas.gov/", + "organization": "City of Milpitas", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.milpitas.gov/1101/Police", + "evidence_url": "curated department URL", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/MilpitasPD", + "evidence_url": "https://www.milpitas.gov/1101/Police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "x", + "url": "https://x.com/milpitaspd", + "evidence_url": "https://www.milpitas.gov/1101/Police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/milpitaspolice/", + "evidence_url": "https://www.milpitas.gov/1101/Police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "nextdoor", + "url": "https://nextdoor.com/agency-detail/ca/milpitas/milpitas-police-department/", + "evidence_url": "https://www.milpitas.gov/1101/Police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.milpitas.gov/372/Press-Releases", + "evidence_url": "https://www.milpitas.gov/1101/Police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.milpitas.gov/1098/Transparency-Portal", + "evidence_url": "https://www.milpitas.gov/372/Press-Releases", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.milpitas.gov/162/Crime-Prevention-Safety", + "evidence_url": "https://www.milpitas.gov/1101/Police", + "verification": "official-domain-or-referral", + "access": "public-html" + } + ], + "errors": [], + "pages_checked": 5, + "status": "channels-found", + "distance_from_link_km": 21.58 + }, + { + "id": "162:0648256", + "geoid": "0648256", + "name": "Mission Viejo", + "census_name": "Mission Viejo city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 90484, + "population_year": 2025, + "lat": 33.609335, + "lon": -117.656471, + "checked_at": "2026-09-13T18:50:36.805153+00:00", + "domains": [ + { + "url": "https://missionviejo.gov/", + "organization": "City of Mission Viejo", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Crime Alerts | City of Mission Viejo", + "url": "https://www.missionviejo.gov/category/crime-alerts", + "evidence_url": "https://www.missionviejo.gov/category/crime-alerts", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "incident-log", + "title": "Crime Alerts/News | City of Mission Viejo", + "url": "https://www.missionviejo.gov/departments/police-services/alert-bulletin-resources/crime-alertsnews", + "evidence_url": "https://www.missionviejo.gov/departments/police-services/alert-bulletin-resources/crime-alertsnews", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Services | City of Mission Viejo", + "url": "https://www.missionviejo.gov/departments/police-services", + "evidence_url": "https://www.missionviejo.gov/departments/police-services", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://missionviejo.gov/", + "error": "HTTP Error 404: Not Found" + }, + { + "url": "https://cityofmissionviejo.org", + "error": "HTTP Error 404: Not Found" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://cityofmissionviejo.org", + "evidence_url": "https://www.wikidata.org/entity/Q506428" + } + ], + "status": "channels-found", + "distance_from_link_km": 560.33, + "indexed_search_query": "\"Mission Viejo\" California police department official crime reports news alerts" + }, + { + "id": "162:0648354", + "geoid": "0648354", + "name": "Modesto", + "census_name": "Modesto city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 219652, + "population_year": 2025, + "lat": 37.637533, + "lon": -121.003049, + "checked_at": "2026-09-13T18:50:19.829352+00:00", + "domains": [], + "channels": [ + { + "kind": "department-page", + "title": "Crime Map | Modesto, CA", + "url": "https://www.modestogov.com/229/Crime-Map", + "evidence_url": "https://www.modestogov.com/229/Crime-Map", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Department | Modesto, CA", + "url": "https://permits.modestogov.com/223/Police-Department", + "evidence_url": "https://permits.modestogov.com/223/Police-Department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "File an Online Police Report | Modesto, CA", + "url": "https://www.modestogov.com/1169/File-a-Non-Emergency-Police-Report", + "evidence_url": "https://www.modestogov.com/1169/File-a-Non-Emergency-Police-Report", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [], + "pages_checked": 1, + "website_candidates": [ + { + "url": "http://www.modestogov.com/", + "evidence_url": "https://www.wikidata.org/entity/Q204561" + } + ], + "status": "department-found", + "distance_from_link_km": 93.81, + "indexed_search_query": "\"Modesto\" California police department official crime reports news alerts" + }, + { + "id": "162:0648816", + "geoid": "0648816", + "name": "Montebello", + "census_name": "Montebello city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 60693, + "population_year": 2025, + "lat": 34.015444, + "lon": -118.111012, + "checked_at": "2026-09-13T18:46:45.835907+00:00", + "domains": [ + { + "url": "https://montebelloca.gov/", + "organization": "City of Montebello", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.montebelloca.gov/departments/police", + "evidence_url": "https://www.montebelloca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://www.montebelloca.gov/departments/public_affairs___information_technology/press_releases", + "evidence_url": "https://www.montebelloca.gov/departments/police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.montebelloca.gov/departments/transit/rider_alerts", + "evidence_url": "https://www.montebelloca.gov/departments/police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/montebellopd", + "evidence_url": "https://www.montebelloca.gov/departments/police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "x", + "url": "https://x.com/montebellopd", + "evidence_url": "https://www.montebelloca.gov/departments/police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/montebellopd/", + "evidence_url": "https://www.montebelloca.gov/departments/police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "nextdoor", + "url": "https://nextdoor.com/agency-detail/ca/montebello/montebello-police-department/", + "evidence_url": "https://www.montebelloca.gov/departments/police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.montebelloca.gov/departments/police/news", + "evidence_url": "https://www.montebelloca.gov/departments/police", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.montebelloca.gov/departments/police/connect", + "evidence_url": "https://www.montebelloca.gov/departments/police", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "youtube", + "url": "https://www.youtube.com/@montebellopd", + "evidence_url": "https://www.montebelloca.gov/departments/police/connect", + "verification": "linked-from-official-page", + "access": "not-tested" + } + ], + "errors": [], + "pages_checked": 4, + "status": "channels-found", + "distance_from_link_km": 498.67 + }, + { + "id": "162:0648914", + "geoid": "0648914", + "name": "Monterey Park", + "census_name": "Monterey Park city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 57457, + "population_year": 2025, + "lat": 34.04838, + "lon": -118.133165, + "checked_at": "2026-09-13T18:50:28.898310+00:00", + "domains": [], + "channels": [ + { + "kind": "department-page", + "url": "http://www.montereypark.ca.gov/m/newsflash/home/detail/1409", + "evidence_url": "http://www.montereypark.ca.gov/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "http://www.MontereyPark.ca.gov/NotifyMe", + "evidence_url": "http://www.montereypark.ca.gov/m/newsflash/home/detail/1409", + "link_text": "www.montereypark.ca.gov/notifyme", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "http://www.montereypark.ca.gov/CivicAlerts.aspx?CID=1", + "evidence_url": "http://www.montereypark.ca.gov/m/newsflash/home/detail/1409", + "link_text": "News", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "http://www.montereypark.ca.gov/list.aspx", + "evidence_url": "http://www.montereypark.ca.gov/m/newsflash/home/detail/1409", + "link_text": "Notify Me", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://member.everbridge.net/93013422374936/login", + "evidence_url": "http://www.montereypark.ca.gov/m/newsflash/home/detail/1409", + "link_text": "Emergency Alerts", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "http://www.montereypark.ca.gov/m/newsflash", + "evidence_url": "http://www.montereypark.ca.gov/m/newsflash/home/detail/1409", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "feed-directory", + "url": "http://www.montereypark.ca.gov/rss.aspx", + "evidence_url": "http://www.montereypark.ca.gov/m/newsflash", + "link_text": "RSS Feed", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "http://www.montereypark.ca.gov/list.aspx?Mode=Subscribe", + "evidence_url": "http://www.montereypark.ca.gov/m/newsflash", + "link_text": "Notify Me: Subscribe to NewsFlash notifications Notify Me", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "http://www.montereypark.ca.gov/79/Stay-Connected", + "evidence_url": "http://www.montereypark.ca.gov/m/newsflash/home/detail/1409", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "http://www.montereypark.ca.gov/1683/Emergency-Alerts", + "evidence_url": "http://www.montereypark.ca.gov/79/Stay-Connected", + "link_text": "Additional info", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "x", + "url": "https://x.com/montereyparkpd", + "evidence_url": "http://www.montereypark.ca.gov/79/Stay-Connected", + "link_text": "Twitter", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/montereypark_pd/", + "evidence_url": "http://www.montereypark.ca.gov/79/Stay-Connected", + "link_text": "Instagram", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "http://www.montereypark.ca.gov/576/Cascades-Newspaper", + "evidence_url": "http://www.montereypark.ca.gov/m/newsflash/home/detail/1409", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "http://www.montereypark.ca.gov/m/newsflash/home/detail/1408", + "evidence_url": "http://www.montereypark.ca.gov/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + } + ], + "errors": [], + "pages_checked": 6, + "website_candidates": [ + { + "url": "http://ci.monterey-park.ca.us", + "evidence_url": "https://www.wikidata.org/entity/Q927213" + } + ], + "status": "channels-found", + "distance_from_link_km": 494.6 + }, + { + "id": "162:0649270", + "geoid": "0649270", + "name": "Moreno Valley", + "census_name": "Moreno Valley city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 214263, + "population_year": 2025, + "lat": 33.923253, + "lon": -117.205685, + "checked_at": "2026-09-13T18:46:57.150482+00:00", + "domains": [ + { + "url": "https://moval.gov/", + "organization": "City of Moreno Valley", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://moval.gov/departments/police/index.html", + "evidence_url": "https://moval.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://moval.gov/departments/police/report-crime.html", + "evidence_url": "https://moval.gov/departments/police/index.html", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://moval.gov/departments/police/report-602-trespass.html", + "evidence_url": "https://moval.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.riversidesheriff.org/FormCenter/Crime-6/Online-Reporting-50", + "evidence_url": "https://moval.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://www.riversidesheriff.org/m/newsflash?sortBy=1&searchTerms=&cat=", + "evidence_url": "https://www.riversidesheriff.org/FormCenter/Crime-6/Online-Reporting-50", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.riversidesheriff.org/663/Transparency", + "evidence_url": "https://www.riversidesheriff.org/FormCenter/Crime-6/Online-Reporting-50", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.riversidesheriff.org/DocumentCenter/View/6569/Nonimmigrant-Status-Notification-Report-2021-PDF", + "evidence_url": "https://www.riversidesheriff.org/663/Transparency", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.riversidesheriff.org/DocumentCenter/View/8567/Nonimmigrant-Status-Notification-Report-2024-PDF", + "evidence_url": "https://www.riversidesheriff.org/663/Transparency", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.riversidesheriff.org/DocumentCenter/View/7427/Nonimmigrant-Status-Notification-Report-2022-PDF", + "evidence_url": "https://www.riversidesheriff.org/663/Transparency", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.riversidesheriff.org/DocumentCenter/View/8053/Nonimmigrant-Status-Notification-Report-2023-PDF", + "evidence_url": "https://www.riversidesheriff.org/663/Transparency", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.riversidesheriff.org/Faq.aspx?QID=214", + "evidence_url": "https://www.riversidesheriff.org/663/Transparency", + "verification": "linked-from-official-page", + "access": "not-tested" + } + ], + "errors": [], + "pages_checked": 6, + "status": "channels-found", + "distance_from_link_km": 565.37 + }, + { + "id": "162:0649670", + "geoid": "0649670", + "name": "Mountain View", + "census_name": "Mountain View city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 85438, + "population_year": 2025, + "lat": 37.399686, + "lon": -122.079269, + "checked_at": "2026-09-13T18:50:19.168728+00:00", + "domains": [ + { + "url": "https://mvpd.gov/", + "organization": "City of Mountain View", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://mountainview.gov/", + "organization": "City of Mountain View", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "newsroom", + "url": "https://www.mountainview.gov/our-city/departments/police/news/-arch-1/-fsiteid-1/-locale-en", + "evidence_url": "https://www.mountainview.gov/our-city/departments/police/news/-arch-1/-fsiteid-1/-locale-en", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "News | Mountain View, CA", + "url": "https://www.mountainview.gov/our-city/departments/police/news?locale=en", + "evidence_url": "https://www.mountainview.gov/our-city/departments/police/news?locale=en", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police | Mountain View, CA", + "url": "https://www.mountainview.gov/our-city/departments/police?locale=en", + "evidence_url": "https://www.mountainview.gov/our-city/departments/police?locale=en", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://www.mountainview.gov/our-city/departments/police/news/-arch-1/-fsiteid-1/-locale-en", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://mvpd.gov/", + "error": "robots unavailable" + }, + { + "url": "https://mountainview.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "http://www.mountainview.gov", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 4, + "website_candidates": [ + { + "url": "http://www.mountainview.gov", + "evidence_url": "https://www.wikidata.org/entity/Q486860" + } + ], + "status": "channels-found", + "distance_from_link_km": 21.16, + "indexed_search_query": "\"Mountain View\" California police department official crime reports news alerts" + }, + { + "id": "162:0650076", + "geoid": "0650076", + "name": "Murrieta", + "census_name": "Murrieta city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 114124, + "population_year": 2025, + "lat": 33.573214, + "lon": -117.191007, + "checked_at": "2026-09-13T18:50:38.086788+00:00", + "domains": [ + { + "url": "https://murrietaca.gov/", + "organization": "City of Murrieta", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Police Activity Reports | Murrieta, CA", + "url": "https://www.murrietaca.gov/759/Police-Activity-Reports", + "evidence_url": "https://www.murrietaca.gov/759/Police-Activity-Reports", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "Murrieta Police Press Releases | Murrieta, CA", + "url": "https://www.murrietaca.gov/557/Murrieta-Police-Press-Releases", + "evidence_url": "https://www.murrietaca.gov/557/Murrieta-Police-Press-Releases", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police | Murrieta, CA", + "url": "https://mainstreet.murrietaca.gov/1409/Police", + "evidence_url": "https://mainstreet.murrietaca.gov/1409/Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://murrietaca.gov/", + "error": "robots unavailable: HTTP 429" + }, + { + "url": "https://www.murrietaca.gov", + "error": "robots unavailable: HTTP 429" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://www.murrietaca.gov", + "evidence_url": "https://www.wikidata.org/entity/Q838787" + } + ], + "status": "channels-found", + "distance_from_link_km": 593.14, + "indexed_search_query": "\"Murrieta\" California police department official crime reports news alerts" + }, + { + "id": "162:0650258", + "geoid": "0650258", + "name": "Napa", + "census_name": "Napa city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 76562, + "population_year": 2025, + "lat": 38.297872, + "lon": -122.300741, + "checked_at": "2026-09-13T18:50:21.105416+00:00", + "domains": [], + "channels": [ + { + "kind": "department-page", + "title": "Public Safety | Napa County, CA", + "url": "https://www.napacounty.gov/1579/Public-Safety", + "evidence_url": "https://www.napacounty.gov/1579/Public-Safety", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Office of the Chief of Police | Napa, CA", + "url": "https://www.cityofnapa.org/472/Office-of-the-Chief-of-Police", + "evidence_url": "https://www.cityofnapa.org/472/Office-of-the-Chief-of-Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Sheriff | Napa County, CA", + "url": "https://www.napacounty.gov/1292/Sheriff", + "evidence_url": "https://www.napacounty.gov/1292/Sheriff", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [], + "pages_checked": 1, + "website_candidates": [ + { + "url": "http://www.cityofnapa.org", + "evidence_url": "https://www.wikidata.org/entity/Q60537" + } + ], + "status": "department-found", + "distance_from_link_km": 121.39, + "indexed_search_query": "\"Napa\" California police department official crime reports news alerts" + }, + { + "id": "162:0650398", + "geoid": "0650398", + "name": "National City", + "census_name": "National City city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 57807, + "population_year": 2025, + "lat": 32.665217, + "lon": -117.098784, + "checked_at": "2026-09-13T18:50:39.458907+00:00", + "domains": [ + { + "url": "https://nationalcityca.gov/", + "organization": "City of National City", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "newsroom", + "title": "Press Releases | National City, CA", + "url": "https://www.nationalcityca.gov/government/police/press-releases", + "evidence_url": "https://www.nationalcityca.gov/government/police/press-releases", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Directory | National City, CA", + "url": "https://www.nationalcityca.gov/government/police/directory", + "evidence_url": "https://www.nationalcityca.gov/government/police/directory", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police | National City, CA", + "url": "https://www.nationalcityca.gov/government/police", + "evidence_url": "https://www.nationalcityca.gov/government/police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/national-city-police-department/", + "title": "National City Police Department", + "evidence_url": "https://local.nixle.com/city/ca/national-city/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/national-city-police-department/", + "checked_at": "2026-09-13T19:19:30.595688+00:00", + "final_url": "https://local.nixle.com/national-city-police-department/", + "publisher": "National City Police Department", + "item_count": 20, + "newest_label": "Entered: 3 weeks ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [ + { + "url": "https://nationalcityca.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "http://www.nationalcityca.gov", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.nationalcityca.gov", + "evidence_url": "https://www.wikidata.org/entity/Q430316" + } + ], + "status": "channels-found", + "distance_from_link_km": 673.61, + "indexed_search_query": "\"National City\" California police department official crime reports news alerts" + }, + { + "id": "162:0651182", + "geoid": "0651182", + "name": "Newport Beach", + "census_name": "Newport Beach city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 81977, + "population_year": 2025, + "lat": 33.626595, + "lon": -117.865392, + "checked_at": "2026-09-13T18:50:34.761662+00:00", + "domains": [ + { + "url": "https://nbca.gov/", + "organization": "City of Newport Beach", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://newportbeachca.gov/", + "organization": "City of Newport Beach", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://newportbeach-ca.gov/", + "organization": "City of Newport Beach", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://newportbeachpolicehq.com/", + "evidence_url": "https://www.newportbeachca.gov/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "feed-candidate", + "url": "https://newportbeachpolicehq.com/feed/", + "evidence_url": "https://newportbeachpolicehq.com/", + "link_text": "Newport Beach \u00bb Feed", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "public-feed-with-items", + "validation": { + "url": "https://newportbeachpolicehq.com/feed/", + "checked_at": "2026-09-13T19:03:12.274555+00:00", + "final_url": "https://newportbeachpolicehq.com/feed/", + "publisher": "Newport Beach", + "item_count": 1, + "newest_label": "2026-06-29T18:08:49+00:00", + "access": "public-feed-with-items", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + } + }, + { + "kind": "feed-candidate", + "url": "https://newportbeachpolicehq.com/comments/feed/", + "evidence_url": "https://newportbeachpolicehq.com/", + "link_text": "Newport Beach \u00bb Comments Feed", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "public-feed-with-items", + "validation": { + "url": "https://newportbeachpolicehq.com/comments/feed/", + "checked_at": "2026-09-13T19:03:12.379602+00:00", + "final_url": "https://newportbeachpolicehq.com/comments/feed/", + "publisher": "\n\tComments for Newport Beach\t", + "item_count": 1, + "newest_label": "2026-06-29T18:08:49+00:00", + "access": "public-feed-with-items", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + } + }, + { + "kind": "department-page", + "url": "https://newportbeachpolicehq.com/wp-content/plugins/elementor/assets/css/widget-social-icons.min.css?ver=4.1.5", + "evidence_url": "https://newportbeachpolicehq.com/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://www.nbpd.org/what-s-new/press-releases", + "evidence_url": "https://www.nbpd.org/what-s-new/press-releases", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://nbca.gov/", + "error": "robots unavailable" + }, + { + "url": "https://newportbeachca.gov/", + "error": "HTTP Error 403: Forbidden" + }, + { + "url": "https://newportbeach-ca.gov/", + "error": "robots unavailable" + }, + { + "url": "https://www.newportbeachca.gov/government/departments/police", + "error": "HTTP Error 404: Not Found" + } + ], + "pages_checked": 7, + "website_candidates": [ + { + "url": "https://www.newportbeachca.gov/", + "evidence_url": "https://www.wikidata.org/entity/Q268873" + } + ], + "status": "channels-found", + "distance_from_link_km": 545.96 + }, + { + "id": "162:0652526", + "geoid": "0652526", + "name": "Norwalk", + "census_name": "Norwalk city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 97104, + "population_year": 2025, + "lat": 33.9076, + "lon": -118.083453, + "checked_at": "2026-09-13T18:50:31.058712+00:00", + "domains": [ + { + "url": "https://norwalkca.gov/", + "organization": "City of Norwalk", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Police Department | Norwalk, CT - Official Website", + "url": "https://www.norwalkct.gov/139/Police-Department", + "evidence_url": "https://www.norwalkct.gov/139/Police-Department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "Police", + "url": "https://source.www.longbeach.gov/press-release-archive/?cid=6697", + "evidence_url": "https://source.www.longbeach.gov/press-release-archive/?cid=6697", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "Police", + "url": "https://longbeach.gov/press-release-archive/?cid=6697", + "evidence_url": "https://longbeach.gov/press-release-archive/?cid=6697", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://norwalkca.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "http://www.norwalk.org", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.norwalk.org", + "evidence_url": "https://www.wikidata.org/entity/Q494715" + } + ], + "status": "channels-found", + "distance_from_link_km": 509.23, + "indexed_search_query": "\"Norwalk\" California police department official crime reports news alerts" + }, + { + "id": "162:0652582", + "geoid": "0652582", + "name": "Novato", + "census_name": "Novato city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 51947, + "population_year": 2025, + "lat": 38.085087, + "lon": -122.548272, + "checked_at": "2026-09-13T18:50:20.104795+00:00", + "domains": [ + { + "url": "https://novato.gov/", + "organization": "City of Novato", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://novatopolice.gov/", + "organization": "City of Novato", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://novatoseniors.gov/", + "organization": "City of Novato", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Novato Police Department | City of Novato, CA", + "url": "https://www.novato.gov/government/police-department", + "evidence_url": "https://www.novato.gov/government/police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Novato Police Department | City of Novato, CA", + "url": "https://www.novato.gov/government/police-department?locale=es", + "evidence_url": "https://www.novato.gov/government/police-department?locale=es", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Map | City of Novato, CA", + "url": "https://www.novato.gov/government/police-department/crime-map", + "evidence_url": "https://www.novato.gov/government/police-department/crime-map", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/novato-police-ca/", + "title": "Novato Police, CA", + "evidence_url": "https://local.nixle.com/city/ca/novato/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/novato-police-ca/", + "checked_at": "2026-09-13T19:19:31.345058+00:00", + "final_url": "https://local.nixle.com/novato-police-ca/", + "publisher": "Novato Police, CA", + "item_count": 20, + "newest_label": "Entered: 5 days, 1 hour ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [ + { + "url": "https://novato.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://novatopolice.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://novatoseniors.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "http://www.ci.novato.ca.us", + "error": "robots unavailable" + } + ], + "pages_checked": 4, + "website_candidates": [ + { + "url": "http://www.ci.novato.ca.us", + "evidence_url": "https://www.wikidata.org/entity/Q851004" + } + ], + "status": "channels-found", + "distance_from_link_km": 107.7, + "indexed_search_query": "\"Novato\" California police department official crime reports news alerts" + }, + { + "id": "162:0653000", + "geoid": "0653000", + "name": "Oakland", + "census_name": "Oakland city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 440838, + "population_year": 2025, + "lat": 37.769846, + "lon": -122.22569, + "checked_at": "2026-09-13T18:46:34.576834+00:00", + "domains": [ + { + "url": "https://oaklandca.gov/", + "organization": "City of Oakland", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.oaklandca.gov/Public-Safety-Streets", + "evidence_url": "https://www.oaklandca.gov/Home", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "incident-log", + "url": "https://www.oaklandca.gov/Public-Safety-Streets/Report-a-Crime/Report-a-Crime-in-Person-or-Phone", + "evidence_url": "https://www.oaklandca.gov/Public-Safety-Streets", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.oaklandca.gov/Public-Safety-Streets/Parking-Vehicles/Sign-Up-for-Parking-Alerts", + "evidence_url": "https://www.oaklandca.gov/Public-Safety-Streets", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.oaklandca.gov/Government/Departments/Newsroom", + "evidence_url": "https://www.oaklandca.gov/Public-Safety-Streets", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.oaklandca.gov/Government/News-Updates", + "evidence_url": "https://www.oaklandca.gov/Public-Safety-Streets", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://www.oaklandca.gov/Government/News-Updates/News", + "evidence_url": "https://www.oaklandca.gov/Government/News-Updates", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.oaklandca.gov/Public-Safety-Streets/Crime-Prevention", + "evidence_url": "https://www.oaklandca.gov/Public-Safety-Streets", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.oaklandca.gov/Public-Safety-Streets/Crime-Prevention/Missing-Persons", + "evidence_url": "https://www.oaklandca.gov/Public-Safety-Streets/Crime-Prevention", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.oaklandca.gov/Public-Safety-Streets/Fire", + "evidence_url": "https://www.oaklandca.gov/Home", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.oaklandca.gov/Public-Safety-Streets/Police", + "evidence_url": "https://www.oaklandca.gov/Home", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://member.everbridge.net/index/453003085612570", + "evidence_url": "https://www.oaklandca.gov/Public-Safety-Streets/Police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.oaklandca.gov/News-Releases/OPD-Tows-60-Abandoned-and-Stolen-Vehicles", + "evidence_url": "https://www.oaklandca.gov/Public-Safety-Streets/Police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.oaklandca.gov/News-Releases/Officer-Involved-Shooting-in-the-area-of-22nd-Ave.-and-East-28th-St", + "evidence_url": "https://www.oaklandca.gov/Public-Safety-Streets/Police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.oaklandca.gov/News-Releases/Missing-Person-Huitzilin-Nieves-Nieto-At-Risk-Due-to-Age/OPD-Internal-Audit-Uncovers-Alleged-Employee-Fraud", + "evidence_url": "https://www.oaklandca.gov/Public-Safety-Streets/Police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.oaklandca.gov/News-Releases/Missing-Person-Huitzilin-Nieves-Nieto-At-Risk-Due-to-Age/Missing-Person-Gheisimar-Marcano-Hernandez-At-Risk-Due-to-Age", + "evidence_url": "https://www.oaklandca.gov/Public-Safety-Streets/Police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.oaklandca.gov/News-Releases/Missing-Person-Huitzilin-Nieves-Nieto-At-Risk-Due-to-Age/OPD-Arrests-Suspect-in-Armed-Kidnapping", + "evidence_url": "https://www.oaklandca.gov/Public-Safety-Streets/Police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.oaklandca.gov/News-Releases?dlv_OC+CL+City+News+Listing=%28dd_OC+News+Categories%3DPolice%29", + "evidence_url": "https://www.oaklandca.gov/Public-Safety-Streets/Police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://www.oaklandca.gov/Public-Safety-Streets/Police/Police-Services-Priorities/OPD-Daily-Log", + "evidence_url": "https://www.oaklandca.gov/Public-Safety-Streets/Police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/oakland-police-department-ca/", + "title": "Oakland Police Department CA", + "evidence_url": "https://local.nixle.com/city/ca/oakland/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/oakland-police-department-ca/", + "checked_at": "2026-09-13T19:19:32.125369+00:00", + "final_url": "https://local.nixle.com/oakland-police-department-ca/", + "publisher": "Oakland Police Department CA", + "item_count": 20, + "newest_label": "Entered: 2 days, 20 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [], + "pages_checked": 7, + "status": "channels-found", + "distance_from_link_km": 63.63 + }, + { + "id": "162:0653322", + "geoid": "0653322", + "name": "Oceanside", + "census_name": "Oceanside city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 170483, + "population_year": 2025, + "lat": 33.224601, + "lon": -117.306291, + "checked_at": "2026-09-13T18:50:38.382424+00:00", + "domains": [], + "channels": [ + { + "kind": "newsroom", + "url": "https://www.oceansidepolice.com/about-opd/press-releases", + "evidence_url": "https://www.oceansidepolice.com/about-opd/press-releases", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://www.ci.oceanside.ca.us/", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 1, + "website_candidates": [ + { + "url": "https://www.ci.oceanside.ca.us/", + "evidence_url": "https://www.wikidata.org/entity/Q488924" + } + ], + "status": "channels-found", + "distance_from_link_km": 613.85, + "indexed_search_query": "\"Oceanside\" California police department official crime reports news alerts" + }, + { + "id": "162:0653896", + "geoid": "0653896", + "name": "Ontario", + "census_name": "Ontario city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 187013, + "population_year": 2025, + "lat": 34.037042, + "lon": -117.605956, + "checked_at": "2026-09-13T18:50:32.604476+00:00", + "domains": [ + { + "url": "https://ontarioca.gov/", + "organization": "City of Ontario", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Contact Us | City of Ontario, California", + "url": "https://www.ontarioca.gov/government/police/about-us/contact-us", + "evidence_url": "https://www.ontarioca.gov/government/police/about-us/contact-us", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police | City of Ontario, California", + "url": "https://www.ontarioca.gov/government/police", + "evidence_url": "https://www.ontarioca.gov/government/police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Online Police Reporting | City of Ontario, California", + "url": "https://www.ontarioca.gov/government/police/online-police-reporting", + "evidence_url": "https://www.ontarioca.gov/government/police/online-police-reporting", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://ontarioca.gov/", + "error": "HTTP Error 404: Not Found" + } + ], + "pages_checked": 1, + "website_candidates": [], + "status": "department-found", + "distance_from_link_km": 529.7, + "indexed_search_query": "\"Ontario\" California police department official crime reports news alerts" + }, + { + "id": "162:0653980", + "geoid": "0653980", + "name": "Orange", + "census_name": "Orange city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 138365, + "population_year": 2025, + "lat": 33.786971, + "lon": -117.861265, + "checked_at": "2026-09-13T18:50:33.243621+00:00", + "domains": [ + { + "url": "https://orangeca.gov/", + "organization": "City of Orange", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Public Information | City of Orange, CA", + "url": "https://www.cityoforange.org/our-city/departments/police/public-information", + "evidence_url": "https://www.cityoforange.org/our-city/departments/police/public-information", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Records Bureau | City of Orange, CA", + "url": "https://www.cityoforange.org/our-city/departments/police/records-bureau", + "evidence_url": "https://www.cityoforange.org/our-city/departments/police/records-bureau", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "File an Online Police Report | City of Orange, CA", + "url": "https://www.cityoforange.org/our-city/departments/police/file-an-online-police-report", + "evidence_url": "https://www.cityoforange.org/our-city/departments/police/file-an-online-police-report", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://orangeca.gov/", + "error": "robots unavailable" + }, + { + "url": "https://www.cityoforange.org", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://www.cityoforange.org", + "evidence_url": "https://www.wikidata.org/entity/Q491350" + } + ], + "status": "department-found", + "distance_from_link_km": 532.97, + "indexed_search_query": "\"Orange\" California police department official crime reports news alerts" + }, + { + "id": "162:0654652", + "geoid": "0654652", + "name": "Oxnard", + "census_name": "Oxnard city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 199651, + "population_year": 2025, + "lat": 34.199436, + "lon": -119.207515, + "checked_at": "2026-09-13T18:50:27.658978+00:00", + "domains": [], + "channels": [ + { + "kind": "newsroom", + "title": "Police Department News | City of Oxnard", + "url": "https://www.oxnard.gov/police-department/pd-news", + "evidence_url": "https://www.oxnard.gov/police-department/pd-news", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Department | City of Oxnard", + "url": "https://www.oxnard.gov/police-department", + "evidence_url": "https://www.oxnard.gov/police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://oxnard.gov", + "error": "HTTP Error 403: Forbidden" + } + ], + "pages_checked": 1, + "website_candidates": [ + { + "url": "https://oxnard.gov", + "evidence_url": "https://www.wikidata.org/entity/Q209338" + } + ], + "status": "channels-found", + "distance_from_link_km": 418.93, + "indexed_search_query": "\"Oxnard\" California police department official crime reports news alerts" + }, + { + "id": "162:0655184", + "geoid": "0655184", + "name": "Palm Desert", + "census_name": "Palm Desert city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 53259, + "population_year": 2025, + "lat": 33.737635, + "lon": -116.364145, + "checked_at": "2026-09-13T18:50:38.756179+00:00", + "domains": [ + { + "url": "https://palmdesert.gov/", + "organization": "City of Palm Desert", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Public Safety | City of Palm Desert", + "url": "https://www.palmdesert.gov/community/public-safety", + "evidence_url": "https://www.palmdesert.gov/community/public-safety", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://palmdesert.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://www.palmdesert.gov/", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://www.palmdesert.gov/", + "evidence_url": "https://www.wikidata.org/entity/Q399976" + } + ], + "status": "department-found", + "distance_from_link_km": 637.8, + "indexed_search_query": "\"Palm Desert\" California police department official crime reports news alerts" + }, + { + "id": "162:0655156", + "geoid": "0655156", + "name": "Palmdale", + "census_name": "Palmdale city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 161845, + "population_year": 2025, + "lat": 34.591038, + "lon": -118.105403, + "checked_at": "2026-09-13T18:50:28.093400+00:00", + "domains": [ + { + "url": "https://cityofpalmdaleca.gov/", + "organization": "City of Palmdale", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "newsroom", + "title": "Proactively Safe: Palmdale\u2019s Robust Public Safety Initiatives Yield Results", + "url": "https://www.cityofpalmdaleca.gov/m/newsflash/home/detail/1859", + "evidence_url": "https://www.cityofpalmdaleca.gov/m/newsflash/home/detail/1859", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Los Angeles Police Department", + "url": "https://file.lacounty.gov/lasd/cms1_154628.pdf", + "evidence_url": "https://file.lacounty.gov/lasd/cms1_154628.pdf", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.cityofpalmdale.org", + "evidence_url": "https://www.wikidata.org/entity/Q488940" + } + ], + "status": "channels-found", + "distance_from_link_km": 454.23, + "indexed_search_query": "\"Palmdale\" California police department official crime reports news alerts" + }, + { + "id": "162:0655282", + "geoid": "0655282", + "name": "Palo Alto", + "census_name": "Palo Alto city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 67609, + "population_year": 2025, + "lat": 37.39652, + "lon": -122.143088, + "checked_at": "2026-09-13T18:46:34.375164+00:00", + "domains": [ + { + "url": "https://paloalto.gov/", + "organization": "City of Palo Alto", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections", + "evidence_url": "curated department URL", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://www.paloalto.gov/City-Hall/News-Press-Releases", + "evidence_url": "https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.paloalto.gov/I-Want-To/Sign-up-for-Emergency-Alerts", + "evidence_url": "https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.paloalto.gov/Departments/Police/Public-Information-Portal/News-Releases", + "evidence_url": "https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://emergencymanagement.sccgov.org/AlertSCC", + "evidence_url": "https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "x", + "url": "https://x.com/paloaltopolice", + "evidence_url": "https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/palo-alto-police-department/", + "evidence_url": "https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections", + "verification": "linked-from-official-page", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/palo-alto-police-department/", + "checked_at": "2026-09-13T19:03:12.637970+00:00", + "final_url": "https://local.nixle.com/palo-alto-police-department/", + "publisher": "Palo Alto Police Department", + "item_count": 20, + "newest_label": "Entered: 1 week, 4 days ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/paloaltopolice/", + "evidence_url": "https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "youtube", + "url": "https://www.youtube.com/user/PaloAltoPolice", + "evidence_url": "https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.paloalto.gov/Departments/Fire/Fire-News", + "evidence_url": "https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "announcement", + "url": "https://www.paloalto.gov/News-Articles/Fire-Department/Celebrate-the-Fourth-Safely-Leave-Fireworks-to-the-Professionals", + "evidence_url": "https://www.paloalto.gov/Departments/Fire/Fire-News", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.paloalto.gov/News-Articles/Fire-Department/Regional-Partners-Advance-Vegetation-Reduction-at-Page-Mill-Road-Interstate-280-Interchange-Project", + "evidence_url": "https://www.paloalto.gov/Departments/Fire/Fire-News", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.paloalto.gov/News-Articles/Fire-Department/Fire-Preparedness-in-Palo-Alto-Safety-Tips-for-You-Your-Pets", + "evidence_url": "https://www.paloalto.gov/Departments/Fire/Fire-News", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.paloalto.gov/News-Articles/Fire-Department/Leave-the-Fireworks-to-the-Pros", + "evidence_url": "https://www.paloalto.gov/Departments/Fire/Fire-News", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.paloalto.gov/News-Articles/Fire-Department/Palo-Alto-Fire-Department-Staffing-at-Fire-Station-4-Community-Update", + "evidence_url": "https://www.paloalto.gov/Departments/Fire/Fire-News", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.paloalto.gov/News-Articles/Fire-Department/Fire-Prevention-Week-Safety-Reminders", + "evidence_url": "https://www.paloalto.gov/Departments/Fire/Fire-News", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.paloalto.gov/News-Articles/Fire-Department/Palo-Alto-Fire-Department-Launches-Low-Cost-Ambulance-Program", + "evidence_url": "https://www.paloalto.gov/Departments/Fire/Fire-News", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.paloalto.gov/News-Articles/Fire-Department/Flags-Flown-at-Half-Staff-in-Honor-of-Stockton-Fire-Captain", + "evidence_url": "https://www.paloalto.gov/Departments/Fire/Fire-News", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.paloalto.gov/News-Articles/Fire-Department/Rebuilt-Fire-Station-3-Opens-its-Doors-to-Serve-the-Community", + "evidence_url": "https://www.paloalto.gov/Departments/Fire/Fire-News", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.paloalto.gov/News-Articles/Fire-Department/Fire-Station-3-Open-House-Postponed", + "evidence_url": "https://www.paloalto.gov/Departments/Fire/Fire-News", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.paloalto.gov/News-Articles", + "evidence_url": "https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.paloalto.gov/Departments/City-Manager/Latest-News/Hazardous-Materials-Incident-Response-Notifications", + "evidence_url": "https://www.paloalto.gov/News-Articles", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.paloalto.gov/News-Articles/City-Manager/Flags-Flown-at-Half-Staff-September-11", + "evidence_url": "https://www.paloalto.gov/News-Articles", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.paloalto.gov/News-Articles/City-Manager/City-Resolves-Public-Safety-Building-Construction-Dispute-and-Implements-New-Construction-Practices", + "evidence_url": "https://www.paloalto.gov/News-Articles", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.paloalto.gov/News-Articles/City-Manager/Palo-Alto-Horizontal-Levee-Completion-Celebrated", + "evidence_url": "https://www.paloalto.gov/News-Articles", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.paloalto.gov/News-Articles/City-Manager/Weekly-City-Manager-Updates-September-9-2026", + "evidence_url": "https://www.paloalto.gov/News-Articles", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.paloalto.gov/News-Articles/City-Manager/Hot-Weather-Safety-September-2026", + "evidence_url": "https://www.paloalto.gov/News-Articles", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.paloalto.gov/News-Articles/Public-Works/Sustaining-Our-Future-Blog-News", + "evidence_url": "https://www.paloalto.gov/News-Articles", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.paloalto.gov/Departments/City-Manager/Latest-News", + "evidence_url": "https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "announcement", + "url": "https://www.paloalto.gov/News-Articles/City-Manager/Weekly-City-Manager-Updates-August-24-2026", + "evidence_url": "https://www.paloalto.gov/Departments/City-Manager/Latest-News", + "verification": "linked-from-official-page", + "access": "not-tested" + } + ], + "errors": [], + "pages_checked": 7, + "status": "channels-found", + "distance_from_link_km": 24.57 + }, + { + "id": "162:0655618", + "geoid": "0655618", + "name": "Paramount", + "census_name": "Paramount city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 50755, + "population_year": 2025, + "lat": 33.898883, + "lon": -118.166629, + "checked_at": "2026-09-13T18:50:30.421958+00:00", + "domains": [ + { + "url": "https://paramountcity.gov/", + "organization": "City of Paramount", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Public Safety Department - City of Paramount", + "url": "https://www.paramountcity.gov/government/departments/public-safety/", + "evidence_url": "https://www.paramountcity.gov/government/departments/public-safety/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "TRAFFIC FATALITY - PARAMOUNT BOULEVARD AND 56TH STREET", + "url": "https://longbeach.gov/police/press-releases/traffic-fatality---paramount-boulevard-and-56th-street/", + "evidence_url": "https://longbeach.gov/police/press-releases/traffic-fatality---paramount-boulevard-and-56th-street/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "incident-log", + "title": "LBPD Blotter - June 19, 2026", + "url": "https://www.longbeach.gov/police/news/lbpd-blotter-june-19-2026/", + "evidence_url": "https://www.longbeach.gov/police/news/lbpd-blotter-june-19-2026/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://paramountcity.gov/", + "error": "robots unavailable" + }, + { + "url": "http://www.paramountcity.com", + "error": "robots unavailable" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.paramountcity.com", + "evidence_url": "https://www.wikidata.org/entity/Q927134" + } + ], + "status": "channels-found", + "distance_from_link_km": 504.83, + "indexed_search_query": "\"Paramount\" California police department official crime reports news alerts" + }, + { + "id": "162:0656000", + "geoid": "0656000", + "name": "Pasadena", + "census_name": "Pasadena city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 135804, + "population_year": 2025, + "lat": 34.160602, + "lon": -118.137954, + "checked_at": "2026-09-13T18:46:44.225085+00:00", + "domains": [ + { + "url": "https://pasadena.gov/", + "organization": "City of Pasadena", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://pasadenapublichealth.gov/", + "organization": "Pasadena Department of Public Health", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.cityofpasadena.net/police/", + "evidence_url": "https://www.cityofpasadena.net/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "feed-candidate", + "url": "https://www.cityofpasadena.net/police/feed/", + "evidence_url": "https://www.cityofpasadena.net/police/", + "verification": "linked-from-official-page", + "access": "public-feed-with-items", + "validation": { + "url": "https://www.cityofpasadena.net/police/feed/", + "checked_at": "2026-09-13T19:03:12.743735+00:00", + "final_url": "https://www.cityofpasadena.net/police/feed/", + "publisher": "Police Department", + "item_count": 10, + "newest_label": "2026-09-11T18:59:07+00:00", + "access": "public-feed-with-items", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + } + }, + { + "kind": "x", + "url": "https://x.com/pasadenapd", + "evidence_url": "https://www.cityofpasadena.net/police/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/PasadenaPD/", + "evidence_url": "https://www.cityofpasadena.net/police/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "youtube", + "url": "https://www.youtube.com/user/PasadenaPoliceDept", + "evidence_url": "https://www.cityofpasadena.net/police/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://www.cityofpasadena.net/police/crime/report-a-crime/", + "evidence_url": "https://www.cityofpasadena.net/police/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.cityofpasadena.net/police/get-alerts-from-ppd/", + "evidence_url": "https://www.cityofpasadena.net/police/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alert-directory", + "url": "https://local.nixle.com/city/ca/pasadena/", + "evidence_url": "https://www.cityofpasadena.net/police/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-SCU-Gun-Recovery.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2024-88313-PC-187.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/take-back-Rx-PRESS-RELEASE2-10-26-24.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.cityofpasadena.net/police/news/", + "evidence_url": "https://www.cityofpasadena.net/police/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "feed-candidate", + "url": "https://www.cityofpasadena.net/police/news/feed/", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "public-feed-with-items", + "validation": { + "url": "https://www.cityofpasadena.net/police/news/feed/", + "checked_at": "2026-09-13T19:03:13.380550+00:00", + "final_url": "https://www.cityofpasadena.net/police/news/feed/", + "publisher": "News - Police Department", + "item_count": 10, + "newest_label": "2026-09-11T18:59:07+00:00", + "access": "public-feed-with-items", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + } + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2024-68370-SCU-Gang-Warrant.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2024-64074Suspicious-Death.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Notice-of-Public-Hearing-06-19-24.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2024-28813-Critical-Incident-Video-OIS.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Unidentified-Explosions-Arrest.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Fatal-Traffic-Crash-24-36862.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2024-21775-PC-664-187.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Sexual-Assault-24-28824.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2024-28813-OIS.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2024-18702-PC-187.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Kirk-Alexander-window-smasher-24-15197.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Assault-on-Elderly-Woman-24-11293.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Police-Imposter-Scam.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Statement-from-Pasadena-Police-Chief-Gene-Harris-1.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Copper-Wire-Theft-23-102949-12-20-23.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-96508-UPDATE-and-CHARGES-for-Homicide-at-a-Pasadena-Park.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-96508-Update-PC-187-November-20th.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-96508-PC-187.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-88584-PC-187.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-87126-Double-Fatality-Hit-Run-Traffic-Collision-UPDATE.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-87126-Double-Fatality-Hit-Run-Traffic-Accident.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-75108-PC-487a-Grand-Theft.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-75491-Shooting-PC-187-Arrest.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-59798-PC-187-Murder-Charges.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-70595-Shooting.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-69244-PC-187-DA-Filing.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-69244-PC-187.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-65028-PC-187-Update-8-10-23.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-65028-PC-187.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-59798-PC-187-UPDATE.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-59798-PC-187-002.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-52767-Shooting-Suicide.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-4th-of-July-amended-City-ordinance-safety-tips-060820-002.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-50644-Marc-Oliver-David-Arrest.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-49072-PC-664-187.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-21525-PC-311.11-PC-647j1-.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-16080-PC-288-Medina-warrant-arrest.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2023-16080-PC-288-Arrest-002.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA2022-90986-PC-187-Arrests.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Iran-Moreno-Update-PC-187-002.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-PA22-78849.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-20009694-Update.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-22-73519-PC-220-Arrest.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-22-73519-PC-220.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-22-67125-PC-187.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/22004706-PC-187-Update-8-1-22-Press-Release.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-22-63631-OIS.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-22-57009-PC-187.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-22004706-PC-187.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-21000007-5-4-2022.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-April-26-2022-Community-Reinvestment-Grant.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Blessings-Theft-Robberies-Arrest-Press-Release.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-21012303-Reward-Donation.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-21012496-November-26th-Fatal-Collision.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-21012303-10K-Reward.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-November-23-2021-OIS-210012414.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-21012303.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-DEA-National-Rx-Take-Back-Campaign.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/July-4th-PC-246-21007007.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/OTS-Summer-Mobilization-Press-Release.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-21007955.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-July-15-2021-Community-Reinvestment-grant-press-release-1-clickable.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Updated-Press-Release-Villa-Parke-Homicide-20012699-Composite.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Attempt-Murder-21001567-Updated.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Parke-St-Homicide-2nd-suspect-vehicle.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-New-Details-Re-Double-Homicide-20012699.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Updated-21002680-Homicide.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Updated-Roscoes-Armed-Robbery-210011778.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-21002680-Homicide.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Attempt-Murder-21001567.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-Roscoes-Armed-Robbery-210011778.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-20013708-Attempt-Murder.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.cityofpasadena.net/police/wp-content/uploads/sites/28/Press-Release-20013810-Suspect-Villamil-charged-for-murder.pdf", + "evidence_url": "https://www.cityofpasadena.net/police/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.cityofpasadena.net/event/public-safety-committee/", + "evidence_url": "https://www.cityofpasadena.net/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.cityofpasadena.net/social-media/", + "evidence_url": "https://www.cityofpasadena.net/event/public-safety-committee/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/pasadenapd/", + "evidence_url": "https://www.cityofpasadena.net/social-media/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "youtube", + "url": "http://www.youtube.com/PasadenaPoliceDept", + "evidence_url": "https://www.cityofpasadena.net/social-media/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.cityofpasadena.net/city-manager/pasadena-media/", + "evidence_url": "https://www.cityofpasadena.net/event/public-safety-committee/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.cityofpasadena.net/city-services/class-or-activity/", + "evidence_url": "https://www.cityofpasadena.net/event/public-safety-committee/", + "verification": "official-domain-or-referral", + "access": "public-html" + } + ], + "errors": [], + "pages_checked": 7, + "status": "channels-found", + "distance_from_link_km": 485.24 + }, + { + "id": "162:0656700", + "geoid": "0656700", + "name": "Perris", + "census_name": "Perris city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 83237, + "population_year": 2025, + "lat": 33.789849, + "lon": -117.222171, + "checked_at": "2026-09-13T18:50:37.547032+00:00", + "domains": [ + { + "url": "https://cityofperris.gov/", + "organization": "City of Perris", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Police | City of Perris, CA", + "url": "https://www.cityofperris.org/departments/public-safety/police", + "evidence_url": "https://www.cityofperris.org/departments/public-safety/police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Public Safety | City of Perris, CA", + "url": "https://www.cityofperris.org/departments/public-safety", + "evidence_url": "https://www.cityofperris.org/departments/public-safety", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://cityofperris.gov/", + "error": "robots unavailable" + }, + { + "url": "http://www.cityofperris.org", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.cityofperris.org", + "evidence_url": "https://www.wikidata.org/entity/Q983609" + } + ], + "status": "department-found", + "distance_from_link_km": 574.31, + "indexed_search_query": "\"Perris\" California police department official crime reports news alerts" + }, + { + "id": "162:0656784", + "geoid": "0656784", + "name": "Petaluma", + "census_name": "Petaluma city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 59688, + "population_year": 2025, + "lat": 38.242251, + "lon": -122.628769, + "checked_at": "2026-09-13T18:50:21.527374+00:00", + "domains": [ + { + "url": "https://cityofpetaluma.gov/", + "organization": "City of Petaluma", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "nextdoor", + "title": "Petaluma Police Department - 1435 updates", + "url": "https://nextdoor.com/agency-detail/ca/petaluma/petaluma-police-department/", + "evidence_url": "https://nextdoor.com/agency-detail/ca/petaluma/petaluma-police-department/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "nextdoor", + "title": "Petaluma Police Department - 1431 updates", + "url": "https://api.us.nextdoor.com/agency-detail/ca/petaluma/petaluma-police-department/", + "evidence_url": "https://api.us.nextdoor.com/agency-detail/ca/petaluma/petaluma-police-department/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/petaluma-police-department/", + "title": "Petaluma Police Department", + "evidence_url": "https://local.nixle.com/city/ca/petaluma/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/petaluma-police-department/", + "checked_at": "2026-09-13T19:19:33.043055+00:00", + "final_url": "https://local.nixle.com/petaluma-police-department/", + "publisher": "Petaluma Police Department", + "item_count": 20, + "newest_label": "Entered: 1 day, 22 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [ + { + "url": "https://cityofpetaluma.gov/", + "error": "robots unavailable" + }, + { + "url": "https://cityofpetaluma.org/", + "error": "HTTP Error 403: Forbidden" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://cityofpetaluma.org/", + "evidence_url": "https://www.wikidata.org/entity/Q720087" + } + ], + "status": "channels-found", + "distance_from_link_km": 126.38, + "indexed_search_query": "\"Petaluma\" California police department official crime reports news alerts" + }, + { + "id": "162:0656924", + "geoid": "0656924", + "name": "Pico Rivera", + "census_name": "Pico Rivera city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 58915, + "population_year": 2025, + "lat": 33.989524, + "lon": -118.089295, + "checked_at": "2026-09-13T18:50:30.285196+00:00", + "domains": [], + "channels": [ + { + "kind": "newsroom", + "title": "*UPDATE* LOCATED AT-RISK MISSING - MCGIFFERT", + "url": "https://origin.www.longbeach.gov/police/press-releases/at-risk-missing---mcgiffert/", + "evidence_url": "https://origin.www.longbeach.gov/police/press-releases/at-risk-missing---mcgiffert/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/lasd---pico-rivera-station-los-angeles-county-sheriff/", + "title": "LASD - Pico Rivera Station, Los Angeles County Sheriff", + "evidence_url": "https://local.nixle.com/city/ca/pico-rivera/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/lasd---pico-rivera-station-los-angeles-county-sheriff/", + "checked_at": "2026-09-13T19:19:33.756297+00:00", + "final_url": "https://local.nixle.com/lasd---pico-rivera-station-los-angeles-county-sheriff/", + "publisher": "LASD - Pico Rivera Station, Los Angeles County Sheriff", + "item_count": 20, + "newest_label": "Entered: 2 days, 16 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [ + { + "url": "http://www.ci.pico-rivera.ca.us", + "error": "robots unavailable" + } + ], + "pages_checked": 1, + "website_candidates": [ + { + "url": "http://www.ci.pico-rivera.ca.us", + "evidence_url": "https://www.wikidata.org/entity/Q828706" + } + ], + "status": "channels-found", + "distance_from_link_km": 502.14, + "indexed_search_query": "\"Pico Rivera\" California police department official crime reports news alerts" + }, + { + "id": "162:0657456", + "geoid": "0657456", + "name": "Pittsburg", + "census_name": "Pittsburg city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 77542, + "population_year": 2025, + "lat": 38.01769, + "lon": -121.900395, + "checked_at": "2026-09-13T18:50:19.682801+00:00", + "domains": [ + { + "url": "https://pittsburgca.gov/", + "organization": "CITY OF PITTSBURG", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "newsroom", + "title": "Contact Police / News & Events | City of Pittsburg", + "url": "https://www.pittsburgca.gov/services/police/contact-police-news-events", + "evidence_url": "https://www.pittsburgca.gov/services/police/contact-police-news-events", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Online Crime Reporting | City of Pittsburg", + "url": "https://www.pittsburgca.gov/services/police/online-crime-reporting", + "evidence_url": "https://www.pittsburgca.gov/services/police/online-crime-reporting", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Records Division | City of Pittsburg", + "url": "https://www.pittsburgca.gov/services/police/support-services-bureau/records-division", + "evidence_url": "https://www.pittsburgca.gov/services/police/support-services-bureau/records-division", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://pittsburgca.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://www.pittsburgca.gov/", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://www.pittsburgca.gov/", + "evidence_url": "https://www.wikidata.org/entity/Q281248" + } + ], + "status": "channels-found", + "distance_from_link_km": 86.17, + "indexed_search_query": "\"Pittsburg\" California police department official crime reports news alerts" + }, + { + "id": "162:0657526", + "geoid": "0657526", + "name": "Placentia", + "census_name": "Placentia city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 54911, + "population_year": 2025, + "lat": 33.881158, + "lon": -117.854783, + "checked_at": "2026-09-13T18:50:32.237269+00:00", + "domains": [], + "channels": [ + { + "kind": "department-page", + "url": "https://www.placentia.org/17/Police", + "evidence_url": "https://www.placentia.org/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.placentia.org/nixle", + "evidence_url": "https://www.placentia.org/17/Police", + "link_text": "Notifications & Alerts", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.placentia.org/list.aspx", + "evidence_url": "https://www.placentia.org/17/Police", + "link_text": "Notify Me", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "facebook", + "url": "http://www.facebook.com/placentiapd", + "evidence_url": "https://www.placentia.org/17/Police", + "link_text": "Visit our Facebook page", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/placentiapd", + "evidence_url": "https://www.placentia.org/17/Police", + "link_text": "Visit our Instagram page.", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.ocsheriff.gov/occrimestoppers", + "evidence_url": "https://www.placentia.org/17/Police", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "crime-map", + "url": "https://www.crimemapping.com/", + "evidence_url": "https://www.ocsheriff.gov/occrimestoppers", + "link_text": "https://www.crimemapping.com/ Sheriff's Blotter", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.placentia.org/592/Transparency", + "evidence_url": "https://www.placentia.org/17/Police", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.placentia.org/938/Critical-Incidents", + "evidence_url": "https://www.placentia.org/17/Police", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + } + ], + "errors": [], + "pages_checked": 5, + "website_candidates": [ + { + "url": "http://www.placentia.org", + "evidence_url": "https://www.wikidata.org/entity/Q864130" + } + ], + "status": "channels-found", + "distance_from_link_km": 525.73 + }, + { + "id": "162:0657792", + "geoid": "0657792", + "name": "Pleasanton", + "census_name": "Pleasanton city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 74556, + "population_year": 2025, + "lat": 37.667185, + "lon": -121.88123, + "checked_at": "2026-09-13T18:46:34.420517+00:00", + "domains": [ + { + "url": "https://pleasantonca.gov/", + "organization": "City of Pleasanton", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://cityofpleasantonca.gov/", + "organization": "City of Pleasanton", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.cityofpleasantonca.gov/our-government/police/", + "evidence_url": "https://www.cityofpleasantonca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.cityofpleasantonca.gov/our-government/mayor-city-council/council-agenda-notification/", + "evidence_url": "https://www.cityofpleasantonca.gov/our-government/police/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://www.cityofpleasantonca.gov/our-government/police/crime-mapping-blotter/", + "evidence_url": "https://www.cityofpleasantonca.gov/our-government/police/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/PleasantonPoliceCA", + "evidence_url": "https://www.cityofpleasantonca.gov/our-government/police/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "x", + "url": "https://x.com/pleasantonpd", + "evidence_url": "https://www.cityofpleasantonca.gov/our-government/police/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/pleasantonpd/", + "evidence_url": "https://www.cityofpleasantonca.gov/our-government/police/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alert-directory", + "url": "https://local.nixle.com/register/", + "evidence_url": "https://www.cityofpleasantonca.gov/our-government/police/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.cityofpleasantonca.gov/news/", + "evidence_url": "https://www.cityofpleasantonca.gov/our-government/police/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.cityofpleasantonca.gov/our-government/newsletter-signup/", + "evidence_url": "https://www.cityofpleasantonca.gov/our-government/police/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.cityofpleasantonca.gov/our-government/community-and-economic-development/planning-commission/", + "evidence_url": "https://www.cityofpleasantonca.gov/our-government/newsletter-signup/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.cityofpleasantonca.gov/our-government/police/contact-us/", + "evidence_url": "https://www.cityofpleasantonca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/pleasanton-police-department/", + "title": "Pleasanton Police Department", + "evidence_url": "https://local.nixle.com/city/ca/pleasanton/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/pleasanton-police-department/", + "checked_at": "2026-09-13T19:19:34.560058+00:00", + "final_url": "https://local.nixle.com/pleasanton-police-department/", + "publisher": "Pleasanton Police Department", + "item_count": 20, + "newest_label": "Entered: 22 hours, 3 minutes ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [ + { + "url": "https://pleasantonca.gov/", + "error": "robots unavailable" + } + ], + "pages_checked": 6, + "status": "channels-found", + "distance_from_link_km": 47.42 + }, + { + "id": "162:0658072", + "geoid": "0658072", + "name": "Pomona", + "census_name": "Pomona city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 147807, + "population_year": 2025, + "lat": 34.058494, + "lon": -117.761091, + "checked_at": "2026-09-13T18:50:31.312458+00:00", + "domains": [ + { + "url": "https://pomonaca.gov/", + "organization": "City of Pomona", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Police Department | City of Pomona, CA", + "url": "https://www.pomonaca.gov/government/departments/police-department?locale=en", + "evidence_url": "https://www.pomonaca.gov/government/departments/police-department?locale=en", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Department | City of Pomona, CA", + "url": "https://www.pomonaca.gov/government/departments/police-department?locale=en"=", + "evidence_url": "https://www.pomonaca.gov/government/departments/police-department?locale=en"=", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "City Of Pomona Police Department", + "url": "https://locator.lacounty.gov/lac/Location/3175457/city-of-pomona-police-department", + "evidence_url": "https://locator.lacounty.gov/lac/Location/3175457/city-of-pomona-police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://pomonaca.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "http://www.ci.pomona.ca.us/", + "error": "robots unavailable" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.ci.pomona.ca.us/", + "evidence_url": "https://www.wikidata.org/entity/Q486868" + } + ], + "status": "department-found", + "distance_from_link_km": 517.75, + "indexed_search_query": "\"Pomona\" California police department official crime reports news alerts" + }, + { + "id": "162:0658240", + "geoid": "0658240", + "name": "Porterville", + "census_name": "Porterville city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 63088, + "population_year": 2025, + "lat": 36.063542, + "lon": -119.0336, + "checked_at": "2026-09-13T18:50:26.073579+00:00", + "domains": [], + "channels": [ + { + "kind": "department-page", + "url": "https://www.ci.porterville.ca.us/departments/police/index.php", + "evidence_url": "https://www.ci.porterville.ca.us/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.ci.porterville.ca.us/departments/police/government/city_manager/iris_-_internet_resident_information_system.php", + "evidence_url": "https://www.ci.porterville.ca.us/departments/police/index.php", + "link_text": "Sign-up For Alerts", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "http://www.tularecounty.ca.gov/alerttc/", + "evidence_url": "https://www.ci.porterville.ca.us/departments/police/index.php", + "link_text": "Tulare County Alert Notification", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/portervillepd", + "evidence_url": "https://www.ci.porterville.ca.us/departments/police/index.php", + "link_text": "", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.ci.porterville.ca.us/departments/police/about_us.php", + "evidence_url": "https://www.ci.porterville.ca.us/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + } + ], + "errors": [ + { + "url": "https://www.ci.porterville.ca.us/departments/police/newslist.php", + "error": "HTTP Error 404: Not Found" + }, + { + "url": "https://www.ci.porterville.ca.us/departments/police/departments/police/report_a_crime.php", + "error": "HTTP Error 404: Not Found" + } + ], + "pages_checked": 6, + "website_candidates": [ + { + "url": "http://www.ci.porterville.ca.us", + "evidence_url": "https://www.wikidata.org/entity/Q927173" + } + ], + "status": "channels-found", + "distance_from_link_km": 290.77 + }, + { + "id": "162:0659444", + "geoid": "0659444", + "name": "Rancho Cordova", + "census_name": "Rancho Cordova city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 87554, + "population_year": 2025, + "lat": 38.577079, + "lon": -121.236187, + "checked_at": "2026-09-13T18:50:22.424298+00:00", + "domains": [ + { + "url": "https://cityofranchocordova.gov/", + "organization": "City of Rancho Cordova", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.ranchocordovapd.com/", + "evidence_url": "https://www.ranchocordovapd.com/", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://cityofranchocordova.gov/", + "error": "robots unavailable" + }, + { + "url": "https://www.cityofranchocordova.org/", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://www.cityofranchocordova.org/", + "evidence_url": "https://www.wikidata.org/entity/Q986928" + } + ], + "status": "department-found", + "distance_from_link_km": 160.72, + "indexed_search_query": "\"Rancho Cordova\" California police department official crime reports news alerts" + }, + { + "id": "162:0659451", + "geoid": "0659451", + "name": "Rancho Cucamonga", + "census_name": "Rancho Cucamonga city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 177856, + "population_year": 2025, + "lat": 34.130306, + "lon": -117.566067, + "checked_at": "2026-09-13T18:50:32.064041+00:00", + "domains": [ + { + "url": "https://ranchocucamonga.gov/", + "organization": "City of Rancho Cucamonga", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.cityofrc.us/public-safety", + "evidence_url": "https://www.cityofrc.us/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.cityofrc.us/RCPD", + "evidence_url": "https://www.cityofrc.us/public-safety", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/RanchoPD/", + "evidence_url": "https://www.cityofrc.us/RCPD", + "link_text": "https://www.facebook.com/RanchoPD/", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "x", + "url": "https://x.com/ranchopd", + "evidence_url": "https://www.cityofrc.us/RCPD", + "link_text": "https://twitter.com/RanchoPD", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.cityofrc.us/public-safety/police/pay-citation", + "evidence_url": "https://www.cityofrc.us/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/sbsd---rancho-cucamonga-police-department/", + "title": "SBSD - Rancho Cucamonga Police Department", + "evidence_url": "https://local.nixle.com/city/ca/rancho-cucamonga/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/sbsd---rancho-cucamonga-police-department/", + "checked_at": "2026-09-13T19:19:35.321167+00:00", + "final_url": "https://local.nixle.com/sbsd---rancho-cucamonga-police-department/", + "publisher": "SBSD - Rancho Cucamonga Police Department", + "item_count": 20, + "newest_label": "Entered: 3 days, 4 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [ + { + "url": "https://ranchocucamonga.gov/", + "error": "robots unavailable" + } + ], + "pages_checked": 5, + "website_candidates": [ + { + "url": "http://www.CityofRC.us", + "evidence_url": "https://www.wikidata.org/entity/Q495365" + } + ], + "status": "channels-found", + "distance_from_link_km": 525.31 + }, + { + "id": "162:0659920", + "geoid": "0659920", + "name": "Redding", + "census_name": "Redding city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 94092, + "population_year": 2025, + "lat": 40.570277, + "lon": -122.366766, + "checked_at": "2026-09-13T18:50:27.541844+00:00", + "domains": [ + { + "url": "https://cityofredding.gov/", + "organization": "City of Redding", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Police Department", + "url": "https://files.cityofredding.gov/government/departments/police/index.php", + "evidence_url": "https://files.cityofredding.gov/government/departments/police/index.php", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Redding Police Department", + "url": "https://files.cityofredding.gov/Document%20Center/Departments/Police/Policies%20%26%20Reference%20Library/Policy%20Manual/General%20Operations/316_Public_Alerts.pdf", + "evidence_url": "https://files.cityofredding.gov/Document%20Center/Departments/Police/Policies%20%26%20Reference%20Library/Policy%20Manual/General%20Operations/316_Public_Alerts.pdf", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Statistics", + "url": "https://files.cityofredding.gov/government/departments/police/crime_info/crime_statistics.php", + "evidence_url": "https://files.cityofredding.gov/government/departments/police/crime_info/crime_statistics.php", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://cityofredding.gov/", + "error": "robots disallows discovery" + }, + { + "url": "https://www.cityofredding.org/", + "error": "robots disallows discovery" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://www.cityofredding.org/", + "evidence_url": "https://www.wikidata.org/entity/Q495361" + } + ], + "status": "department-found", + "distance_from_link_km": 371.73, + "indexed_search_query": "\"Redding\" California police department official crime reports news alerts" + }, + { + "id": "162:0659962", + "geoid": "0659962", + "name": "Redlands", + "census_name": "Redlands city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 74128, + "population_year": 2025, + "lat": 34.053506, + "lon": -117.170476, + "checked_at": "2026-09-13T18:46:56.913447+00:00", + "domains": [ + { + "url": "https://redlandspd.gov/", + "organization": "Redlands Police Department", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://redlands.gov/", + "organization": "City of Redlands", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.redlands.gov/police-appointments/", + "evidence_url": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "feed-candidate", + "url": "https://www.redlands.gov/police-appointments/feed/", + "evidence_url": "https://www.redlands.gov/police-appointments/", + "verification": "linked-from-official-page", + "access": "empty-public-feed", + "validation": { + "url": "https://www.redlands.gov/police-appointments/feed/", + "checked_at": "2026-09-13T19:03:13.404332+00:00", + "final_url": "https://www.redlands.gov/police-appointments/feed/", + "publisher": "\n\tComments on: Police Appointments\t", + "item_count": 0, + "newest_label": null, + "access": "empty-public-feed", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + } + }, + { + "kind": "alerts", + "url": "https://www.redlands.gov/drone-notification/", + "evidence_url": "https://www.redlands.gov/police-appointments/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.redlands.gov/newsroom/", + "evidence_url": "https://www.redlands.gov/police-appointments/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.redlands.gov/news-events/", + "evidence_url": "https://www.redlands.gov/police-appointments/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://www.redlands.gov/news-events/newsroom/", + "evidence_url": "https://www.redlands.gov/news-events/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.redlands.gov/social-media/", + "evidence_url": "https://www.redlands.gov/police-appointments/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.redlands.gov/public-safety/", + "evidence_url": "https://www.redlands.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "feed-candidate", + "url": "https://www.redlands.gov/public-safety/feed/", + "evidence_url": "https://www.redlands.gov/public-safety/", + "verification": "linked-from-official-page", + "access": "empty-public-feed", + "validation": { + "url": "https://www.redlands.gov/public-safety/feed/", + "checked_at": "2026-09-13T19:03:14.003346+00:00", + "final_url": "https://www.redlands.gov/public-safety/feed/", + "publisher": "\n\tComments on: Public Safety\t", + "item_count": 0, + "newest_label": null, + "access": "empty-public-feed", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + } + }, + { + "kind": "department-page", + "url": "https://www.redlands.gov/make-appointment/", + "evidence_url": "https://www.redlands.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + } + ], + "errors": [], + "pages_checked": 7, + "status": "channels-found", + "distance_from_link_km": 558.21 + }, + { + "id": "162:0660018", + "geoid": "0660018", + "name": "Redondo Beach", + "census_name": "Redondo Beach city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 67281, + "population_year": 2025, + "lat": 33.849538, + "lon": -118.400755, + "checked_at": "2026-09-13T18:50:29.135228+00:00", + "domains": [ + { + "url": "https://redondo.gov/", + "organization": "City of Redondo Beach", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Redondo Beach Police Department", + "url": "https://www.redondo.org/Police%20Pictures/PD%20PDF/Transparency/RBPD%20Policy%20Manual%20September%202024.pdf", + "evidence_url": "https://www.redondo.org/Police%20Pictures/PD%20PDF/Transparency/RBPD%20Policy%20Manual%20September%202024.pdf", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "City Of Redondo Beach Police Department", + "url": "https://locator.lacounty.gov/lac/Location/3068962/city-of-redondo-beach-police-department", + "evidence_url": "https://locator.lacounty.gov/lac/Location/3068962/city-of-redondo-beach-police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://redondo.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://www.redondo.org", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://www.redondo.org", + "evidence_url": "https://www.wikidata.org/entity/Q840678" + } + ], + "status": "department-found", + "distance_from_link_km": 495.0, + "indexed_search_query": "\"Redondo Beach\" California police department official crime reports news alerts" + }, + { + "id": "162:0660102", + "geoid": "0660102", + "name": "Redwood City", + "census_name": "Redwood City city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 82178, + "population_year": 2025, + "lat": 37.515274, + "lon": -122.213672, + "checked_at": "2026-09-13T18:50:19.189162+00:00", + "domains": [ + { + "url": "https://redwoodcity.gov/", + "organization": "City of Redwood City", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Redwood City Police Department | City of Redwood City", + "url": "https://www.redwoodcity.org/departments/police-department", + "evidence_url": "https://www.redwoodcity.org/departments/police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Welcome to the Redwood City Police Department | City of Redwood City", + "url": "https://www.redwoodcity.org/departments/police-department/about-us/community-policing", + "evidence_url": "https://www.redwoodcity.org/departments/police-department/about-us/community-policing", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Connect With Us | City of Redwood City", + "url": "https://www.redwoodcity.org/departments/police-department/connect-with-us", + "evidence_url": "https://www.redwoodcity.org/departments/police-department/connect-with-us", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/redwood-city-police-department/", + "title": "Redwood City Police Department", + "evidence_url": "https://local.nixle.com/city/ca/redwood-city/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/redwood-city-police-department/", + "checked_at": "2026-09-13T19:19:36.030761+00:00", + "final_url": "https://local.nixle.com/redwood-city-police-department/", + "publisher": "Redwood City Police Department", + "item_count": 20, + "newest_label": "Entered: 1 week, 1 day ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [ + { + "url": "https://redwoodcity.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://www.redwoodcity.org/", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://www.redwoodcity.org/", + "evidence_url": "https://www.wikidata.org/entity/Q505549" + } + ], + "status": "channels-found", + "distance_from_link_km": 38.56, + "indexed_search_query": "\"Redwood City\" California police department official crime reports news alerts" + }, + { + "id": "162:0660466", + "geoid": "0660466", + "name": "Rialto", + "census_name": "Rialto city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 106554, + "population_year": 2025, + "lat": 34.117427, + "lon": -117.389211, + "checked_at": "2026-09-13T18:50:33.484795+00:00", + "domains": [ + { + "url": "https://rialtopolice.gov/", + "organization": "Rialto Police Department", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://rialtoca.gov/", + "organization": "City of Rialto", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Staff Directory \u2022 Police Department", + "url": "https://www.rialtoca.gov/m/directory/department?did=53", + "evidence_url": "https://www.rialtoca.gov/m/directory/department?did=53", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://rialtopolice.gov/", + "error": "robots unavailable" + } + ], + "pages_checked": 3, + "website_candidates": [ + { + "url": "http://www.rialtoca.gov", + "evidence_url": "https://www.wikidata.org/entity/Q289661" + } + ], + "status": "department-found", + "distance_from_link_km": 538.37, + "indexed_search_query": "\"Rialto\" California police department official crime reports news alerts" + }, + { + "id": "162:0660620", + "geoid": "0660620", + "name": "Richmond", + "census_name": "Richmond city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 114861, + "population_year": 2025, + "lat": 37.952278, + "lon": -122.360609, + "checked_at": "2026-09-13T18:46:35.601214+00:00", + "domains": [ + { + "url": "https://richmondca.gov/", + "organization": "City of Richmond", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.richmondca.gov/82/Police-Department", + "evidence_url": "https://www.richmondca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.richmondca.gov/AlertCenter.aspx", + "evidence_url": "https://www.richmondca.gov/82/Police-Department", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.richmondca.gov/m/NewsFlash/home/detail/2473", + "evidence_url": "https://www.richmondca.gov/82/Police-Department", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/richmondpolicecali/", + "evidence_url": "https://www.richmondca.gov/82/Police-Department", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.richmondca.gov/4720/News-and-Press-Releases", + "evidence_url": "https://www.richmondca.gov/82/Police-Department", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.richmondca.gov/4693/Press-Releases", + "evidence_url": "https://www.richmondca.gov/82/Police-Department", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.richmondca.gov/4689/Crime-Data", + "evidence_url": "https://www.richmondca.gov/82/Police-Department", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.richmondca.gov/4582/KCRT-Media", + "evidence_url": "https://www.richmondca.gov/82/Police-Department", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.richmondca.gov/CivicAlerts.aspx?AID=2373", + "evidence_url": "https://www.richmondca.gov/4582/KCRT-Media", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.richmondca.gov/CivicAlerts.aspx?AID=2203", + "evidence_url": "https://www.richmondca.gov/4582/KCRT-Media", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.richmondca.gov/CivicAlerts.aspx?CID=35", + "evidence_url": "https://www.richmondca.gov/4582/KCRT-Media", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.richmondca.gov/List.aspx", + "evidence_url": "https://www.richmondca.gov/AlertCenter.aspx", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.richmondca.gov/AlertCenter.aspx?AID=Phishing-Scam-Alert-Emails-Impersonating-29", + "evidence_url": "https://www.richmondca.gov/AlertCenter.aspx", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.richmondca.gov/AlertCenter.aspx?AID=Coronavirus-Information-2", + "evidence_url": "https://www.richmondca.gov/AlertCenter.aspx", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.richmondca.gov/list.aspx?Mode=Subscribe", + "evidence_url": "https://www.richmondca.gov/AlertCenter.aspx", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.richmondca.gov/AlertCenter.aspx?CID=Public-Alerts-2", + "evidence_url": "https://www.richmondca.gov/AlertCenter.aspx", + "verification": "linked-from-official-page", + "access": "not-tested" + } + ], + "errors": [], + "pages_checked": 5, + "status": "channels-found", + "distance_from_link_km": 86.99 + }, + { + "id": "162:0662000", + "geoid": "0662000", + "name": "Riverside", + "census_name": "Riverside city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 323057, + "population_year": 2025, + "lat": 33.938143, + "lon": -117.393168, + "checked_at": "2026-09-13T18:50:35.575937+00:00", + "domains": [], + "channels": [ + { + "kind": "department-page", + "title": "Home | Riverside Police Department", + "url": "https://riversideca.gov/rpd/rpd/rpd/", + "evidence_url": "https://riversideca.gov/rpd/rpd/rpd/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "About & Contact | Riverside Police Department", + "url": "https://www.riversideca.gov/rpd/about-contact", + "evidence_url": "https://www.riversideca.gov/rpd/about-contact", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "RIVERSIDE POLICE DEPARTMENT", + "url": "https://riversideca.gov/Explore/2018/Explore_WinSpr_DIGITAL_Linked.pdf", + "evidence_url": "https://riversideca.gov/Explore/2018/Explore_WinSpr_DIGITAL_Linked.pdf", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [], + "pages_checked": 0, + "website_candidates": [], + "status": "department-found", + "distance_from_link_km": 551.51, + "indexed_search_query": "\"Riverside\" California police department official crime reports news alerts" + }, + { + "id": "162:0662364", + "geoid": "0662364", + "name": "Rocklin", + "census_name": "Rocklin city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 76821, + "population_year": 2025, + "lat": 38.806868, + "lon": -121.249696, + "checked_at": "2026-09-13T18:50:22.806599+00:00", + "domains": [], + "channels": [ + { + "kind": "newsroom", + "title": "pd-news - City of Rocklin", + "url": "https://www.rocklin.ca.us/overview/pd-news-and-crime-reports", + "evidence_url": "https://www.rocklin.ca.us/overview/pd-news-and-crime-reports", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "Police Department News - City of Rocklin", + "url": "https://www.rocklin.ca.us/news/police-department-news", + "evidence_url": "https://www.rocklin.ca.us/news/police-department-news", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police - City of Rocklin", + "url": "https://www.rocklin.ca.us/locations-link/police-department", + "evidence_url": "https://www.rocklin.ca.us/locations-link/police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "http://www.ci.rocklin.ca.us", + "error": "HTTP Error 429: Too Many Requests" + } + ], + "pages_checked": 1, + "website_candidates": [ + { + "url": "http://www.ci.rocklin.ca.us", + "evidence_url": "https://www.wikidata.org/entity/Q984599" + } + ], + "status": "channels-found", + "distance_from_link_km": 184.13, + "indexed_search_query": "\"Rocklin\" California police department official crime reports news alerts" + }, + { + "id": "162:0662938", + "geoid": "0662938", + "name": "Roseville", + "census_name": "Roseville city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 167302, + "population_year": 2025, + "lat": 38.770296, + "lon": -121.319634, + "checked_at": "2026-09-13T18:50:22.610812+00:00", + "domains": [], + "channels": [ + { + "kind": "department-page", + "url": "https://www.roseville.ca.gov/police/index.php", + "evidence_url": "https://www.roseville.ca.gov/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://member.everbridge.net/453003085611269/login", + "evidence_url": "https://www.roseville.ca.gov/police/index.php", + "link_text": "Sign Up for Placer Alerts", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://public.govdelivery.com/accounts/CAROSEVILLE/subscriber/new", + "evidence_url": "https://www.roseville.ca.gov/police/index.php", + "link_text": "Agenda notifications", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://www.roseville.ca.gov/police/police/resources/crime_log_reports.php", + "evidence_url": "https://www.roseville.ca.gov/police/index.php", + "link_text": "Crime Log & Reports", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/RosevilleCaliforniaPolice/", + "evidence_url": "https://www.roseville.ca.gov/police/index.php", + "link_text": "Visit Facebook for", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/company/roseville-police-department/", + "evidence_url": "https://www.roseville.ca.gov/police/index.php", + "link_text": "Visit Instagram for", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "x", + "url": "https://x.com/rsvl_police", + "evidence_url": "https://www.roseville.ca.gov/police/index.php", + "link_text": "Visit X for", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.roseville.ca.gov/police/animal_control/index.php", + "evidence_url": "https://www.roseville.ca.gov/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + } + ], + "errors": [ + { + "url": "https://www.roseville.ca.gov/police/news", + "error": "HTTP Error 404: Not Found" + }, + { + "url": "https://www.roseville.ca.gov/police/news/index.php", + "error": "HTTP Error 404: Not Found" + }, + { + "url": "https://www.roseville.ca.gov/police/police/connect_with_us/index.php", + "error": "HTTP Error 404: Not Found" + }, + { + "url": "https://www.roseville.ca.gov/police/animal_control/news", + "error": "HTTP Error 404: Not Found" + } + ], + "pages_checked": 7, + "website_candidates": [ + { + "url": "http://www.roseville.ca.us", + "evidence_url": "https://www.wikidata.org/entity/Q491340" + } + ], + "status": "channels-found", + "distance_from_link_km": 178.33 + }, + { + "id": "162:0664000", + "geoid": "0664000", + "name": "Sacramento", + "census_name": "Sacramento city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 536449, + "population_year": 2025, + "lat": 38.567694, + "lon": -121.468161, + "checked_at": "2026-09-13T18:46:39.819460+00:00", + "domains": [ + { + "url": "https://cityofsacramento.gov/", + "organization": "City of Sacramento", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.cityofsacramento.gov/opsa", + "evidence_url": "https://www.cityofsacramento.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://www.cityofsacramento.gov/mayor-council/district-1/d1-community-meetings", + "evidence_url": "https://www.cityofsacramento.gov/opsa", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.cityofsacramento.gov/fire/join-sacramento-fire/notifications", + "evidence_url": "https://www.cityofsacramento.gov/opsa", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.cityofsacramento.gov/police/police-news/public-information-office/helicopter-notifications", + "evidence_url": "https://www.cityofsacramento.gov/opsa", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.cityofsacramento.gov/ccs/esd/film-media", + "evidence_url": "https://www.cityofsacramento.gov/opsa", + "verification": "official-domain-or-referral", + "access": "public-html" + } + ], + "errors": [], + "pages_checked": 3, + "status": "channels-found", + "distance_from_link_km": 153.01 + }, + { + "id": "162:0664224", + "geoid": "0664224", + "name": "Salinas", + "census_name": "Salinas city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 159134, + "population_year": 2025, + "lat": 36.690217, + "lon": -121.633793, + "checked_at": "2026-09-13T18:46:34.614613+00:00", + "domains": [ + { + "url": "https://salinas.gov/", + "organization": "City of Salinas", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://police.salinas.gov/", + "evidence_url": "https://www.salinas.gov/Home", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "feed-candidate", + "url": "https://police.salinas.gov/feed/", + "evidence_url": "https://police.salinas.gov/", + "verification": "linked-from-official-page", + "access": "public-feed-with-items", + "validation": { + "url": "https://police.salinas.gov/feed/", + "checked_at": "2026-09-13T19:03:14.043058+00:00", + "final_url": "https://police.salinas.gov/feed/", + "publisher": "Salinas Police Department", + "item_count": 10, + "newest_label": "2026-09-11T07:14:42+00:00", + "access": "public-feed-with-items", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + } + }, + { + "kind": "feed-candidate", + "url": "https://police.salinas.gov/comments/feed/", + "evidence_url": "https://police.salinas.gov/", + "verification": "linked-from-official-page", + "access": "empty-public-feed", + "validation": { + "url": "https://police.salinas.gov/comments/feed/", + "checked_at": "2026-09-13T19:03:14.058619+00:00", + "final_url": "https://police.salinas.gov/comments/feed/", + "publisher": "\n\tComments for Salinas Police Department\t", + "item_count": 0, + "newest_label": null, + "access": "empty-public-feed", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + } + }, + { + "kind": "incident-log", + "url": "https://police.salinas.gov/hate-crime-reporting/", + "evidence_url": "https://police.salinas.gov/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/SalinasPoliceDepartment", + "evidence_url": "https://police.salinas.gov/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/salinaspolicedepartment/", + "evidence_url": "https://police.salinas.gov/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "x", + "url": "https://x.com/salinaspd", + "evidence_url": "https://police.salinas.gov/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://police.salinas.gov/all-news/", + "evidence_url": "https://police.salinas.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.salinas.gov/City-Hall/Boards-and-Commissions/Police-Community-Advisory-Committee", + "evidence_url": "https://www.salinas.gov/Home", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://www.salinas.gov/Newsroom", + "evidence_url": "https://www.salinas.gov/City-Hall/Boards-and-Commissions/Police-Community-Advisory-Committee", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.salinas.gov/Newsroom/Announcements-E-Newsletters", + "evidence_url": "https://www.salinas.gov/City-Hall/Boards-and-Commissions/Police-Community-Advisory-Committee", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.salinas.gov/Newsroom/News-Articles", + "evidence_url": "https://www.salinas.gov/City-Hall/Boards-and-Commissions/Police-Community-Advisory-Committee", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.salinas.gov/Newsroom/Public-Meetings-Agendas", + "evidence_url": "https://www.salinas.gov/City-Hall/Boards-and-Commissions/Police-Community-Advisory-Committee", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.salinas.gov/Newsroom/Press-Releases", + "evidence_url": "https://www.salinas.gov/City-Hall/Boards-and-Commissions/Police-Community-Advisory-Committee", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.salinas.gov/Newsroom/Public-Notices", + "evidence_url": "https://www.salinas.gov/City-Hall/Boards-and-Commissions/Police-Community-Advisory-Committee", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.salinas.gov/City-Hall/Transparency", + "evidence_url": "https://www.salinas.gov/City-Hall/Boards-and-Commissions/Police-Community-Advisory-Committee", + "verification": "official-domain-or-referral", + "access": "public-html" + } + ], + "errors": [], + "pages_checked": 6, + "status": "channels-found", + "distance_from_link_km": 67.36 + }, + { + "id": "162:0665000", + "geoid": "0665000", + "name": "San Bernardino", + "census_name": "San Bernardino city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 222044, + "population_year": 2025, + "lat": 34.14114, + "lon": -117.294635, + "checked_at": "2026-09-13T18:50:34.600455+00:00", + "domains": [ + { + "url": "https://sanbernardino.gov/", + "organization": "City of San Bernardino", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Police Department | San Bernardino, CA", + "url": "https://www.sanbernardino.gov/police", + "evidence_url": "https://www.sanbernardino.gov/police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Form Center \u2022 Police Department", + "url": "https://sanbernardino.gov/FormCenter/Police-Department-10", + "evidence_url": "https://sanbernardino.gov/FormCenter/Police-Department-10", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Statistics | San Bernardino, CA", + "url": "https://www.sanbernardino.gov/600/Crime-Statistics", + "evidence_url": "https://www.sanbernardino.gov/600/Crime-Statistics", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [], + "pages_checked": 1, + "website_candidates": [], + "status": "department-found", + "distance_from_link_km": 543.19, + "indexed_search_query": "\"San Bernardino\" California police department official crime reports news alerts" + }, + { + "id": "162:0665042", + "geoid": "0665042", + "name": "San Buenaventura (Ventura)", + "census_name": "San Buenaventura (Ventura) city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 109914, + "population_year": 2025, + "lat": 34.26778, + "lon": -119.254206, + "checked_at": "2026-09-13T18:50:27.600206+00:00", + "domains": [], + "channels": [ + { + "kind": "newsroom", + "url": "https://www.cityofventura.ca.gov/Blog.aspx?CID=5", + "evidence_url": "https://www.cityofventura.ca.gov/Blog.aspx?CID=5", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://www.cityofventura.ca.gov", + "error": "robots unavailable: HTTP 429" + } + ], + "pages_checked": 1, + "website_candidates": [ + { + "url": "https://www.cityofventura.ca.gov", + "evidence_url": "https://www.wikidata.org/entity/Q490434" + } + ], + "status": "channels-found", + "distance_from_link_km": 410.25, + "indexed_search_query": "\"San Buenaventura (Ventura)\" California police department official crime reports news alerts" + }, + { + "id": "162:0665084", + "geoid": "0665084", + "name": "San Clemente", + "census_name": "San Clemente city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 62226, + "population_year": 2025, + "lat": 33.449143, + "lon": -117.61312, + "checked_at": "2026-09-13T18:50:37.755888+00:00", + "domains": [ + { + "url": "https://sanclemente.gov/", + "organization": "City of San Clemente", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Public Safety Services | San Clemente, CA", + "url": "https://www.sanclemente.gov/239/Public-Safety-Services", + "evidence_url": "https://www.sanclemente.gov/239/Public-Safety-Services", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Services (OCSD) | San Clemente, CA", + "url": "https://www.sanclemente.gov/301/Police-Services-OCSD", + "evidence_url": "https://www.sanclemente.gov/301/Police-Services-OCSD", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "San Clemente | Orange County California - Sheriff's Department", + "url": "https://ocsheriff.gov/patrol-areas/san-clemente", + "evidence_url": "https://ocsheriff.gov/patrol-areas/san-clemente", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://sanclemente.gov/", + "error": "robots unavailable: HTTP 429" + }, + { + "url": "http://ci.san-clemente.ca.us", + "error": "robots unavailable" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://ci.san-clemente.ca.us", + "evidence_url": "https://www.wikidata.org/entity/Q675070" + } + ], + "status": "department-found", + "distance_from_link_km": 576.23, + "indexed_search_query": "\"San Clemente\" California police department official crime reports news alerts" + }, + { + "id": "162:0666000", + "geoid": "0666000", + "name": "San Diego", + "census_name": "San Diego city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 1406106, + "population_year": 2025, + "lat": 32.830391, + "lon": -117.120923, + "checked_at": "2026-09-13T18:47:01.551822+00:00", + "domains": [ + { + "url": "https://sannet.gov/", + "organization": "The City of San Diego", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://sdcers.gov/", + "organization": "San Diego City Employees' Retirement System (SDCERS)", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://sandiego.gov/", + "organization": "The City of San Diego", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "crime-map", + "url": "https://www.crimemapping.com/", + "evidence_url": "https://www.sandiego.gov/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.sandiego.gov/police", + "evidence_url": "https://www.sandiego.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.sandiego.gov/oes/informed", + "evidence_url": "https://www.sandiego.gov/police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.sandiego.gov/police/news-center", + "evidence_url": "https://www.sandiego.gov/police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "facebook", + "url": "https://facebook.com/sandiegopolicedepartment", + "evidence_url": "https://www.sandiego.gov/police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "x", + "url": "https://x.com/sandiegopd", + "evidence_url": "https://www.sandiego.gov/police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "youtube", + "url": "https://www.youtube.com/c/SanDiegoPoliceDepartment", + "evidence_url": "https://www.sandiego.gov/police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "instagram", + "url": "https://instagram.com/sandiegopd", + "evidence_url": "https://www.sandiego.gov/police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "nextdoor", + "url": "https://nextdoor.com/agency-detail/ca/san-diego/san-diego-police-department/", + "evidence_url": "https://www.sandiego.gov/police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.sandiego.gov/police/news-center/news-releases", + "evidence_url": "https://www.sandiego.gov/police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.sandiego.gov/connect", + "evidence_url": "https://www.sandiego.gov/police", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://www.sandiego.gov/police/news-center/cold-cases", + "evidence_url": "https://www.sandiego.gov/police/news-center", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.sandiego.gov/police/news-center/public-records-act-request", + "evidence_url": "https://www.sandiego.gov/police/news-center", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.sandiego.gov/public-safety", + "evidence_url": "https://www.sandiego.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.sandiego.gov/ohs/emergencynotification", + "evidence_url": "https://www.sandiego.gov/public-safety", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "http://www.readysandiego.org/alertsandiego/", + "evidence_url": "https://www.sandiego.gov/public-safety", + "verification": "linked-from-official-page", + "access": "not-tested" + } + ], + "errors": [ + { + "url": "https://sannet.gov/", + "error": "robots unavailable" + } + ], + "pages_checked": 7, + "status": "channels-found", + "distance_from_link_km": 658.21 + }, + { + "id": "162:0667000", + "geoid": "0667000", + "name": "San Francisco", + "census_name": "San Francisco city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 826079, + "population_year": 2025, + "lat": 37.727239, + "lon": -123.032229, + "checked_at": "2026-09-13T18:50:20.287512+00:00", + "domains": [ + { + "url": "https://sfo.gov/", + "organization": "San Francisco International Airport", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://sfmta.gov/", + "organization": "San Francisco Municipal Transportation Agency", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://flysfo.gov/", + "organization": "San Francisco International Airport", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Services - City of South San Francisco", + "url": "https://www.ssfca.gov/Departments/Police-Department/Divisions/Services", + "evidence_url": "https://www.ssfca.gov/Departments/Police-Department/Divisions/Services", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "SAN FRANCISCO POLICE DEPARTMENT", + "url": "https://media.api.sf.gov/documents/PoliceCommission101624-_Commission_Crime_Trends_Notes_10.16.24.pdf", + "evidence_url": "https://media.api.sf.gov/documents/PoliceCommission101624-_Commission_Crime_Trends_Notes_10.16.24.pdf", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "SAN FRANCISCO POLICE DEPARTMENT", + "url": "https://media.api.sf.gov/documents/Commission_Crime_Trends_Notes_09.11.24.pdf", + "evidence_url": "https://media.api.sf.gov/documents/Commission_Crime_Trends_Notes_09.11.24.pdf", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://sfo.gov/", + "error": "robots unavailable" + }, + { + "url": "https://flysfo.gov/", + "error": "robots unavailable" + } + ], + "pages_checked": 4, + "website_candidates": [ + { + "url": "https://www.sf.gov/", + "evidence_url": "https://www.wikidata.org/entity/Q62" + } + ], + "status": "department-found", + "distance_from_link_km": 110.16, + "indexed_search_query": "\"San Francisco\" California police department official crime reports news alerts" + }, + { + "id": "162:0667112", + "geoid": "0667112", + "name": "San Jacinto", + "census_name": "San Jacinto city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 56014, + "population_year": 2025, + "lat": 33.798864, + "lon": -116.995914, + "checked_at": "2026-09-13T18:46:58.613684+00:00", + "domains": [ + { + "url": "https://sanjacintoca.gov/", + "organization": "City of San Jacinto", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.sanjacintoca.gov/city_departments/public-safety", + "evidence_url": "https://www.sanjacintoca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://www.sanjacintoca.gov/community/press_releases", + "evidence_url": "https://www.sanjacintoca.gov/city_departments/public-safety", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.sanjacintoca.gov/city_departments/city-managers-office/social_media", + "evidence_url": "https://www.sanjacintoca.gov/city_departments/public-safety", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.sanjacintoca.gov/city_departments/public-safety/police-department", + "evidence_url": "https://www.sanjacintoca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + } + ], + "errors": [], + "pages_checked": 5, + "status": "channels-found", + "distance_from_link_km": 589.02 + }, + { + "id": "162:0668000", + "geoid": "0668000", + "name": "San Jose", + "census_name": "San Jose city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 989814, + "population_year": 2025, + "lat": 37.296011, + "lon": -121.814552, + "checked_at": "2026-09-13T18:46:34.353668+00:00", + "domains": [ + { + "url": "https://sanjoseca.gov/", + "organization": "City of San Jose", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "newsroom", + "url": "https://www.sjpd.org/about-us/inside-sjpd/press-releases", + "evidence_url": "https://www.sjpd.org/about-us/organization/office-of-the-chief-of-police/media-relations-pio", + "verification": "reviewed-official-page", + "access": "search-readable; direct-http-403" + }, + { + "kind": "x", + "url": "https://x.com/sjpd_pio", + "evidence_url": "https://info.sjpd.org/records/pc-13650_library/Unit%20Guidelines/Media%20Relations%20Unit%20Guidelines%20UPDATE%201-4-2024_Redacted.pdf", + "verification": "official-department-publication", + "access": "not-tested" + } + ], + "errors": [ + { + "url": "https://www.sjpd.org/about-us/inside-sjpd/press-releases", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://sanjoseca.gov/", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "status": "channels-found", + "distance_from_link_km": 12.75 + }, + { + "id": "162:0668084", + "geoid": "0668084", + "name": "San Leandro", + "census_name": "San Leandro city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 85353, + "population_year": 2025, + "lat": 37.703368, + "lon": -122.163036, + "checked_at": "2026-09-13T18:50:19.227303+00:00", + "domains": [ + { + "url": "https://sanleandro.gov/", + "organization": "City of San Leandro", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Police | San Leandro, CA", + "url": "https://www.sanleandro.org/police", + "evidence_url": "https://www.sanleandro.org/police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Stats | San Leandro, CA", + "url": "https://www.sanleandro.org/448/Crime-Stats", + "evidence_url": "https://www.sanleandro.org/448/Crime-Stats", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Stats | San Leandro, CA", + "url": "https://www.sanleandro.org/449/Crime-Stats", + "evidence_url": "https://www.sanleandro.org/449/Crime-Stats", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/san-leandro-police-department/", + "title": "San Leandro Police Department", + "evidence_url": "https://local.nixle.com/city/ca/san-leandro/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/san-leandro-police-department/", + "checked_at": "2026-09-13T19:19:38.241109+00:00", + "final_url": "https://local.nixle.com/san-leandro-police-department/", + "publisher": "San Leandro Police Department", + "item_count": 20, + "newest_label": "Entered: 1 week, 3 days ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [ + { + "url": "https://sanleandro.gov/", + "error": "robots unavailable: HTTP 429" + }, + { + "url": "http://www.sanleandro.org/", + "error": "robots unavailable: HTTP 429" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.sanleandro.org/", + "evidence_url": "https://www.wikidata.org/entity/Q851034" + } + ], + "status": "channels-found", + "distance_from_link_km": 54.71, + "indexed_search_query": "\"San Leandro\" California police department official crime reports news alerts" + }, + { + "id": "162:0668154", + "geoid": "0668154", + "name": "San Luis Obispo", + "census_name": "San Luis Obispo city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 50636, + "population_year": 2025, + "lat": 35.266195, + "lon": -120.668438, + "checked_at": "2026-09-13T18:50:25.248263+00:00", + "domains": [], + "channels": [ + { + "kind": "department-page", + "title": "Public Information - County of San Luis Obispo", + "url": "https://www.slocounty.ca.gov/departments/sheriff-coroner/public-information", + "evidence_url": "https://www.slocounty.ca.gov/departments/sheriff-coroner/public-information", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Services - County of San Luis Obispo", + "url": "https://www.slocounty.ca.gov/departments/sheriff-coroner/public-information/services", + "evidence_url": "https://www.slocounty.ca.gov/departments/sheriff-coroner/public-information/services", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [], + "pages_checked": 0, + "website_candidates": [], + "status": "department-found", + "distance_from_link_km": 247.77, + "indexed_search_query": "\"San Luis Obispo\" California police department official crime reports news alerts" + }, + { + "id": "162:0668196", + "geoid": "0668196", + "name": "San Marcos", + "census_name": "San Marcos city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 94908, + "population_year": 2025, + "lat": 33.132567, + "lon": -117.169892, + "checked_at": "2026-09-13T18:47:00.465515+00:00", + "domains": [ + { + "url": "https://sanmarcosca.gov/", + "organization": "City of San Marcos California", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.sanmarcosca.gov/Resident-Services/Stay-Safe/Sheriff", + "evidence_url": "https://www.sanmarcosca.gov/Home", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.sanmarcosca.gov/Resident-Services/Road-Construction", + "evidence_url": "https://www.sanmarcosca.gov/Resident-Services/Stay-Safe/Sheriff", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://sanmarcosca.prelive.opencities.com/city/Resident-Services/Stay-Safe/Sheriff?transfer=58b85bbe-e588-4e25-a04e-b6a57a46cadc", + "evidence_url": "https://www.sanmarcosca.gov/Resident-Services/Stay-Safe/Sheriff", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.sdsheriff.gov/community/hi-lo", + "evidence_url": "https://www.sanmarcosca.gov/Resident-Services/Stay-Safe/Sheriff", + "verification": "linked-from-official-page", + "access": "not-tested" + } + ], + "errors": [ + { + "url": "https://www.sdsheriff.gov/community/crime-prevention", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://www.sdsheriff.gov/bureaus/law-enforcement-services-bureau/support-services/crime-analysis-unit", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "http://www.sdsheriff.net/", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 5, + "status": "channels-found", + "distance_from_link_km": 629.95 + }, + { + "id": "162:0668252", + "geoid": "0668252", + "name": "San Mateo", + "census_name": "San Mateo city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 103337, + "population_year": 2025, + "lat": 37.56031, + "lon": -122.3106, + "checked_at": "2026-09-13T18:50:19.210674+00:00", + "domains": [ + { + "url": "https://cityofsanmateoca.gov/", + "organization": "City of San Mateo", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.cityofsanmateo.org/3639/Public-Safety-Information-Services", + "evidence_url": "https://www.cityofsanmateo.org/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "incident-log", + "url": "https://www.cityofsanmateo.org/1183/Report-a-Crime-Online", + "evidence_url": "https://www.cityofsanmateo.org/3639/Public-Safety-Information-Services", + "link_text": "Online Crime Reporting", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.cityofsanmateo.org/4086", + "evidence_url": "https://www.cityofsanmateo.org/3639/Public-Safety-Information-Services", + "link_text": "Newsroom", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.cityofsanmateo.org/2729/Social-Media-Mobile-Apps", + "evidence_url": "https://www.cityofsanmateo.org/3639/Public-Safety-Information-Services", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "x", + "url": "https://x.com/sanmateopd", + "evidence_url": "https://www.cityofsanmateo.org/2729/Social-Media-Mobile-Apps", + "link_text": "@SanMateoPD", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/CityofSanMateoPolice", + "evidence_url": "https://www.cityofsanmateo.org/2729/Social-Media-Mobile-Apps", + "link_text": "Police Department", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/sanmateopd/", + "evidence_url": "https://www.cityofsanmateo.org/2729/Social-Media-Mobile-Apps", + "link_text": "San Mateo Police Department", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/san-mateo-ca-police-department/", + "evidence_url": "https://www.cityofsanmateo.org/2729/Social-Media-Mobile-Apps", + "link_text": "", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/san-mateo-ca-police-department/", + "checked_at": "2026-09-13T19:03:15.256613+00:00", + "final_url": "https://local.nixle.com/san-mateo-ca-police-department/", + "publisher": "San Mateo, CA Police Department", + "item_count": 20, + "newest_label": "Entered: 2 days ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + }, + { + "kind": "alerts", + "url": "https://hsd.smcsheriff.com/smcalert", + "evidence_url": "https://www.cityofsanmateo.org/2729/Social-Media-Mobile-Apps", + "link_text": "San Mateo County's SMC Alert", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.cityofsanmateo.org/4086/Newsroom", + "evidence_url": "https://www.cityofsanmateo.org/2729/Social-Media-Mobile-Apps", + "link_text": "Newsroom", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.cityofsanmateo.org/4707/Email-Alerts-News", + "evidence_url": "https://www.cityofsanmateo.org/2729/Social-Media-Mobile-Apps", + "link_text": "Email Alerts & News", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.cityofsanmateo.org/CivicAlerts.aspx?CID=1%2C19", + "evidence_url": "https://www.cityofsanmateo.org/4086/Newsroom", + "link_text": "Latest News and Announcements", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.cityofsanmateo.org/CivicAlerts.aspx?AID=1921", + "evidence_url": "https://www.cityofsanmateo.org/4086/Newsroom", + "link_text": "Fair Housing Training for Landlords", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.cityofsanmateo.org/273/Police", + "evidence_url": "https://www.cityofsanmateo.org/3639/Public-Safety-Information-Services", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.cityofsanmateo.org/CivicAlerts.aspx?CID=10", + "evidence_url": "https://www.cityofsanmateo.org/273/Police", + "link_text": "View All", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.cityofsanmateo.org/4029/Press-Releases", + "evidence_url": "https://www.cityofsanmateo.org/273/Police", + "link_text": "View the latest SMPD press releases", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + } + ], + "errors": [ + { + "url": "https://cityofsanmateoca.gov/", + "error": "robots unavailable" + } + ], + "pages_checked": 6, + "website_candidates": [ + { + "url": "https://www.cityofsanmateo.org/", + "evidence_url": "https://www.wikidata.org/entity/Q169943" + } + ], + "status": "channels-found", + "distance_from_link_km": 47.93 + }, + { + "id": "162:0668364", + "geoid": "0668364", + "name": "San Rafael", + "census_name": "San Rafael city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 59410, + "population_year": 2025, + "lat": 37.981003, + "lon": -122.50693, + "checked_at": "2026-09-13T18:50:19.889189+00:00", + "domains": [ + { + "url": "https://sanrafaelpolice.gov/", + "organization": "San Rafael Police Department", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://sanrafael.gov/", + "organization": "City of San Rafael", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.cityofsanrafael.org/event/spanish-community-police-academy-2026-09-16/", + "evidence_url": "https://www.cityofsanrafael.org/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.cityofsanrafael.org/news/", + "evidence_url": "https://www.cityofsanrafael.org/event/spanish-community-police-academy-2026-09-16/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.cityofsanrafael.org/subscribe/", + "evidence_url": "https://www.cityofsanrafael.org/news/", + "link_text": "Sign-up to receive notifications", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.cityofsanrafael.org/9-14-temporary-road-closure-notification-k-st/", + "evidence_url": "https://www.cityofsanrafael.org/news/", + "link_text": "9/14: Temporary Road Closure Notification \u2013 K St", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.cityofsanrafael.org/9-14-temporary-road-closure-notification-bret-harte-rd/", + "evidence_url": "https://www.cityofsanrafael.org/news/", + "link_text": "9/14: Temporary Road Closure Notification \u2013 Bret Harte Rd", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.cityofsanrafael.org/9-10-9-11-night-work-notification-930-irwin-st/", + "evidence_url": "https://www.cityofsanrafael.org/news/", + "link_text": "9/10-9/11: Night Work Notification \u2013 930 Irwin St.", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.cityofsanrafael.org/city-social-media-accounts/", + "evidence_url": "https://www.cityofsanrafael.org/event/spanish-community-police-academy-2026-09-16/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/sanrafaelpolice/", + "evidence_url": "https://www.cityofsanrafael.org/city-social-media-accounts/", + "link_text": "@sanrafaelpolice", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/sanrafaelpolice/", + "evidence_url": "https://www.cityofsanrafael.org/city-social-media-accounts/", + "link_text": "@sanrafaelpolice", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "x", + "url": "https://x.com/sanrafaelpolice", + "evidence_url": "https://www.cityofsanrafael.org/city-social-media-accounts/", + "link_text": "@sanrafaelpolice", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.cityofsanrafael.org/wp-content/plugins/elasticpress/dist/css/general-styles.css?ver=66295efe92a630617c00", + "evidence_url": "https://www.cityofsanrafael.org/event/spanish-community-police-academy-2026-09-16/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/san-rafael-police-department/", + "title": "San Rafael Police Department", + "evidence_url": "https://local.nixle.com/city/ca/san-rafael/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/san-rafael-police-department/", + "checked_at": "2026-09-13T19:19:38.997997+00:00", + "final_url": "https://local.nixle.com/san-rafael-police-department/", + "publisher": "San Rafael Police Department", + "item_count": 20, + "newest_label": "Entered: 1 week, 5 days ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [ + { + "url": "https://sanrafaelpolice.gov/", + "error": "robots unavailable" + }, + { + "url": "https://sanrafael.gov/", + "error": "robots unavailable" + } + ], + "pages_checked": 7, + "website_candidates": [ + { + "url": "http://www.cityofsanrafael.org", + "evidence_url": "https://www.wikidata.org/entity/Q631915" + } + ], + "status": "channels-found", + "distance_from_link_km": 95.89 + }, + { + "id": "162:0668378", + "geoid": "0668378", + "name": "San Ramon", + "census_name": "San Ramon city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 86209, + "population_year": 2025, + "lat": 37.765258, + "lon": -121.931987, + "checked_at": "2026-09-13T18:50:19.234527+00:00", + "domains": [], + "channels": [ + { + "kind": "department-page", + "url": "https://www.sanramon.ca.gov/cms/one.aspx?pageId=12572486", + "evidence_url": "https://www.sanramon.ca.gov/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.sanramon.ca.gov/residents/subscribe_to_e_san_ramon_notifications", + "evidence_url": "https://www.sanramon.ca.gov/cms/one.aspx?pageId=12572486", + "link_text": "Subscribe to eSanRamon Notifications", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.sanramon.ca.gov/how_do_i_/sign_up/request_for_proposal_enotification", + "evidence_url": "https://www.sanramon.ca.gov/cms/one.aspx?pageId=12572486", + "link_text": "RFP eNotification", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.sanramon.ca.gov/cms/One.aspx?portalId=10826130&pageId=14395745", + "evidence_url": "https://www.sanramon.ca.gov/cms/one.aspx?pageId=12572486", + "link_text": "Press Releases", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "feed-directory", + "url": "https://www.sanramon.ca.gov/syndication/rss.aspx?serverid=10826046&userid=5&feed=datasummary&key=zmHJsZ9W%2BbSSymY3hyV0K%2Fpp%2BR0ptNv45vyp429pBlBG81Q7hKAtXUdanDTE4f1FusnAF92Ovywxy7YgQGp8id3x23o%3D&target_object_id=12572486&portal_id=10826130&v=2.0&item_name=portlet_xml_title&item_description=portlet_xml_summary&item_pubdate=portlet_last_modified&max_items=8", + "evidence_url": "https://www.sanramon.ca.gov/cms/one.aspx?pageId=12572486", + "link_text": "Subscribe to RSS Feed RSS Feed", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.sanramon.ca.gov/our_city/departments_and_divisions/police/police_news/press_releases", + "evidence_url": "https://www.sanramon.ca.gov/cms/one.aspx?pageId=12572486", + "link_text": "Press Releases Press Releases", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.sanramon.ca.gov/our_city/departments_and_divisions/city_manager/economic_development", + "evidence_url": "https://www.sanramon.ca.gov/cms/one.aspx?pageId=12572486", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.sanramon.ca.gov/news/what_s_new", + "evidence_url": "https://www.sanramon.ca.gov/cms/one.aspx?pageId=12572486", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "feed-directory", + "url": "https://www.sanramon.ca.gov/syndication/rss.aspx?serverid=10826046&userid=5&feed=datasummary&key=mJHzaXPT43rmpN8mBpjuv%2FqDC%2BX77EO2djhLKY9DJbXOd2imQJYa9jkxBfbNtbfQZLAzot0N4WRLOwlF%2FezhWA3m38M%3D&target_object_id=10826141&portal_id=10826130&v=2.0&item_name=portlet_xml_title&item_description=portlet_xml_summary&item_pubdate=portlet_publish_date&max_items=16", + "evidence_url": "https://www.sanramon.ca.gov/news/what_s_new", + "link_text": "Subscribe to RSS Feed RSS Feed", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.sanramon.ca.gov/how_do_i_/submit/police_report", + "evidence_url": "https://www.sanramon.ca.gov/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + } + ], + "errors": [], + "pages_checked": 5, + "website_candidates": [ + { + "url": "https://www.sanramon.ca.gov/", + "evidence_url": "https://www.wikidata.org/entity/Q605472" + } + ], + "status": "channels-found", + "distance_from_link_km": 58.02 + }, + { + "id": "162:0669000", + "geoid": "0669000", + "name": "Santa Ana", + "census_name": "Santa Ana city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 315586, + "population_year": 2025, + "lat": 33.736332, + "lon": -117.8829, + "checked_at": "2026-09-13T18:46:54.890373+00:00", + "domains": [ + { + "url": "https://santa-ana.gov/", + "organization": "City of Santa Ana", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://santa-ana.gov/e-police-reporting/", + "evidence_url": "https://santa-ana.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "incident-log", + "url": "https://santa-ana.gov/training-bulletins/", + "evidence_url": "https://santa-ana.gov/e-police-reporting/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://santa-ana.gov/uniform-crime-reporting-statistics/", + "evidence_url": "https://santa-ana.gov/e-police-reporting/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://santa-ana.gov/hate-crime-reports/", + "evidence_url": "https://santa-ana.gov/e-police-reporting/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://santa-ana.gov/news/", + "evidence_url": "https://santa-ana.gov/e-police-reporting/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://santa-ana.gov/connect-with-us/", + "evidence_url": "https://santa-ana.gov/news/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://santa-ana.gov/social-media/", + "evidence_url": "https://santa-ana.gov/e-police-reporting/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://santa-ana.gov/police-open-government-and-transparency-initiative/", + "evidence_url": "https://santa-ana.gov/e-police-reporting/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/santa-ana-police-department/", + "title": "Santa Ana Police Department", + "evidence_url": "https://local.nixle.com/city/ca/santa-ana/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/santa-ana-police-department/", + "checked_at": "2026-09-13T19:19:39.763966+00:00", + "final_url": "https://local.nixle.com/santa-ana-police-department/", + "publisher": "Santa Ana Police Department", + "item_count": 20, + "newest_label": "Entered: 10 months, 4 weeks ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [], + "pages_checked": 5, + "status": "channels-found", + "distance_from_link_km": 535.78 + }, + { + "id": "162:0669070", + "geoid": "0669070", + "name": "Santa Barbara", + "census_name": "Santa Barbara city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 86422, + "population_year": 2025, + "lat": 34.403592, + "lon": -119.713714, + "checked_at": "2026-09-13T18:46:41.947362+00:00", + "domains": [ + { + "url": "https://santabarbarapd.gov/", + "organization": "Santa Barbara Police Department", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://santabarbaraca.gov/", + "organization": "City of Santa Barbara", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://santabarbaraca.gov/government/departments/santa-barbara-police-department", + "evidence_url": "https://santabarbaraca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.readysbc.org/", + "evidence_url": "https://santabarbaraca.gov/government/departments/santa-barbara-police-department", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://santabarbaraca.gov/services/sb-connect", + "evidence_url": "https://santabarbaraca.gov/government/departments/santa-barbara-police-department", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://santabarbaraca.gov/press-releases/introducing-sb-connect-city-just-click-away-new-app-eng/spa", + "evidence_url": "https://santabarbaraca.gov/services/sb-connect", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://santabarbaraca.gov/government/city-hall/news", + "evidence_url": "https://santabarbaraca.gov/government/departments/santa-barbara-police-department", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://santabarbaraca.gov/government/city-hall/news/media-releases", + "evidence_url": "https://santabarbaraca.gov/government/city-hall/news", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/santa-barbara-police-department/", + "title": "Santa Barbara Police Department", + "evidence_url": "https://local.nixle.com/city/ca/santa-barbara/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/santa-barbara-police-department/", + "checked_at": "2026-09-13T19:19:40.449284+00:00", + "final_url": "https://local.nixle.com/santa-barbara-police-department/", + "publisher": "Santa Barbara Police Department", + "item_count": 20, + "newest_label": "Entered: 2 months, 2 weeks ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [ + { + "url": "https://santabarbarapd.gov/", + "error": "robots unavailable" + } + ], + "pages_checked": 5, + "status": "channels-found", + "distance_from_link_km": 374.27 + }, + { + "id": "162:0669084", + "geoid": "0669084", + "name": "Santa Clara", + "census_name": "Santa Clara city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 133446, + "population_year": 2025, + "lat": 37.364621, + "lon": -121.967973, + "checked_at": "2026-09-13T18:50:19.160794+00:00", + "domains": [ + { + "url": "https://santaclaraca.gov/", + "organization": "City of Santa Clara", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "incident-log", + "url": "https://www.santaclaraca.gov/our-city/departments-g-z/police-department/crime/arrest-log", + "evidence_url": "https://www.santaclaraca.gov/our-city/departments-g-z/police-department/crime/arrest-log", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + }, + { + "kind": "x", + "url": "https://x.com/santaclarapd", + "evidence_url": "https://www.santaclaraca.gov/home/showpublisheddocument/88189/639080556114870000", + "verification": "official-department-reference", + "access": "not-tested" + }, + { + "kind": "department-page", + "title": "Police Department | City of Santa Clara", + "url": "https://www.santaclaraca.gov/our-city/departments-g-z/police-department", + "evidence_url": "https://www.santaclaraca.gov/our-city/departments-g-z/police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime | City of Santa Clara", + "url": "https://www.santaclaraca.gov/Home/Components/RFP/RFP/1687/", + "evidence_url": "https://www.santaclaraca.gov/Home/Components/RFP/RFP/1687/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/santa-clara-police-department/", + "title": "Santa Clara Police Department", + "evidence_url": "https://local.nixle.com/city/ca/santa-clara/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/santa-clara-police-department/", + "checked_at": "2026-09-13T19:19:41.195739+00:00", + "final_url": "https://local.nixle.com/santa-clara-police-department/", + "publisher": "Santa Clara Police Department", + "item_count": 20, + "newest_label": "Entered: 4 days, 1 hour ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [ + { + "url": "https://www.santaclaraca.gov/our-city/departments-g-z/police-department", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://www.santaclaraca.gov/our-city/departments-g-z/police-department/crime/arrest-log", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://santaclaraca.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "http://www.santaclaraca.gov/", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 4, + "website_candidates": [ + { + "url": "http://www.santaclaraca.gov/", + "evidence_url": "https://www.wikidata.org/entity/Q159260" + } + ], + "status": "channels-found", + "distance_from_link_km": 13.65, + "indexed_search_query": "\"Santa Clara\" California police department official crime reports news alerts" + }, + { + "id": "162:0669088", + "geoid": "0669088", + "name": "Santa Clarita", + "census_name": "Santa Clarita city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 228430, + "population_year": 2025, + "lat": 34.416504, + "lon": -118.500693, + "checked_at": "2026-09-13T18:50:27.968824+00:00", + "domains": [ + { + "url": "https://santaclarita.gov/", + "organization": "City of Santa Clarita", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "New Virtual Deputy Services Enhances Public Safety in Santa Clarita - City of Santa Clarita", + "url": "https://santaclarita.gov/blog/2025/09/20/new-virtual-deputy-services-enhances-public-safety-in-santa-clarita/", + "evidence_url": "https://santaclarita.gov/blog/2025/09/20/new-virtual-deputy-services-enhances-public-safety-in-santa-clarita/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "City of Santa Clarita Announces Brandon Barclay as New Chief of Police - City of Santa Clarita", + "url": "https://santaclarita.gov/blog/2025/08/14/city-of-santa-clarita-announces-brandon-barclay-as-new-chief-of-police/", + "evidence_url": "https://santaclarita.gov/blog/2025/08/14/city-of-santa-clarita-announces-brandon-barclay-as-new-chief-of-police/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.santa-clarita.com", + "evidence_url": "https://www.wikidata.org/entity/Q491132" + } + ], + "status": "department-found", + "distance_from_link_km": 441.63, + "indexed_search_query": "\"Santa Clarita\" California police department official crime reports news alerts" + }, + { + "id": "162:0669112", + "geoid": "0669112", + "name": "Santa Cruz", + "census_name": "Santa Cruz city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 61797, + "population_year": 2025, + "lat": 36.974385, + "lon": -122.035268, + "checked_at": "2026-09-13T18:46:34.390451+00:00", + "domains": [ + { + "url": "https://santacruzca.gov/", + "organization": "City of Santa Cruz", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.santacruzca.gov/Government/City-Departments/Police", + "evidence_url": "https://www.santacruzca.gov/Home", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases", + "evidence_url": "https://www.santacruzca.gov/Government/City-Departments/Police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases/City-Managers-Updates", + "evidence_url": "https://www.santacruzca.gov/Government/City-Departments/Police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.santacruzca.gov/Government/City-Departments/Police/News-Alerts", + "evidence_url": "https://www.santacruzca.gov/Government/City-Departments/Police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://carealert.santacruzcountyca.gov/", + "evidence_url": "https://www.santacruzca.gov/Government/City-Departments/Police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.santacruzca.gov/Government/City-Departments/Police/News-Alerts/SCPD-Press-Releases", + "evidence_url": "https://www.santacruzca.gov/Government/City-Departments/Police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.santacruzca.gov/Government/City-Departments/Police/News-Alerts/Arrest-and-Activity-Log", + "evidence_url": "https://www.santacruzca.gov/Government/City-Departments/Police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.santacruzca.gov/City-News-Press-Releases/New-page-17", + "evidence_url": "https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.santacruzca.gov/City-News-Press-Releases/Poster-Contest-2026", + "evidence_url": "https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.santacruzca.gov/City-News-Press-Releases/SLR-Maintenance-2026", + "evidence_url": "https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.santacruzca.gov/City-News-Press-Releases/Seabright-Neighborhood-to-Host-Summers-End-Block-Party-on-Murray-Street-September-6", + "evidence_url": "https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.santacruzca.gov/City-News-Press-Releases/Race-the-Flame", + "evidence_url": "https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.santacruzca.gov/City-News-Press-Releases/New-page-16", + "evidence_url": "https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.santacruzca.gov/City-News-Press-Releases/New-page-15", + "evidence_url": "https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.santacruzca.gov/City-News-Press-Releases/New-page-14", + "evidence_url": "https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.santacruzca.gov/City-News-Press-Releases/Design-Guidelines-\u2013-Public-Input-Survey", + "evidence_url": "https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.santacruzca.gov/City-News-Press-Releases/City-of-Santa-Cruz-Youth-Liaison-Application-2627", + "evidence_url": "https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases/City-of-Santa-Cruz-Offers-Free-Self-Defense-Classes-Through-Voucher-Program", + "evidence_url": "https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.santacruzca.gov/Government/City-Departments/Police/News-Alerts/Social-Media-Connections", + "evidence_url": "https://www.santacruzca.gov/Government/City-Departments/Police/News-Alerts", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.santacruzca.gov/Government/City-Departments/Police/News-Alerts/Social-Media-Terms-of-Use", + "evidence_url": "https://www.santacruzca.gov/Government/City-Departments/Police/News-Alerts", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://cruzaware.genasys.com/portal/en", + "evidence_url": "https://www.santacruzca.gov/Government/City-Departments/Police/News-Alerts", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/santa-cruz-police-department/", + "title": "Santa Cruz Police Department", + "evidence_url": "https://local.nixle.com/city/ca/santa-cruz/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/santa-cruz-police-department/", + "checked_at": "2026-09-13T19:19:41.946535+00:00", + "final_url": "https://local.nixle.com/santa-cruz-police-department/", + "publisher": "Santa Cruz Police Department", + "item_count": 20, + "newest_label": "Entered: 3 years, 7 months ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [ + { + "url": "https://www.santacruzca.gov/Government/City-Calendar/Community-Meeting-Santa-Cruz-Police-Department\u2019s-Annual-Assembly-Bill-AB-481-Report", + "error": "'ascii' codec can't encode character '\\u2019' in position 76: ordinal not in range(128)" + } + ], + "pages_checked": 6, + "status": "channels-found", + "distance_from_link_km": 31.03 + }, + { + "id": "162:0669196", + "geoid": "0669196", + "name": "Santa Maria", + "census_name": "Santa Maria city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 111390, + "population_year": 2025, + "lat": 34.933076, + "lon": -120.443559, + "checked_at": "2026-09-13T18:50:25.761906+00:00", + "domains": [], + "channels": [ + { + "kind": "department-page", + "title": "Santa Maria Police Department | State of California - Department of Justice - Office of the Attorney General", + "url": "https://www.oag.ca.gov/fingerprints/locations/santa-maria-police-department", + "evidence_url": "https://www.oag.ca.gov/fingerprints/locations/santa-maria-police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/santa-maria-police-department/", + "title": "Santa Maria Police Department", + "evidence_url": "https://local.nixle.com/city/ca/santa-maria/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/santa-maria-police-department/", + "checked_at": "2026-09-13T19:19:42.716791+00:00", + "final_url": "https://local.nixle.com/santa-maria-police-department/", + "publisher": "Santa Maria Police Department", + "item_count": 20, + "newest_label": "Entered: 1 day, 3 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [ + { + "url": "http://www.ci.santa-maria.ca.us", + "error": "robots unavailable" + } + ], + "pages_checked": 1, + "website_candidates": [ + { + "url": "http://www.ci.santa-maria.ca.us", + "evidence_url": "https://www.wikidata.org/entity/Q643953" + } + ], + "status": "channels-found", + "distance_from_link_km": 290.07, + "indexed_search_query": "\"Santa Maria\" California police department official crime reports news alerts" + }, + { + "id": "162:0670000", + "geoid": "0670000", + "name": "Santa Monica", + "census_name": "Santa Monica city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 90082, + "population_year": 2025, + "lat": 34.010911, + "lon": -118.498245, + "checked_at": "2026-09-13T18:46:43.618467+00:00", + "domains": [ + { + "url": "https://santamonica.gov/", + "organization": "City of Santa Monica", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://santamonicaca.gov/", + "organization": "City of Santa Monica", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.santamonica.gov/departments/police", + "evidence_url": "https://www.santamonica.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "incident-log", + "url": "https://www.santamonicapd.org/crimereport/", + "evidence_url": "https://www.santamonica.gov/departments/police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://www.santamonica.gov/topic-explainers/crime-reports-and-statistics", + "evidence_url": "https://www.santamonica.gov/departments/police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/SantaMonicaPD/", + "evidence_url": "https://www.santamonica.gov/departments/police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/santamonicapd", + "evidence_url": "https://www.santamonica.gov/departments/police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "x", + "url": "https://x.com/santamonicapd", + "evidence_url": "https://www.santamonica.gov/departments/police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.santamonica.gov/press/2026/09/12/critical-incident-video-released-following-august-22-2026-officer-involved-shooting", + "evidence_url": "https://www.santamonica.gov/departments/police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.santamonica.gov/press/2026/09/04/smpd-investigating-shots-fired-incident-on-bay-street", + "evidence_url": "https://www.santamonica.gov/departments/police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.santamonica.gov/press/2026/09/02/smpd-holding-dui-checkpoint-september-4-2026", + "evidence_url": "https://www.santamonica.gov/departments/police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.santamonica.gov/news", + "evidence_url": "https://www.santamonica.gov/departments/police", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://www.santamonica.gov/press/2026/09/11/beach-damage-from-hurricane-marie-forces-cancellation-of-inaugural-ocean-way-festival-to-2027", + "evidence_url": "https://www.santamonica.gov/news", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.santamonica.gov/press/2026/09/11/santa-monica-block-fest-returns-september-12-with-20-000-expected-as-monthly-series-extends-through-december", + "evidence_url": "https://www.santamonica.gov/news", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.santamonica.gov/press/2026/09/03/santa-monica-appoints-new-city-clerk-walfred-solorzano-appointed-following-national-recruitment", + "evidence_url": "https://www.santamonica.gov/news", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.santamonica.gov/topic-explainers/crime-prevention", + "evidence_url": "https://www.santamonica.gov/departments/police", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.santamonica.gov/places/city-facilities/police-activities-league-pal-youth-center", + "evidence_url": "https://www.santamonica.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.santamonica.gov/connect-with-homelessness-services", + "evidence_url": "https://www.santamonica.gov/places/city-facilities/police-activities-league-pal-youth-center", + "verification": "official-domain-or-referral", + "access": "public-html" + } + ], + "errors": [ + { + "url": "https://santamonicaca.gov/", + "error": "robots unavailable" + } + ], + "pages_checked": 7, + "status": "channels-found", + "distance_from_link_km": 475.44 + }, + { + "id": "162:0670098", + "geoid": "0670098", + "name": "Santa Rosa", + "census_name": "Santa Rosa city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 179437, + "population_year": 2025, + "lat": 38.445824, + "lon": -122.706181, + "checked_at": "2026-09-13T18:50:22.231976+00:00", + "domains": [ + { + "url": "https://santarosaca.gov/", + "organization": "City of Santa Rosa", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Police Reports | Santa Rosa, CA", + "url": "https://www.srcity.org/3328/Police-Reports", + "evidence_url": "https://www.srcity.org/3328/Police-Reports", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Santa Rosa Police Department", + "url": "https://www.bscc.ca.gov/wp-content/uploads/97-Santa-Rosa-Police.pdf", + "evidence_url": "https://www.bscc.ca.gov/wp-content/uploads/97-Santa-Rosa-Police.pdf", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police | Santa Rosa, CA", + "url": "https://www.srcity.org/3929/Police", + "evidence_url": "https://www.srcity.org/3929/Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://santarosaca.gov/", + "error": "robots unavailable" + }, + { + "url": "https://www.srcity.org/", + "error": "robots unavailable: HTTP 429" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://www.srcity.org/", + "evidence_url": "https://www.wikidata.org/entity/Q212991" + } + ], + "status": "department-found", + "distance_from_link_km": 149.56, + "indexed_search_query": "\"Santa Rosa\" California police department official crime reports news alerts" + }, + { + "id": "162:0670224", + "geoid": "0670224", + "name": "Santee", + "census_name": "Santee city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 58205, + "population_year": 2025, + "lat": 32.85499, + "lon": -116.986056, + "checked_at": "2026-09-13T18:50:39.092452+00:00", + "domains": [ + { + "url": "https://cityofsanteeca.gov/", + "organization": "City of Santee", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "newsroom", + "title": "News List | San Diego County Sheriff", + "url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list", + "evidence_url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "News List | San Diego County Sheriff", + "url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-selcat-36/-npage-2", + "evidence_url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-selcat-36/-npage-2", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "News List | San Diego County Sheriff", + "url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-selectview-1/-arch-1", + "evidence_url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-selectview-1/-arch-1", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://www.sdsheriff.gov/Home/Components/FacilityDirectory/FacilityDirectory/42/34?npage=2", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "http://www.ci.santee.ca.us", + "error": "robots unavailable" + } + ], + "pages_checked": 3, + "website_candidates": [ + { + "url": "http://www.ci.santee.ca.us", + "evidence_url": "https://www.wikidata.org/entity/Q923799" + } + ], + "status": "channels-found", + "distance_from_link_km": 664.4, + "indexed_search_query": "\"Santee\" California police department official crime reports news alerts" + }, + { + "id": "162:0672016", + "geoid": "0672016", + "name": "Simi Valley", + "census_name": "Simi Valley city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 124861, + "population_year": 2025, + "lat": 34.266887, + "lon": -118.748458, + "checked_at": "2026-09-13T18:50:27.770918+00:00", + "domains": [ + { + "url": "https://simivalley.gov/", + "organization": "City of Simi Valley", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Police Department | City of Simi Valley, CA", + "url": "https://www.simivalley.org/departments/police-department", + "evidence_url": "https://www.simivalley.org/departments/police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "California Department of Justice Investigating Simi Valley Police Department Officer-Involved Shooting Under AB 1506 | State of California - Department of Justice - Office of the Attorney General", + "url": "https://www.oag.ca.gov/news/press-releases/california-department-justice-investigating-simi-valley-police-department", + "evidence_url": "https://www.oag.ca.gov/news/press-releases/california-department-justice-investigating-simi-valley-police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Resources | City of Simi Valley, CA", + "url": "https://www.simivalley.org/departments/police-department/resources", + "evidence_url": "https://www.simivalley.org/departments/police-department/resources", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/simi-valley-police-department/", + "title": "Simi Valley Police Department", + "evidence_url": "https://local.nixle.com/city/ca/simi-valley/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/simi-valley-police-department/", + "checked_at": "2026-09-13T19:19:43.269924+00:00", + "final_url": "https://local.nixle.com/simi-valley-police-department/", + "publisher": "Simi Valley Police Department", + "item_count": 20, + "newest_label": "Entered: 5 days, 1 hour ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [ + { + "url": "https://simivalley.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://www.simivalley.org/", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://www.simivalley.org/", + "evidence_url": "https://www.wikidata.org/entity/Q323414" + } + ], + "status": "channels-found", + "distance_from_link_km": 438.83, + "indexed_search_query": "\"Simi Valley\" California police department official crime reports news alerts" + }, + { + "id": "162:0673080", + "geoid": "0673080", + "name": "South Gate", + "census_name": "South Gate city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 90071, + "population_year": 2025, + "lat": 33.944159, + "lon": -118.192761, + "checked_at": "2026-09-13T18:50:29.748261+00:00", + "domains": [], + "channels": [ + { + "kind": "department-page", + "url": "https://www.cityofsouthgate.org/City-Services/Public-Safety", + "evidence_url": "https://www.cityofsouthgate.org/Home", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.cityofsouthgate.org/Engage-South-Gate/E-Newsletter", + "evidence_url": "https://www.cityofsouthgate.org/City-Services/Public-Safety", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.cityofsouthgate.org/Engage-South-Gate/Social-Media", + "evidence_url": "https://www.cityofsouthgate.org/City-Services/Public-Safety", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://southgatepd.com/", + "evidence_url": "https://www.cityofsouthgate.org/Home", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "feed-candidate", + "url": "https://southgatepd.com/feed/", + "evidence_url": "https://southgatepd.com/", + "link_text": "South Gate Police Department \u00bb Feed", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "public-feed-with-items", + "validation": { + "url": "https://southgatepd.com/feed/", + "checked_at": "2026-09-13T19:03:16.038122+00:00", + "final_url": "https://southgatepd.com/feed/", + "publisher": "South Gate Police Department", + "item_count": 3, + "newest_label": "2025-12-08T16:32:57+00:00", + "access": "public-feed-with-items", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + } + }, + { + "kind": "feed-candidate", + "url": "https://southgatepd.com/comments/feed/", + "evidence_url": "https://southgatepd.com/", + "link_text": "South Gate Police Department \u00bb Comments Feed", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "empty-public-feed", + "validation": { + "url": "https://southgatepd.com/comments/feed/", + "checked_at": "2026-09-13T19:03:16.442503+00:00", + "final_url": "https://southgatepd.com/comments/feed/", + "publisher": "\n\tComments for South Gate Police Department\t", + "item_count": 0, + "newest_label": null, + "access": "empty-public-feed", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + } + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/SoGatePD/", + "evidence_url": "https://southgatepd.com/", + "link_text": "Facebook-f", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/south_gate_police_department_/", + "evidence_url": "https://southgatepd.com/", + "link_text": "Instagram", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://southgatepd.com/news", + "evidence_url": "https://southgatepd.com/", + "link_text": "News Releases", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://southgatepd.com/news-and-information/", + "evidence_url": "https://southgatepd.com/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + } + ], + "errors": [], + "pages_checked": 7, + "website_candidates": [ + { + "url": "http://www.cityofsouthgate.org", + "evidence_url": "https://www.wikidata.org/entity/Q838772" + } + ], + "status": "channels-found", + "distance_from_link_km": 499.46 + }, + { + "id": "162:0673262", + "geoid": "0673262", + "name": "South San Francisco", + "census_name": "South San Francisco city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 64941, + "population_year": 2025, + "lat": 37.655104, + "lon": -122.376234, + "checked_at": "2026-09-13T18:46:34.495750+00:00", + "domains": [ + { + "url": "https://ssfca.gov/", + "organization": "City of South San Francisco", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.ssfca.gov/Departments/Police-Department", + "evidence_url": "https://www.ssfca.gov/Home", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.ssfca.gov/Services/Free-South-City-Shuttle/Shuttle-Notifications", + "evidence_url": "https://www.ssfca.gov/Departments/Police-Department", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.ssfca.gov/Our-City/City-Newsletter", + "evidence_url": "https://www.ssfca.gov/Departments/Police-Department", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.ssfca.gov/Our-City/Living/Resident-News", + "evidence_url": "https://www.ssfca.gov/Departments/Police-Department", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://www.ssfca.gov/News/Clariti-2026", + "evidence_url": "https://www.ssfca.gov/Our-City/Living/Resident-News", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.ssfca.gov/News/Light-Tree-2026", + "evidence_url": "https://www.ssfca.gov/Our-City/Living/Resident-News", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.ssfca.gov/News/Sign-Hill-Repaint", + "evidence_url": "https://www.ssfca.gov/Our-City/Living/Resident-News", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.ssfca.gov/News/522-Linden-Avenue-Public-Parking-Lot-Closing-September-1", + "evidence_url": "https://www.ssfca.gov/Our-City/Living/Resident-News", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.ssfca.gov/News/Centennial-Way-North-Workshop-Recap", + "evidence_url": "https://www.ssfca.gov/Our-City/Living/Resident-News", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.ssfca.gov/News/NNO2026Recap", + "evidence_url": "https://www.ssfca.gov/Our-City/Living/Resident-News", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.ssfca.gov/News/Keep-South-City-Clean", + "evidence_url": "https://www.ssfca.gov/Our-City/Living/Resident-News", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.ssfca.gov/News/Touch-A-Truck-2026-Results", + "evidence_url": "https://www.ssfca.gov/Our-City/Living/Resident-News", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.smcgov.org/hsa/community-information-handbook", + "evidence_url": "https://www.ssfca.gov/Departments/Police-Department", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://www.smcgov.org/ceo/newsroom", + "evidence_url": "https://www.smcgov.org/hsa/community-information-handbook", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://www.smcsheriff.com/online-crime-reporting", + "evidence_url": "https://www.smcgov.org/hsa/community-information-handbook", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.smcgov.org/dem/smc-alert", + "evidence_url": "https://www.smcgov.org/hsa/community-information-handbook", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://visitor.r20.constantcontact.com/manage/optin?v=001YwBuX0JTuQnxXeJoxC6jYy88PRocmOLs7CBTLlVxxPzYEHU5HrNrp6zT5SKCKNb4J8YEBzQZA30AaqBmmjraDqcTxeZyXodtwtGXGsfYqBvfIQfdNgkUvEtFD-bSNcNSlU8KKw7Ek5uuVJSbRNtwFsw7h7ssEHSg", + "evidence_url": "https://www.smcgov.org/hsa/community-information-handbook", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.smcgov.org/newsroom", + "evidence_url": "https://www.smcgov.org/hsa/community-information-handbook", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.ssfca.gov/Departments/Police-Department/FAQs", + "evidence_url": "https://www.ssfca.gov/Home", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "incident-log", + "url": "https://southsanfranciscopd.citizenrims.com", + "evidence_url": "https://www.ssfca.gov/Departments/Police-Department/FAQs", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.ssfca.gov/Departments/Police-Department/Archives", + "evidence_url": "https://www.ssfca.gov/Home", + "verification": "official-domain-or-referral", + "access": "public-html" + } + ], + "errors": [], + "pages_checked": 7, + "status": "channels-found", + "distance_from_link_km": 59.66 + }, + { + "id": "162:0675000", + "geoid": "0675000", + "name": "Stockton", + "census_name": "Stockton city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 324597, + "population_year": 2025, + "lat": 37.976553, + "lon": -121.308598, + "checked_at": "2026-09-13T18:50:19.903533+00:00", + "domains": [ + { + "url": "https://stocktonca.gov/", + "organization": "City of Stockton", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "newsroom", + "title": "Attorney General Bonta and Stockton Police Department Announce 34 Arrests, Seizes 20 Firearms in Stockton | State of California - Department of Justice - Office of the Attorney General", + "url": "https://oag.ca.gov/news/press-releases/attorney-general-bonta-and-stockton-police-department-announce-34-arrests-seizes", + "evidence_url": "https://oag.ca.gov/news/press-releases/attorney-general-bonta-and-stockton-police-department-announce-34-arrests-seizes", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/stockton-police-department-ca/", + "title": "Stockton Police Department, CA", + "evidence_url": "https://local.nixle.com/city/ca/stockton/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/stockton-police-department-ca/", + "checked_at": "2026-09-13T19:19:43.978293+00:00", + "final_url": "https://local.nixle.com/stockton-police-department-ca/", + "publisher": "Stockton Police Department, CA", + "item_count": 20, + "newest_label": "Entered: 7 hours, 38 minutes ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [ + { + "url": "https://stocktonca.gov/", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 1, + "website_candidates": [], + "status": "channels-found", + "distance_from_link_km": 98.81, + "indexed_search_query": "\"Stockton\" California police department official crime reports news alerts" + }, + { + "id": "162:0677000", + "geoid": "0677000", + "name": "Sunnyvale", + "census_name": "Sunnyvale city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 156577, + "population_year": 2025, + "lat": 37.385797, + "lon": -122.026316, + "checked_at": "2026-09-13T18:50:19.165162+00:00", + "domains": [], + "channels": [ + { + "kind": "social-directory", + "url": "https://www.sunnyvale.ca.gov/your-government/about/social-media-center", + "evidence_url": "https://www.sunnyvale.ca.gov/your-government/about/social-media-center", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Statistics | Sunnyvale, CA", + "url": "https://www.sunnyvale.ca.gov/your-government/departments/public-safety/public-safety-services/crime-statistics", + "evidence_url": "https://www.sunnyvale.ca.gov/your-government/departments/public-safety/public-safety-services/crime-statistics", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Public Safety | Sunnyvale, CA", + "url": "https://www.sunnyvale.ca.gov/your-government/departments/public-safety", + "evidence_url": "https://www.sunnyvale.ca.gov/your-government/departments/public-safety", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Public Safety Services | Sunnyvale, CA", + "url": "https://www.sunnyvale.ca.gov/your-government/departments/public-safety/public-safety-services", + "evidence_url": "https://www.sunnyvale.ca.gov/your-government/departments/public-safety/public-safety-services", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/sunnyvale-department-of-public-safety/", + "title": "Sunnyvale Department of Public Safety", + "evidence_url": "https://local.nixle.com/city/ca/sunnyvale/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/sunnyvale-department-of-public-safety/", + "checked_at": "2026-09-13T19:19:44.697291+00:00", + "final_url": "https://local.nixle.com/sunnyvale-department-of-public-safety/", + "publisher": "Sunnyvale Department of Public Safety", + "item_count": 20, + "newest_label": "Entered: 4 days, 23 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [ + { + "url": "https://www.sunnyvale.ca.gov/your-government/about/social-media-center", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://sunnyvale.ca.gov/", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://sunnyvale.ca.gov/", + "evidence_url": "https://www.wikidata.org/entity/Q208459" + } + ], + "status": "channels-found", + "distance_from_link_km": 17.47, + "indexed_search_query": "\"Sunnyvale\" California police department official crime reports news alerts" + }, + { + "id": "162:0678120", + "geoid": "0678120", + "name": "Temecula", + "census_name": "Temecula city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 114865, + "population_year": 2025, + "lat": 33.493073, + "lon": -117.131734, + "checked_at": "2026-09-13T18:50:38.220250+00:00", + "domains": [ + { + "url": "https://temeculaca.gov/", + "organization": "City of Temecula", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Temecula Police Department | Temecula CA", + "url": "https://www.temeculaca.gov/196/Police", + "evidence_url": "https://www.temeculaca.gov/196/Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Public Safety | Temecula CA", + "url": "https://temeculaca.gov/publicsafety", + "evidence_url": "https://temeculaca.gov/publicsafety", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Temecula Police Stations | Temecula CA", + "url": "https://temeculaca.gov/228/Temecula-Police-Stations", + "evidence_url": "https://temeculaca.gov/228/Temecula-Police-Stations", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.cityoftemecula.org", + "evidence_url": "https://www.wikidata.org/entity/Q838785" + } + ], + "status": "department-found", + "distance_from_link_km": 603.32, + "indexed_search_query": "\"Temecula\" California police department official crime reports news alerts" + }, + { + "id": "162:0678582", + "geoid": "0678582", + "name": "Thousand Oaks", + "census_name": "Thousand Oaks city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 122230, + "population_year": 2025, + "lat": 34.19329, + "lon": -118.874235, + "checked_at": "2026-09-13T18:46:42.464527+00:00", + "domains": [ + { + "url": "https://toaks.gov/", + "organization": "City of Thousand Oaks", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://toaks.gov/publicsafety", + "evidence_url": "https://toaks.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://toaks.gov/media/css/effect.css", + "evidence_url": "https://toaks.gov/publicsafety", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://toaks.gov/index.php?section=news", + "evidence_url": "https://toaks.gov/publicsafety", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://toaks.gov/index.php?section=news&prrid=161", + "evidence_url": "https://toaks.gov/index.php?section=news", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://toaks.gov/index.php?section=news&prrid=157", + "evidence_url": "https://toaks.gov/index.php?section=news", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://toaks.gov/media/css/animations.css", + "evidence_url": "https://toaks.gov/publicsafety", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://toaks.gov/index.php?section=publicsafety", + "evidence_url": "https://toaks.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + } + ], + "errors": [], + "pages_checked": 6, + "status": "channels-found", + "distance_from_link_km": 437.86 + }, + { + "id": "162:0680000", + "geoid": "0680000", + "name": "Torrance", + "census_name": "Torrance city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 138391, + "population_year": 2025, + "lat": 33.830453, + "lon": -118.356618, + "checked_at": "2026-09-13T18:46:46.013112+00:00", + "domains": [ + { + "url": "https://torranceca.gov/", + "organization": "City Of Torrance", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://cityoftorranceca.gov/", + "organization": "City Of Torrance", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.torranceca.gov/Government/Departments-Offices/Departments-Offices/Police/Records/Request-Public-Police-Records", + "evidence_url": "https://www.torranceca.gov/Home", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://www.torranceca.gov/Government/Newsroom", + "evidence_url": "https://www.torranceca.gov/Government/Departments-Offices/Departments-Offices/Police/Records/Request-Public-Police-Records", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.torranceca.gov/Government/Stay-Connected/TorranceAlerts", + "evidence_url": "https://www.torranceca.gov/Government/Departments-Offices/Departments-Offices/Police/Records/Request-Public-Police-Records", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.torranceca.gov/How-Do-I/Sign-Up-For/TorranceAlerts", + "evidence_url": "https://www.torranceca.gov/Government/Departments-Offices/Departments-Offices/Police/Records/Request-Public-Police-Records", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.torranceca.gov/Government/Newsroom/Torrance-Police-Department-Conducting-DUI-Patrols-91226", + "evidence_url": "https://www.torranceca.gov/Government/Newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.torranceca.gov/Government/Newsroom/Protecting-Pedestrians-CA-Urges-Drivers-to-Stay-Alert-This-September", + "evidence_url": "https://www.torranceca.gov/Government/Newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.torranceca.gov/Government/Newsroom/25th-Anniversary-September-11-Memorial-Ceremony", + "evidence_url": "https://www.torranceca.gov/Government/Newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.torranceca.gov/Government/Newsroom/Joint-Press-Release-Robert-Vargas-Latest-Mural-unveiling-in-Torrance", + "evidence_url": "https://www.torranceca.gov/Government/Newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.torranceca.gov/Government/Newsroom/City-of-Torrance-Welcomes-Linda-Barnett-as-District-4-Councilmember", + "evidence_url": "https://www.torranceca.gov/Government/Newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.torranceca.gov/Government/Newsroom/Dangers-of-Distracted-Driving", + "evidence_url": "https://www.torranceca.gov/Government/Newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.torranceca.gov/Government/Newsroom/Police-Department-and-ABC-Cites-Clerks-for-Selling-Alcohol-to-Minors", + "evidence_url": "https://www.torranceca.gov/Government/Newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.torranceca.gov/Government/Newsroom/Pedestrian-Struck-and-Killed-in-Traffic-Collision-on-Madrona-Avenue", + "evidence_url": "https://www.torranceca.gov/Government/Newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.torranceca.gov/Government/Newsroom/Save-Drives-Save-Lives", + "evidence_url": "https://www.torranceca.gov/Government/Newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.torranceca.gov/Government/Newsroom/New-Mural", + "evidence_url": "https://www.torranceca.gov/Government/Newsroom", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.torranceca.gov/Our-Community/eNewsletter", + "evidence_url": "https://www.torranceca.gov/Government/Departments-Offices/Departments-Offices/Police/Records/Request-Public-Police-Records", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.torranceca.gov/Government/Stay-Connected", + "evidence_url": "https://www.torranceca.gov/Government/Departments-Offices/Departments-Offices/Police/Records/Request-Public-Police-Records", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.torranceca.gov/City-Services/Health-Public-Safety/Services", + "evidence_url": "https://www.torranceca.gov/Home", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.torranceca.gov/City-Services/Health-Public-Safety/Services/Alerts-and-Notifications", + "evidence_url": "https://www.torranceca.gov/City-Services/Health-Public-Safety/Services", + "verification": "linked-from-official-page", + "access": "not-tested" + } + ], + "errors": [], + "pages_checked": 7, + "status": "channels-found", + "distance_from_link_km": 499.23 + }, + { + "id": "162:0680238", + "geoid": "0680238", + "name": "Tracy", + "census_name": "Tracy city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 101901, + "population_year": 2025, + "lat": 37.727396, + "lon": -121.452195, + "checked_at": "2026-09-13T18:50:19.283920+00:00", + "domains": [ + { + "url": "https://cityoftracyca.gov/", + "organization": "City of Tracy", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://tracypd.com/", + "evidence_url": "https://www.cityoftracy.org/Home", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "feed-candidate", + "url": "https://tracypd.com/feed", + "evidence_url": "https://tracypd.com/", + "link_text": "Tracy Police Department \u00bb Feed", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "public-feed-with-items", + "validation": { + "url": "https://tracypd.com/feed", + "checked_at": "2026-09-13T19:03:17.149087+00:00", + "final_url": "https://tracypd.com/feed", + "publisher": "Tracy Police Department", + "item_count": 10, + "newest_label": "2026-09-12T17:21:04+00:00", + "access": "public-feed-with-items", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + } + }, + { + "kind": "feed-candidate", + "url": "https://tracypd.com/comments/feed", + "evidence_url": "https://tracypd.com/", + "link_text": "Tracy Police Department \u00bb Comments Feed", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "empty-public-feed", + "validation": { + "url": "https://tracypd.com/comments/feed", + "checked_at": "2026-09-13T19:03:17.284093+00:00", + "final_url": "https://tracypd.com/comments/feed", + "publisher": "\n\tComments for Tracy Police Department\t", + "item_count": 0, + "newest_label": null, + "access": "empty-public-feed", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + } + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/TracyPolice", + "evidence_url": "https://tracypd.com/", + "link_text": "Follow on Facebook Follow", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "x", + "url": "https://x.com/tracypd", + "evidence_url": "https://tracypd.com/", + "link_text": "Follow on X Follow", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/tracypolicedepartment", + "evidence_url": "https://tracypd.com/", + "link_text": "Follow on Instagram Follow", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://tracypd.com/category/news-releases", + "evidence_url": "https://tracypd.com/", + "link_text": "News Releases", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://tracypd.com/news", + "evidence_url": "https://tracypd.com/", + "link_text": "Press Releases", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://tracypd.com/crime-mapping", + "evidence_url": "https://tracypd.com/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "crime-map", + "url": "https://www.crimemapping.com/map/agency/377", + "evidence_url": "https://tracypd.com/crime-mapping", + "link_text": "INTERACTIVE CRIME MAP", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "crime-map", + "url": "https://www.crimemapping.com/Alerts", + "evidence_url": "https://tracypd.com/crime-mapping", + "link_text": "CRIME ALERTS SUBSCRIPTION", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + } + ], + "errors": [ + { + "url": "https://cityoftracyca.gov/", + "error": "robots unavailable" + } + ], + "pages_checked": 5, + "website_candidates": [ + { + "url": "http://www.ci.tracy.ca.us", + "evidence_url": "https://www.wikidata.org/entity/Q953409" + } + ], + "status": "channels-found", + "distance_from_link_km": 69.05 + }, + { + "id": "162:0680644", + "geoid": "0680644", + "name": "Tulare", + "census_name": "Tulare city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 73907, + "population_year": 2025, + "lat": 36.200246, + "lon": -119.339775, + "checked_at": "2026-09-13T18:50:25.699469+00:00", + "domains": [], + "channels": [ + { + "kind": "department-page", + "title": "Police | City of Tulare", + "url": "https://www.tulare.ca.gov/government/departments/police", + "evidence_url": "https://www.tulare.ca.gov/government/departments/police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Tips | City of Tulare", + "url": "https://www.tulare.ca.gov/government/departments/police/crime-tips", + "evidence_url": "https://www.tulare.ca.gov/government/departments/police/crime-tips", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "California Department of Justice Investigating Tulare County Sheriff\u2019s Department Officer-Involved Shooting Under AB 1506 | State of California - Department of Justice - Office of the Attorney General", + "url": "https://oag.ca.gov/news/press-releases/california-department-justice-investigating-tulare-county-sheriff%E2%80%99s-department", + "evidence_url": "https://oag.ca.gov/news/press-releases/california-department-justice-investigating-tulare-county-sheriff%E2%80%99s-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://www.tulare.ca.gov/", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 1, + "website_candidates": [ + { + "url": "https://www.tulare.ca.gov/", + "evidence_url": "https://www.wikidata.org/entity/Q616562" + } + ], + "status": "channels-found", + "distance_from_link_km": 259.36, + "indexed_search_query": "\"Tulare\" California police department official crime reports news alerts" + }, + { + "id": "162:0680812", + "geoid": "0680812", + "name": "Turlock", + "census_name": "Turlock city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 72864, + "population_year": 2025, + "lat": 37.505524, + "lon": -120.859269, + "checked_at": "2026-09-13T18:46:36.916567+00:00", + "domains": [ + { + "url": "https://turlockca.gov/", + "organization": "City of Turlock", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://turlockca.gov/policedepartment/", + "evidence_url": "https://turlockca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "x", + "url": "https://x.com/turlockpolice", + "evidence_url": "https://turlockca.gov/policedepartment/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/turlockpolice", + "evidence_url": "https://turlockca.gov/policedepartment/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://turlockca.gov/stayinformed/pressreleases", + "evidence_url": "https://turlockca.gov/policedepartment/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://turlockca.gov/stayinformed/emailalerts", + "evidence_url": "https://turlockca.gov/policedepartment/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://turlockca.gov/policedepartment/crime/", + "evidence_url": "https://turlockca.gov/policedepartment/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "incident-log", + "url": "https://turlockca.gov/policedepartment/crime/reportacrime", + "evidence_url": "https://turlockca.gov/policedepartment/crime/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://turlockca.gov/aboutturlock/socialmedia/", + "evidence_url": "https://turlockca.gov/policedepartment/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/turlockpd", + "evidence_url": "https://turlockca.gov/aboutturlock/socialmedia/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "youtube", + "url": "https://www.youtube.com/channel/UCFcwuWYj8asAT4NCX6CParg", + "evidence_url": "https://turlockca.gov/aboutturlock/socialmedia/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/turlock-police-department-ca/", + "evidence_url": "https://turlockca.gov/aboutturlock/socialmedia/", + "verification": "linked-from-official-page", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/turlock-police-department-ca/", + "checked_at": "2026-09-13T19:03:18.782038+00:00", + "final_url": "https://local.nixle.com/turlock-police-department-ca/", + "publisher": "Turlock Police Department, CA", + "item_count": 20, + "newest_label": "Entered: 3 days, 19 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + }, + { + "kind": "alerts", + "url": "https://turlockca.gov/stayinformed/emailalerts/updatesubscription", + "evidence_url": "https://turlockca.gov/stayinformed/emailalerts/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://turlockca.gov/stayinformed/emailalerts/whatsavailable.asp", + "evidence_url": "https://turlockca.gov/stayinformed/emailalerts/", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://turlockca.gov/policedepartment/index.asp", + "evidence_url": "https://turlockca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + } + ], + "errors": [], + "pages_checked": 6, + "status": "channels-found", + "distance_from_link_km": 100.07 + }, + { + "id": "162:0680854", + "geoid": "0680854", + "name": "Tustin", + "census_name": "Tustin city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 77843, + "population_year": 2025, + "lat": 33.730927, + "lon": -117.810596, + "checked_at": "2026-09-13T18:50:33.788578+00:00", + "domains": [], + "channels": [ + { + "kind": "department-page", + "url": "https://www.tustinca.org/1321/Police", + "evidence_url": "https://www.tustinca.org/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "crime-map", + "url": "https://communitycrimemap.com/?address=Tustin+CA&crimeTypes=%5B11%5D&startDate=7&endDate=0&zoom=10", + "evidence_url": "https://www.tustinca.org/1321/Police", + "link_text": "Crime Mapping", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/tustinpolice/", + "evidence_url": "https://www.tustinca.org/1321/Police", + "link_text": "", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/tustinpolice/", + "evidence_url": "https://www.tustinca.org/1321/Police", + "link_text": "Instagram", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.tustinca.org/CivicAlerts.aspx?AID=618", + "evidence_url": "https://www.tustinca.org/1321/Police", + "link_text": "", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.tustinca.org/CivicAlerts.aspx?AID=619", + "evidence_url": "https://www.tustinca.org/1321/Police", + "link_text": "", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.tustinca.org/CivicAlerts.aspx?AID=620", + "evidence_url": "https://www.tustinca.org/1321/Police", + "link_text": "", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.tustinca.org/CivicAlerts.aspx?AID=621", + "evidence_url": "https://www.tustinca.org/1321/Police", + "link_text": "", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.tustinca.org/176/Crime-Trends", + "evidence_url": "https://www.tustinca.org/1321/Police", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.tustinca.org/367/Crime-Statistics-Alerts", + "evidence_url": "https://www.tustinca.org/176/Crime-Trends", + "link_text": "Crime Statistics & Alerts", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.tustinca.org/373/Nixle-Alerts", + "evidence_url": "https://www.tustinca.org/176/Crime-Trends", + "link_text": "Nixle Alerts", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "newsroom", + "url": "https://www.tustinca.org/CivicAlerts.aspx?CID=10", + "evidence_url": "https://www.tustinca.org/176/Crime-Trends", + "link_text": "Press Releases", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/tustin-ca-police-department/", + "evidence_url": "https://www.tustinca.org/176/Crime-Trends", + "link_text": "Nixle Alerts", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/tustin-ca-police-department/", + "checked_at": "2026-09-13T19:03:19.297447+00:00", + "final_url": "https://local.nixle.com/tustin-ca-police-department/", + "publisher": "Tustin, CA Police Department", + "item_count": 20, + "newest_label": "Entered: 4 days, 23 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + }, + { + "kind": "alerts", + "url": "https://www.tustinca.org/CivicAlerts.aspx?CID=6", + "evidence_url": "https://www.tustinca.org/176/Crime-Trends", + "link_text": "News", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "alerts", + "url": "https://www.tustinca.org/492/Computer-Scam-Alert", + "evidence_url": "https://www.tustinca.org/176/Crime-Trends", + "link_text": "Computer Scam Alert", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.tustinca.org/371/Crime-Prevention", + "evidence_url": "https://www.tustinca.org/1321/Police", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.tustinca.org/m/newsflash/home/detail/618", + "evidence_url": "https://www.tustinca.org/1321/Police", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "alerts", + "url": "https://www.tustinca.org/m/newsflash/Home/Detail/621", + "evidence_url": "https://www.tustinca.org/m/newsflash/home/detail/618", + "link_text": "Open Article Alert Center Alert Center", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + } + ], + "errors": [], + "pages_checked": 5, + "website_candidates": [ + { + "url": "http://www.tustinca.org", + "evidence_url": "https://www.wikidata.org/entity/Q917513" + } + ], + "status": "channels-found", + "distance_from_link_km": 540.73 + }, + { + "id": "162:0681204", + "geoid": "0681204", + "name": "Union City", + "census_name": "Union City city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 65282, + "population_year": 2025, + "lat": 37.602759, + "lon": -122.01884, + "checked_at": "2026-09-13T18:50:19.195694+00:00", + "domains": [ + { + "url": "https://unioncityca.gov/", + "organization": "City of Union City", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "incident-log", + "title": "The Blotter | Union City, CA", + "url": "https://www.unioncityca.gov/625/Crime-Blotter", + "evidence_url": "https://www.unioncityca.gov/625/Crime-Blotter", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime in My Neighborhood | Union City, CA", + "url": "https://www.unioncityca.gov/545/Crime-in-My-Neighborhood", + "evidence_url": "https://www.unioncityca.gov/545/Crime-in-My-Neighborhood", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police | Union City, CA", + "url": "https://www.unioncityca.gov/677/Police", + "evidence_url": "https://www.unioncityca.gov/677/Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/union-city-police-department-ca/", + "title": "Union City Police Department, CA", + "evidence_url": "https://local.nixle.com/city/ca/union-city/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/union-city-police-department-ca/", + "checked_at": "2026-09-13T19:19:45.450035+00:00", + "final_url": "https://local.nixle.com/union-city-police-department-ca/", + "publisher": "Union City Police Department, CA", + "item_count": 20, + "newest_label": "Entered: 1 day, 19 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [ + { + "url": "https://unioncityca.gov/", + "error": "robots unavailable" + }, + { + "url": "https://www.unioncity.org/", + "error": "robots unavailable: HTTP 429" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://www.unioncity.org/", + "evidence_url": "https://www.wikidata.org/entity/Q846402" + } + ], + "status": "channels-found", + "distance_from_link_km": 40.51, + "indexed_search_query": "\"Union City\" California police department official crime reports news alerts" + }, + { + "id": "162:0681344", + "geoid": "0681344", + "name": "Upland", + "census_name": "Upland city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 79446, + "population_year": 2025, + "lat": 34.116073, + "lon": -117.659922, + "checked_at": "2026-09-13T18:46:51.934025+00:00", + "domains": [ + { + "url": "https://uplandca.gov/", + "organization": "City of Upland", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://discoverupland.gov/", + "organization": "CITY OF UPLAND", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://uplandca.gov/police/index.php", + "evidence_url": "https://uplandca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://uplandca.gov/police/press_releases/index.php", + "evidence_url": "https://uplandca.gov/police/index.php", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "incident-log", + "url": "https://uplandca.gov/police/police/about_upd/monthly_hate_crime_report.php", + "evidence_url": "https://uplandca.gov/police/index.php", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "crime-map", + "url": "https://communitycrimemap.com/?address=upland%2Cca", + "evidence_url": "https://uplandca.gov/police/index.php", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://uplandca.gov/information_technology/social_media.php", + "evidence_url": "https://uplandca.gov/police/index.php", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://uplandca.gov/information_technology/press_releases/index.php", + "evidence_url": "https://uplandca.gov/information_technology/social_media.php", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://uplandca.gov/police/divisions.php", + "evidence_url": "https://uplandca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://uplandca.gov/police/servicescommunity/police/services/code_enforcement.php", + "evidence_url": "https://uplandca.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://uplandca.gov/police/servicescommunity/police/services/press_releases/index.php", + "evidence_url": "https://uplandca.gov/police/servicescommunity/police/services/code_enforcement.php", + "verification": "linked-from-official-page", + "access": "not-tested" + } + ], + "errors": [ + { + "url": "https://discoverupland.gov/", + "error": "robots unavailable" + } + ], + "pages_checked": 6, + "status": "channels-found", + "distance_from_link_km": 520.05 + }, + { + "id": "162:0681554", + "geoid": "0681554", + "name": "Vacaville", + "census_name": "Vacaville city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 103850, + "population_year": 2025, + "lat": 38.358621, + "lon": -121.968601, + "checked_at": "2026-09-13T18:50:21.453539+00:00", + "domains": [ + { + "url": "https://cityofvacaville.gov/", + "organization": "City of Vacaville", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Police Department | Vacaville, CA", + "url": "https://www.cityofvacaville.gov/government/police-department?locale=en_us", + "evidence_url": "https://www.cityofvacaville.gov/government/police-department?locale=en_us", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Reports & Prevention | Vacaville, CA", + "url": "https://www.cityofvacaville.gov/government/police-department/crime-reports-prevention", + "evidence_url": "https://www.cityofvacaville.gov/government/police-department/crime-reports-prevention", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police Department | Vacaville, CA", + "url": "https://www.cityofvacaville.gov/government/police-department?locale=en", + "evidence_url": "https://www.cityofvacaville.gov/government/police-department?locale=en", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://cityofvacaville.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "http://www.cityofvacaville.com", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.cityofvacaville.com", + "evidence_url": "https://www.wikidata.org/entity/Q850823" + } + ], + "status": "department-found", + "distance_from_link_km": 124.02, + "indexed_search_query": "\"Vacaville\" California police department official crime reports news alerts" + }, + { + "id": "162:0681666", + "geoid": "0681666", + "name": "Vallejo", + "census_name": "Vallejo city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 123287, + "population_year": 2025, + "lat": 38.106909, + "lon": -122.262339, + "checked_at": "2026-09-13T18:50:20.051199+00:00", + "domains": [ + { + "url": "https://vallejo.gov/", + "organization": "City of Vallejo", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "newsroom", + "url": "https://www.vallejopd.net/public_information/news/press_releases", + "evidence_url": "https://www.vallejopd.net/public_information/news/press_releases", + "verification": "reviewed-primary-web-source", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://vallejo.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://www.cityofvallejo.net/how_do_i___/learn_about_police_online_services", + "error": "HTTP Error 403: Forbidden" + }, + { + "url": "https://www.cityofvallejo.net/our_city/departments_divisions/police_department", + "error": "HTTP Error 403: Forbidden" + } + ], + "pages_checked": 4, + "website_candidates": [ + { + "url": "https://www.cityofvallejo.net/", + "evidence_url": "https://www.wikidata.org/entity/Q208445" + } + ], + "status": "channels-found", + "distance_from_link_km": 100.04, + "indexed_search_query": "\"Vallejo\" California police department official crime reports news alerts" + }, + { + "id": "162:0682590", + "geoid": "0682590", + "name": "Victorville", + "census_name": "Victorville city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 141395, + "population_year": 2025, + "lat": 34.527735, + "lon": -117.353579, + "checked_at": "2026-09-13T18:46:49.806927+00:00", + "domains": [ + { + "url": "https://victorvilleca.gov/", + "organization": "City of Victorville", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.victorvilleca.gov/Government/City-Departments/Police", + "evidence_url": "https://www.victorvilleca.gov/Home", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "crime-map", + "url": "https://www.crimemapping.com/", + "evidence_url": "https://www.victorvilleca.gov/Government/City-Departments/Police", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.victorvilleca.gov/Resident/News", + "evidence_url": "https://www.victorvilleca.gov/Government/City-Departments/Police", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "announcement", + "url": "https://www.victorvilleca.gov/News-articles/Press-Release-Veterans-Day", + "evidence_url": "https://www.victorvilleca.gov/Resident/News", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "announcement", + "url": "https://www.victorvilleca.gov/News-articles/Press-Release-DocuPet", + "evidence_url": "https://www.victorvilleca.gov/Resident/News", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.victorvilleca.gov/Stay-Connected", + "evidence_url": "https://www.victorvilleca.gov/Government/City-Departments/Police", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.victorvilleca.gov/Government/Media-Relations", + "evidence_url": "https://www.victorvilleca.gov/Government/City-Departments/Police", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "newsroom", + "url": "https://us.openforms.com/Form/f45fa8c2-6cc9-444e-8928-479a9719e437", + "evidence_url": "https://www.victorvilleca.gov/Government/Media-Relations", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.victorvilleca.gov/Government/City-Departments/Economic-Development/Old-Town", + "evidence_url": "https://www.victorvilleca.gov/Home", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/sbsd---victorville-police-department/", + "title": "SBSD - Victorville Police Department", + "evidence_url": "https://local.nixle.com/city/ca/victorville/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/sbsd---victorville-police-department/", + "checked_at": "2026-09-13T19:19:46.154934+00:00", + "final_url": "https://local.nixle.com/sbsd---victorville-police-department/", + "publisher": "SBSD - Victorville Police Department", + "item_count": 20, + "newest_label": "Entered: 1 hour, 34 minutes ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [], + "pages_checked": 6, + "status": "channels-found", + "distance_from_link_km": 511.86 + }, + { + "id": "162:0682954", + "geoid": "0682954", + "name": "Visalia", + "census_name": "Visalia city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 146541, + "population_year": 2025, + "lat": 36.32921, + "lon": -119.326984, + "checked_at": "2026-09-13T18:50:25.667217+00:00", + "domains": [ + { + "url": "https://visalia.gov/", + "organization": "City of Visalia", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Police | Visalia, CA", + "url": "https://www.visalia.gov/depts/police/contact_information/contact_numbers/default.asp", + "evidence_url": "https://www.visalia.gov/depts/police/contact_information/contact_numbers/default.asp", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Maps | Visalia, CA", + "url": "https://www.visalia.gov/446/Crime-Maps", + "evidence_url": "https://www.visalia.gov/446/Crime-Maps", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "VISALIA POLICE DEPARTMENT", + "url": "https://www.visalia.city/civicax/filebank/blobdload.aspx?BlobID=16179", + "evidence_url": "https://www.visalia.city/civicax/filebank/blobdload.aspx?BlobID=16179", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://visalia.gov/", + "error": "robots unavailable: HTTP 429" + }, + { + "url": "https://www.visalia.city/", + "error": "HTTP Error 429: Too Many Requests" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://www.visalia.city/", + "evidence_url": "https://www.wikidata.org/entity/Q495373" + } + ], + "status": "department-found", + "distance_from_link_km": 254.14, + "indexed_search_query": "\"Visalia\" California police department official crime reports news alerts" + }, + { + "id": "162:0682996", + "geoid": "0682996", + "name": "Vista", + "census_name": "Vista city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 98274, + "population_year": 2025, + "lat": 33.189528, + "lon": -117.238582, + "checked_at": "2026-09-13T18:50:38.467960+00:00", + "domains": [ + { + "url": "https://vista.gov/", + "organization": "City of Vista", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "newsroom", + "title": "News List | San Diego County Sheriff", + "url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-selectview-1/-arch-1", + "evidence_url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-selectview-1/-arch-1", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "News List | San Diego County Sheriff", + "url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-npage-3/-arch-1", + "evidence_url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-npage-3/-arch-1", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Vista Station | Patrol Stations | San Diego County Sheriff", + "url": "https://www.sdsheriff.gov/Home/Components/FacilityDirectory/FacilityDirectory/46/61", + "evidence_url": "https://www.sdsheriff.gov/Home/Components/FacilityDirectory/FacilityDirectory/46/61", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://vista.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://www.cityofvista.com/", + "error": "HTTP Error 404: Not Found" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://www.cityofvista.com/", + "evidence_url": "https://www.wikidata.org/entity/Q924241" + } + ], + "status": "channels-found", + "distance_from_link_km": 620.96, + "indexed_search_query": "\"Vista\" California police department official crime reports news alerts" + }, + { + "id": "162:0683346", + "geoid": "0683346", + "name": "Walnut Creek", + "census_name": "Walnut Creek city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 70012, + "population_year": 2025, + "lat": 37.902666, + "lon": -122.040479, + "checked_at": "2026-09-13T18:50:19.465122+00:00", + "domains": [ + { + "url": "https://walnutcreekca.gov/", + "organization": "City of Walnut Creek", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://walnutcreekpdca.gov/", + "organization": "City of Walnut Creek", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "newsroom", + "title": "News Releases | Walnut Creek Police Department", + "url": "https://www.walnutcreekpdca.gov/data-and-transparency/transparency/news-releases", + "evidence_url": "https://www.walnutcreekpdca.gov/data-and-transparency/transparency/news-releases", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Contact | Walnut Creek Police Department", + "url": "https://www.walnutcreekpdca.gov/i-want-to/contact-wcpd", + "evidence_url": "https://www.walnutcreekpdca.gov/i-want-to/contact-wcpd", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Walnut Creek Police Department | Home", + "url": "https://www.walnutcreekpdca.gov/home-policenew", + "evidence_url": "https://www.walnutcreekpdca.gov/home-policenew", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://walnutcreekca.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://walnutcreekpdca.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://www.walnut-creek.org/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "http://www.walnut-creek.org", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 4, + "website_candidates": [ + { + "url": "https://www.walnut-creek.org/", + "evidence_url": "https://www.wikidata.org/entity/Q493261" + }, + { + "url": "http://www.walnut-creek.org", + "evidence_url": "https://www.wikidata.org/entity/Q493261" + } + ], + "status": "channels-found", + "distance_from_link_km": 73.8, + "indexed_search_query": "\"Walnut Creek\" California police department official crime reports news alerts" + }, + { + "id": "162:0683668", + "geoid": "0683668", + "name": "Watsonville", + "census_name": "Watsonville city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 50716, + "population_year": 2025, + "lat": 36.923587, + "lon": -121.772395, + "checked_at": "2026-09-13T18:46:34.398888+00:00", + "domains": [ + { + "url": "https://watsonville.gov/", + "organization": "City of Watsonville", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://watsonvillepd.gov/", + "organization": "City of Watsonville", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "url": "https://watsonvillerec.gov/", + "organization": "City of Watsonville", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://watsonville.gov/291/Online-Reporting", + "evidence_url": "https://watsonville.gov/", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "incident-log", + "url": "https://watsonville.gov/2196/Arrest-Crime-Logs", + "evidence_url": "https://watsonville.gov/291/Online-Reporting", + "verification": "linked-from-official-page", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://watsonville.gov/2324/Police", + "evidence_url": "https://watsonville.gov/291/Online-Reporting", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://watsonville.gov/198/Your-Police", + "evidence_url": "https://watsonville.gov/291/Online-Reporting", + "verification": "official-domain-or-referral", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://watsonville.gov/199/Police-Services", + "evidence_url": "https://watsonville.gov/291/Online-Reporting", + "verification": "official-domain-or-referral", + "access": "public-html" + } + ], + "errors": [ + { + "url": "https://watsonvillepd.gov/", + "error": "robots unavailable" + }, + { + "url": "https://watsonvillerec.gov/", + "error": "robots unavailable" + } + ], + "pages_checked": 7, + "status": "channels-found", + "distance_from_link_km": 38.65 + }, + { + "id": "162:0684200", + "geoid": "0684200", + "name": "West Covina", + "census_name": "West Covina city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 105301, + "population_year": 2025, + "lat": 34.055941, + "lon": -117.909937, + "checked_at": "2026-09-13T18:50:30.807911+00:00", + "domains": [], + "channels": [ + { + "kind": "department-page", + "url": "https://www.wcpd.org/", + "evidence_url": "https://www.westcovina.gov/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/WestCovinaPD/", + "evidence_url": "https://www.wcpd.org/", + "link_text": "West Covina Facebook", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "x", + "url": "https://x.com/westcovinapd", + "evidence_url": "https://www.wcpd.org/", + "link_text": "West Covina X", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/westcovinapd/", + "evidence_url": "https://www.wcpd.org/", + "link_text": "West Covina Instagram", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "youtube", + "url": "https://www.youtube.com/@westcovinapolicedepartment6667", + "evidence_url": "https://www.wcpd.org/", + "link_text": "West Covina Youtube", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "youtube", + "url": "https://www.youtube.com/@westcovinapolicedepartment6667/featured", + "evidence_url": "https://www.wcpd.org/", + "link_text": "West Covina Youtube", + "verification": "linked-from-municipal-or-department-page; review-scope", + "access": "not-tested" + }, + { + "kind": "department-page", + "url": "https://www.wcpd.org/news/", + "evidence_url": "https://www.wcpd.org/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "department-page", + "url": "https://www.wcpd.org/crime-stats/", + "evidence_url": "https://www.wcpd.org/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + } + ], + "errors": [], + "pages_checked": 4, + "website_candidates": [ + { + "url": "http://www.westcovina.org", + "evidence_url": "https://www.wikidata.org/entity/Q494728" + } + ], + "status": "channels-found", + "distance_from_link_km": 508.23 + }, + { + "id": "162:0684816", + "geoid": "0684816", + "name": "West Sacramento", + "census_name": "West Sacramento city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 56216, + "population_year": 2025, + "lat": 38.554368, + "lon": -121.548663, + "checked_at": "2026-09-13T18:50:22.314202+00:00", + "domains": [ + { + "url": "https://westsac.gov/", + "organization": "City of West Sacramento", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Contact Us | City of West Sacramento", + "url": "https://www.cityofwestsacramento.org/government/departments/police/contact-us", + "evidence_url": "https://www.cityofwestsacramento.org/government/departments/police/contact-us", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Records Section | City of West Sacramento", + "url": "https://www.cityofwestsacramento.org/government/departments/police/police-divisions-and-units/office-of-operations/records-section", + "evidence_url": "https://www.cityofwestsacramento.org/government/departments/police/police-divisions-and-units/office-of-operations/records-section", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "WEST SACRAMENTO POLICE DEPARTMENT | City of West Sacramento", + "url": "https://www.cityofwestsacramento.org/government/departments/police?from=AppAgg.com", + "evidence_url": "https://www.cityofwestsacramento.org/government/departments/police?from=AppAgg.com", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://westsac.gov/", + "error": "HTTP Error 525: " + }, + { + "url": "http://www.cityofwestsacramento.org", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.cityofwestsacramento.org", + "evidence_url": "https://www.wikidata.org/entity/Q983600" + } + ], + "status": "department-found", + "distance_from_link_km": 149.8, + "indexed_search_query": "\"West Sacramento\" California police department official crime reports news alerts" + }, + { + "id": "162:0684550", + "geoid": "0684550", + "name": "Westminster", + "census_name": "Westminster city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 88966, + "population_year": 2025, + "lat": 33.752292, + "lon": -117.993868, + "checked_at": "2026-09-13T18:50:32.407254+00:00", + "domains": [ + { + "url": "https://westminster-ca.gov/", + "organization": "City of Westminster", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "newsroom", + "title": "Press Releases | Westminster, CA", + "url": "https://www.westminster-ca.gov/departments/police/our-department/press-releases", + "evidence_url": "https://www.westminster-ca.gov/departments/police/our-department/press-releases", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Police | Westminster, CA", + "url": "https://www.westminster-ca.gov/departments/police", + "evidence_url": "https://www.westminster-ca.gov/departments/police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "newsroom", + "title": "Press Releases | Westminster, CA", + "url": "https://www.westminster-ca.gov/departments/police/our-department/press-releases/-arch-1", + "evidence_url": "https://www.westminster-ca.gov/departments/police/our-department/press-releases/-arch-1", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://westminster-ca.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "http://www.westminster-ca.gov", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.westminster-ca.gov", + "evidence_url": "https://www.wikidata.org/entity/Q838759" + } + ], + "status": "channels-found", + "distance_from_link_km": 527.61, + "indexed_search_query": "\"Westminster\" California police department official crime reports news alerts" + }, + { + "id": "162:0685292", + "geoid": "0685292", + "name": "Whittier", + "census_name": "Whittier city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 85815, + "population_year": 2025, + "lat": 33.966827, + "lon": -118.020122, + "checked_at": "2026-09-13T18:50:30.997956+00:00", + "domains": [ + { + "url": "https://cityofwhittier.gov/", + "organization": "City of Whittier", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "City Of Whittier Police Department", + "url": "https://locator.lacounty.gov/lac/Location/3175447/city-of-whittier-police-department", + "evidence_url": "https://locator.lacounty.gov/lac/Location/3175447/city-of-whittier-police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://cityofwhittier.gov/", + "error": "robots unavailable" + }, + { + "url": "http://www.cityofwhittier.org", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.cityofwhittier.org", + "evidence_url": "https://www.wikidata.org/entity/Q838791" + } + ], + "status": "department-found", + "distance_from_link_km": 508.34, + "indexed_search_query": "\"Whittier\" California police department official crime reports news alerts" + }, + { + "id": "162:0686328", + "geoid": "0686328", + "name": "Woodland", + "census_name": "Woodland city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 62513, + "population_year": 2025, + "lat": 38.67137, + "lon": -121.749025, + "checked_at": "2026-09-13T18:50:22.366331+00:00", + "domains": [ + { + "url": "https://cityofwoodland.gov/", + "organization": "City of Woodland", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Woodland Police Department | Woodland, CA", + "url": "https://www.cityofwoodland.gov/394/Woodland-Police-Department", + "evidence_url": "https://www.cityofwoodland.gov/394/Woodland-Police-Department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Mapping | Woodland, CA", + "url": "https://cityofwoodland.gov/521/Crime-Mapping", + "evidence_url": "https://cityofwoodland.gov/521/Crime-Mapping", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Woodland Police Department - Case Log", + "url": "https://caselog.cityofwoodland.gov/", + "evidence_url": "https://caselog.cityofwoodland.gov/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.cityofwoodland.org/", + "evidence_url": "https://www.wikidata.org/entity/Q837129" + } + ], + "status": "department-found", + "distance_from_link_km": 159.68, + "indexed_search_query": "\"Woodland\" California police department official crime reports news alerts" + }, + { + "id": "162:0686832", + "geoid": "0686832", + "name": "Yorba Linda", + "census_name": "Yorba Linda city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 65632, + "population_year": 2025, + "lat": 33.889038, + "lon": -117.77207, + "checked_at": "2026-09-13T18:50:32.766100+00:00", + "domains": [ + { + "url": "https://yorbalindaca.gov/", + "organization": "City of Yorba Linda", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "url": "https://www.yorbalindaca.gov/250/Public-Safety", + "evidence_url": "https://www.yorbalindaca.gov/", + "verification": "discovered-department-page; review-jurisdiction", + "access": "public-html" + }, + { + "kind": "department-page", + "title": "Police | Yorba Linda, CA", + "url": "https://www.yorbalindaca.gov/275/Police", + "evidence_url": "https://www.yorbalindaca.gov/275/Police", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Crime Statistics | Yorba Linda, CA", + "url": "https://www.yorbalindaca.gov/411/Crime-Statistics", + "evidence_url": "https://www.yorbalindaca.gov/411/Crime-Statistics", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Yorba Linda | Orange County California - Sheriff's Department", + "url": "https://www.ocsheriff.gov/patrol-areas/yorba-linda", + "evidence_url": "https://www.ocsheriff.gov/patrol-areas/yorba-linda", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://yorbalindaca.gov/", + "error": "robots unavailable" + }, + { + "url": "https://www.yorbalindaca.gov/212/Transparency-in-Government", + "error": "HTTP Error 429: Too Many Requests" + }, + { + "url": "https://www.yorbalindaca.gov/275/Police", + "error": "HTTP Error 429: Too Many Requests" + } + ], + "pages_checked": 5, + "website_candidates": [ + { + "url": "https://www.yorbalindaca.gov/", + "evidence_url": "https://www.wikidata.org/entity/Q493518" + } + ], + "status": "department-found", + "distance_from_link_km": 530.39, + "indexed_search_query": "\"Yorba Linda\" California police department official crime reports news alerts" + }, + { + "id": "162:0686972", + "geoid": "0686972", + "name": "Yuba City", + "census_name": "Yuba City city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 69485, + "population_year": 2025, + "lat": 39.129842, + "lon": -121.641549, + "checked_at": "2026-09-13T18:50:23.681376+00:00", + "domains": [ + { + "url": "https://yubacity.gov/", + "organization": "City of Yuba City", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Yuba City Police Department | State of California - Department of Justice - Office of the Attorney General", + "url": "https://www.oag.ca.gov/fingerprints/locations/yuba-city-police-department", + "evidence_url": "https://www.oag.ca.gov/fingerprints/locations/yuba-city-police-department", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Sutter County Sheriff, CA | Home Sheriff", + "url": "https://www.suttersheriff.gov/", + "evidence_url": "https://www.suttersheriff.gov/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Yuba County, CA", + "url": "https://yuba.gov/departments/sheriff_coroner/divisions/dispatch_communications.php", + "evidence_url": "https://yuba.gov/departments/sheriff_coroner/divisions/dispatch_communications.php", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + } + ], + "errors": [ + { + "url": "https://yubacity.gov/", + "error": "robots unavailable: HTTP 403" + }, + { + "url": "https://www.yubacity.net/", + "error": "robots unavailable: HTTP 403" + } + ], + "pages_checked": 2, + "website_candidates": [ + { + "url": "https://www.yubacity.net/", + "evidence_url": "https://www.wikidata.org/entity/Q169948" + } + ], + "status": "department-found", + "distance_from_link_km": 211.4, + "indexed_search_query": "\"Yuba City\" California police department official crime reports news alerts" + }, + { + "id": "162:0687042", + "geoid": "0687042", + "name": "Yucaipa", + "census_name": "Yucaipa city", + "state": "CA", + "state_name": "California", + "state_fips": "06", + "county_fips": "000", + "geography": "incorporated-place", + "population": 54953, + "population_year": 2025, + "lat": 34.03357, + "lon": -117.042887, + "checked_at": "2026-09-13T18:50:36.873201+00:00", + "domains": [ + { + "url": "https://yucaipa.gov/", + "organization": "City of Yucaipa", + "evidence": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + } + ], + "channels": [ + { + "kind": "department-page", + "title": "Yucaipa \u2013 San Bernardino County Sheriff's Department", + "url": "https://wp.sbcounty.gov/sheriff/patrol-stations/yucaipa/", + "evidence_url": "https://wp.sbcounty.gov/sheriff/patrol-stations/yucaipa/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "2024 ANNUAL CRIME REPORT", + "url": "https://wp.sbcounty.gov/sheriff/wp-content/uploads/sites/17/2024-Annual-Crime-Report.pdf", + "evidence_url": "https://wp.sbcounty.gov/sheriff/wp-content/uploads/sites/17/2024-Annual-Crime-Report.pdf", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "department-page", + "title": "Yucaipa Police Department \u2013 Dawn Rowe Third District Supervisor", + "url": "https://bosd3.sbcounty.gov/venue/yucaipa-police-department/", + "evidence_url": "https://bosd3.sbcounty.gov/venue/yucaipa-police-department/", + "verification": "search-discovered-primary-source; review-jurisdiction", + "access": "search-readable; automation-unverified" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/sbsd---yucaipa-police-department/", + "title": "SBSD - Yucaipa Police Department", + "evidence_url": "https://local.nixle.com/city/ca/yucaipa/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "public-nixle-archive", + "validation": { + "url": "https://local.nixle.com/sbsd---yucaipa-police-department/", + "checked_at": "2026-09-13T19:19:46.908258+00:00", + "final_url": "https://local.nixle.com/sbsd---yucaipa-police-department/", + "publisher": "SBSD - Yucaipa Police Department", + "item_count": 20, + "newest_label": "Entered: 2 days, 22 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + } + } + ], + "errors": [], + "pages_checked": 2, + "website_candidates": [ + { + "url": "http://www.yucaipa.org", + "evidence_url": "https://www.wikidata.org/entity/Q598567" + } + ], + "status": "channels-found", + "distance_from_link_km": 568.58, + "indexed_search_query": "\"Yucaipa\" California police department official crime reports news alerts" + } + ] +} diff --git a/docs/data/police-sources/nixle-directories.json b/docs/data/police-sources/nixle-directories.json new file mode 100644 index 0000000..9a42474 --- /dev/null +++ b/docs/data/police-sources/nixle-directories.json @@ -0,0 +1,1442 @@ +[ + { + "id": "162:0600562", + "directory": "https://local.nixle.com/city/ca/alameda/", + "checked_at": "2026-09-13T19:16:09.027020+00:00", + "channels": [] + }, + { + "id": "162:0600884", + "directory": "https://local.nixle.com/city/ca/alhambra/", + "checked_at": "2026-09-13T19:16:09.027881+00:00", + "channels": [] + }, + { + "id": "162:0602000", + "directory": "https://local.nixle.com/city/ca/anaheim/", + "checked_at": "2026-09-13T19:16:09.028116+00:00", + "channels": [] + }, + { + "id": "162:0602252", + "directory": "https://local.nixle.com/city/ca/antioch/", + "checked_at": "2026-09-13T19:16:09.028306+00:00", + "channels": [] + }, + { + "id": "162:0602364", + "directory": "https://local.nixle.com/city/ca/apple-valley/", + "checked_at": "2026-09-13T19:16:09.962465+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/sbsd---apple-valley-police-department/", + "title": "SBSD - Apple Valley Police Department", + "evidence_url": "https://local.nixle.com/city/ca/apple-valley/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0602462", + "directory": "https://local.nixle.com/city/ca/arcadia/", + "checked_at": "2026-09-13T19:16:10.726996+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/arcadia-police-department/", + "title": "Arcadia Police Department", + "evidence_url": "https://local.nixle.com/city/ca/arcadia/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0603526", + "directory": "https://local.nixle.com/city/ca/bakersfield/", + "checked_at": "2026-09-13T19:16:11.551535+00:00", + "channels": [] + }, + { + "id": "162:0603666", + "directory": "https://local.nixle.com/city/ca/baldwin-park/", + "checked_at": "2026-09-13T19:16:12.302207+00:00", + "channels": [] + }, + { + "id": "162:0604758", + "directory": "https://local.nixle.com/city/ca/beaumont/", + "checked_at": "2026-09-13T19:16:13.040591+00:00", + "channels": [] + }, + { + "id": "162:0604982", + "directory": "https://local.nixle.com/city/ca/bellflower/", + "checked_at": "2026-09-13T19:16:13.743925+00:00", + "channels": [] + }, + { + "id": "162:0606000", + "directory": "https://local.nixle.com/city/ca/berkeley/", + "checked_at": "2026-09-13T19:16:14.558109+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/berkeley-police-department/", + "title": "Berkeley Police Department", + "evidence_url": "https://local.nixle.com/city/ca/berkeley/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0608142", + "directory": "https://local.nixle.com/city/ca/brentwood/", + "checked_at": "2026-09-13T19:16:15.287125+00:00", + "channels": [] + }, + { + "id": "162:0608786", + "directory": "https://local.nixle.com/city/ca/buena-park/", + "checked_at": "2026-09-13T19:16:16.046165+00:00", + "channels": [] + }, + { + "id": "162:0608954", + "directory": "https://local.nixle.com/city/ca/burbank/", + "checked_at": "2026-09-13T19:16:16.748595+00:00", + "channels": [] + }, + { + "id": "162:0610046", + "directory": "https://local.nixle.com/city/ca/camarillo/", + "checked_at": "2026-09-13T19:16:17.497698+00:00", + "channels": [] + }, + { + "id": "162:0611194", + "directory": "https://local.nixle.com/city/ca/carlsbad/", + "checked_at": "2026-09-13T19:16:18.181450+00:00", + "channels": [] + }, + { + "id": "162:0611530", + "directory": "https://local.nixle.com/city/ca/carson/", + "checked_at": "2026-09-13T19:16:18.919857+00:00", + "channels": [] + }, + { + "id": "162:0612048", + "directory": "https://local.nixle.com/city/ca/cathedral-city/", + "checked_at": "2026-09-13T19:16:19.652117+00:00", + "channels": [] + }, + { + "id": "162:0613014", + "directory": "https://local.nixle.com/city/ca/chico/", + "checked_at": "2026-09-13T19:16:20.402049+00:00", + "channels": [] + }, + { + "id": "162:0613210", + "directory": "https://local.nixle.com/city/ca/chino/", + "checked_at": "2026-09-13T19:16:21.132326+00:00", + "channels": [] + }, + { + "id": "162:0613214", + "directory": "https://local.nixle.com/city/ca/chino-hills/", + "checked_at": "2026-09-13T19:16:21.891638+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/sbsd---chino-hills-police-department/", + "title": "SBSD - Chino Hills Police Department", + "evidence_url": "https://local.nixle.com/city/ca/chino-hills/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0613392", + "directory": "https://local.nixle.com/city/ca/chula-vista/", + "checked_at": "2026-09-13T19:16:22.640542+00:00", + "channels": [] + }, + { + "id": "162:0613588", + "directory": "https://local.nixle.com/city/ca/citrus-heights/", + "checked_at": "2026-09-13T19:16:23.341305+00:00", + "channels": [] + }, + { + "id": "162:0614218", + "directory": "https://local.nixle.com/city/ca/clovis/", + "checked_at": "2026-09-13T19:16:24.083355+00:00", + "channels": [] + }, + { + "id": "162:0614890", + "directory": "https://local.nixle.com/city/ca/colton/", + "checked_at": "2026-09-13T19:16:24.808761+00:00", + "channels": [] + }, + { + "id": "162:0615044", + "directory": "https://local.nixle.com/city/ca/compton/", + "checked_at": "2026-09-13T19:16:25.573338+00:00", + "channels": [] + }, + { + "id": "162:0616000", + "directory": "https://local.nixle.com/city/ca/concord/", + "checked_at": "2026-09-13T19:16:26.242044+00:00", + "channels": [] + }, + { + "id": "162:0616350", + "directory": "https://local.nixle.com/city/ca/corona/", + "checked_at": "2026-09-13T19:16:27.019187+00:00", + "channels": [] + }, + { + "id": "162:0616532", + "directory": "https://local.nixle.com/city/ca/costa-mesa/", + "checked_at": "2026-09-13T19:16:27.812869+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/costa-mesa-police-department/", + "title": "Costa Mesa Police Department", + "evidence_url": "https://local.nixle.com/city/ca/costa-mesa/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0617610", + "directory": "https://local.nixle.com/city/ca/cupertino/", + "checked_at": "2026-09-13T19:16:28.553817+00:00", + "channels": [] + }, + { + "id": "162:0617918", + "directory": "https://local.nixle.com/city/ca/daly-city/", + "checked_at": "2026-09-13T19:16:29.272757+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/daly-city-police-department/", + "title": "Daly City Police Department", + "evidence_url": "https://local.nixle.com/city/ca/daly-city/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0618100", + "directory": "https://local.nixle.com/city/ca/davis/", + "checked_at": "2026-09-13T19:16:30.015473+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/city-of-davis-police/", + "title": "City of Davis Police", + "evidence_url": "https://local.nixle.com/city/ca/davis/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0618394", + "directory": "https://local.nixle.com/city/ca/delano/", + "checked_at": "2026-09-13T19:16:30.743093+00:00", + "channels": [] + }, + { + "id": "162:0619192", + "directory": "https://local.nixle.com/city/ca/diamond-bar/", + "checked_at": "2026-09-13T19:16:31.518632+00:00", + "channels": [] + }, + { + "id": "162:0619766", + "directory": "https://local.nixle.com/city/ca/downey/", + "checked_at": "2026-09-13T19:16:32.246367+00:00", + "channels": [] + }, + { + "id": "162:0620018", + "directory": "https://local.nixle.com/city/ca/dublin/", + "checked_at": "2026-09-13T19:16:33.007530+00:00", + "channels": [] + }, + { + "id": "162:0621230", + "directory": "https://local.nixle.com/city/ca/eastvale/", + "checked_at": "2026-09-13T19:16:33.729893+00:00", + "channels": [] + }, + { + "id": "162:0621712", + "directory": "https://local.nixle.com/city/ca/el-cajon/", + "checked_at": "2026-09-13T19:16:34.441585+00:00", + "channels": [] + }, + { + "id": "162:0622230", + "directory": "https://local.nixle.com/city/ca/el-monte/", + "checked_at": "2026-09-13T19:16:35.207424+00:00", + "channels": [] + }, + { + "id": "162:0622020", + "directory": "https://local.nixle.com/city/ca/elk-grove/", + "checked_at": "2026-09-13T19:16:35.908707+00:00", + "channels": [] + }, + { + "id": "162:0622678", + "directory": "https://local.nixle.com/city/ca/encinitas/", + "checked_at": "2026-09-13T19:16:36.627799+00:00", + "channels": [] + }, + { + "id": "162:0622804", + "directory": "https://local.nixle.com/city/ca/escondido/", + "checked_at": "2026-09-13T19:16:37.403569+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/escondido-police-department/", + "title": "Escondido Police Department", + "evidence_url": "https://local.nixle.com/city/ca/escondido/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0623182", + "directory": "https://local.nixle.com/city/ca/fairfield/", + "checked_at": "2026-09-13T19:16:38.140415+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/fairfield-ca-police-department/", + "title": "Fairfield, CA Police Department", + "evidence_url": "https://local.nixle.com/city/ca/fairfield/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0624638", + "directory": "https://local.nixle.com/city/ca/folsom/", + "checked_at": "2026-09-13T19:16:38.805219+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/folsom-police-department/", + "title": "Folsom Police Department", + "evidence_url": "https://local.nixle.com/city/ca/folsom/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0624680", + "directory": "https://local.nixle.com/city/ca/fontana/", + "checked_at": "2026-09-13T19:16:39.563918+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/sbsd---fontana-sheriffs-department/", + "title": "SBSD - Fontana Sheriff's Department", + "evidence_url": "https://local.nixle.com/city/ca/fontana/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0625380", + "directory": "https://local.nixle.com/city/ca/fountain-valley/", + "checked_at": "2026-09-13T19:16:40.341872+00:00", + "channels": [] + }, + { + "id": "162:0626000", + "directory": "https://local.nixle.com/city/ca/fremont/", + "checked_at": "2026-09-13T19:16:41.064206+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/fremont-police-department-ca/", + "title": "Fremont Police Department (CA)", + "evidence_url": "https://local.nixle.com/city/ca/fremont/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0627000", + "directory": "https://local.nixle.com/city/ca/fresno/", + "checked_at": "2026-09-13T19:16:41.789299+00:00", + "channels": [] + }, + { + "id": "162:0628000", + "directory": "https://local.nixle.com/city/ca/fullerton/", + "checked_at": "2026-09-13T19:16:42.519955+00:00", + "channels": [] + }, + { + "id": "162:0629000", + "directory": "https://local.nixle.com/city/ca/garden-grove/", + "checked_at": "2026-09-13T19:16:43.244168+00:00", + "channels": [] + }, + { + "id": "162:0628168", + "directory": "https://local.nixle.com/city/ca/gardena/", + "checked_at": "2026-09-13T19:16:44.024066+00:00", + "channels": [] + }, + { + "id": "162:0629504", + "directory": "https://local.nixle.com/city/ca/gilroy/", + "checked_at": "2026-09-13T19:16:44.785778+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/gilroy-police-department/", + "title": "Gilroy Police Department", + "evidence_url": "https://local.nixle.com/city/ca/gilroy/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0630000", + "directory": "https://local.nixle.com/city/ca/glendale/", + "checked_at": "2026-09-13T19:16:45.509475+00:00", + "channels": [] + }, + { + "id": "162:0631960", + "directory": "https://local.nixle.com/city/ca/hanford/", + "checked_at": "2026-09-13T19:16:46.245421+00:00", + "channels": [] + }, + { + "id": "162:0632548", + "directory": "https://local.nixle.com/city/ca/hawthorne/", + "checked_at": "2026-09-13T19:16:47.069884+00:00", + "channels": [] + }, + { + "id": "162:0633000", + "directory": "https://local.nixle.com/city/ca/hayward/", + "checked_at": "2026-09-13T19:16:47.844272+00:00", + "channels": [] + }, + { + "id": "162:0633182", + "directory": "https://local.nixle.com/city/ca/hemet/", + "checked_at": "2026-09-13T19:16:48.639151+00:00", + "channels": [] + }, + { + "id": "162:0633434", + "directory": "https://local.nixle.com/city/ca/hesperia/", + "checked_at": "2026-09-13T19:16:49.343997+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/sbsd---hesperia-police-department/", + "title": "SBSD - Hesperia Police Department", + "evidence_url": "https://local.nixle.com/city/ca/hesperia/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0633588", + "directory": "https://local.nixle.com/city/ca/highland/", + "checked_at": "2026-09-13T19:16:50.066137+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/sbsd---highland-police-department/", + "title": "SBSD - Highland Police Department", + "evidence_url": "https://local.nixle.com/city/ca/highland/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0636000", + "directory": "https://local.nixle.com/city/ca/huntington-beach/", + "checked_at": "2026-09-13T19:16:50.891588+00:00", + "channels": [] + }, + { + "id": "162:0636056", + "directory": "https://local.nixle.com/city/ca/huntington-park/", + "checked_at": "2026-09-13T19:16:51.607753+00:00", + "channels": [] + }, + { + "id": "162:0636448", + "directory": "https://local.nixle.com/city/ca/indio/", + "checked_at": "2026-09-13T19:16:52.379763+00:00", + "channels": [] + }, + { + "id": "162:0636546", + "directory": "https://local.nixle.com/city/ca/inglewood/", + "checked_at": "2026-09-13T19:16:53.117204+00:00", + "channels": [] + }, + { + "id": "162:0636770", + "directory": "https://local.nixle.com/city/ca/irvine/", + "checked_at": "2026-09-13T19:16:53.832633+00:00", + "channels": [] + }, + { + "id": "162:0637692", + "directory": "https://local.nixle.com/city/ca/jurupa-valley/", + "checked_at": "2026-09-13T19:16:54.545463+00:00", + "channels": [] + }, + { + "id": "162:0639290", + "directory": "https://local.nixle.com/city/ca/la-habra/", + "checked_at": "2026-09-13T19:16:55.237609+00:00", + "channels": [] + }, + { + "id": "162:0640004", + "directory": "https://local.nixle.com/city/ca/la-mesa/", + "checked_at": "2026-09-13T19:16:56.004793+00:00", + "channels": [] + }, + { + "id": "162:0639248", + "directory": "https://local.nixle.com/city/ca/laguna-niguel/", + "checked_at": "2026-09-13T19:16:56.758981+00:00", + "channels": [] + }, + { + "id": "162:0639486", + "directory": "https://local.nixle.com/city/ca/lake-elsinore/", + "checked_at": "2026-09-13T19:16:57.453990+00:00", + "channels": [] + }, + { + "id": "162:0639496", + "directory": "https://local.nixle.com/city/ca/lake-forest/", + "checked_at": "2026-09-13T19:16:58.229068+00:00", + "channels": [] + }, + { + "id": "162:0639892", + "directory": "https://local.nixle.com/city/ca/lakewood/", + "checked_at": "2026-09-13T19:16:58.980618+00:00", + "channels": [] + }, + { + "id": "162:0640130", + "directory": "https://local.nixle.com/city/ca/lancaster/", + "checked_at": "2026-09-13T19:16:59.717852+00:00", + "channels": [] + }, + { + "id": "162:0641474", + "directory": "https://local.nixle.com/city/ca/lincoln/", + "checked_at": "2026-09-13T19:17:00.417431+00:00", + "channels": [] + }, + { + "id": "162:0641992", + "directory": "https://local.nixle.com/city/ca/livermore/", + "checked_at": "2026-09-13T19:17:01.143148+00:00", + "channels": [] + }, + { + "id": "162:0642202", + "directory": "https://local.nixle.com/city/ca/lodi/", + "checked_at": "2026-09-13T19:17:01.895771+00:00", + "channels": [] + }, + { + "id": "162:0643000", + "directory": "https://local.nixle.com/city/ca/long-beach/", + "checked_at": "2026-09-13T19:17:02.685881+00:00", + "channels": [] + }, + { + "id": "162:0644000", + "directory": "https://local.nixle.com/city/ca/los-angeles/", + "checked_at": "2026-09-13T19:17:03.361751+00:00", + "channels": [] + }, + { + "id": "162:0644574", + "directory": "https://local.nixle.com/city/ca/lynwood/", + "checked_at": "2026-09-13T19:17:04.076060+00:00", + "channels": [] + }, + { + "id": "162:0645022", + "directory": "https://local.nixle.com/city/ca/madera/", + "checked_at": "2026-09-13T19:17:04.781662+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/madera-police-department/", + "title": "Madera Police Department", + "evidence_url": "https://local.nixle.com/city/ca/madera/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0645484", + "directory": "https://local.nixle.com/city/ca/manteca/", + "checked_at": "2026-09-13T19:17:05.610373+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/manteca-police-department/", + "title": "Manteca Police Department", + "evidence_url": "https://local.nixle.com/city/ca/manteca/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0646842", + "directory": "https://local.nixle.com/city/ca/menifee/", + "checked_at": "2026-09-13T19:17:06.610598+00:00", + "channels": [] + }, + { + "id": "162:0646898", + "directory": "https://local.nixle.com/city/ca/merced/", + "checked_at": "2026-09-13T19:17:07.346221+00:00", + "channels": [] + }, + { + "id": "162:0647766", + "directory": "https://local.nixle.com/city/ca/milpitas/", + "checked_at": "2026-09-13T19:17:08.083123+00:00", + "channels": [] + }, + { + "id": "162:0648256", + "directory": "https://local.nixle.com/city/ca/mission-viejo/", + "checked_at": "2026-09-13T19:17:08.820588+00:00", + "channels": [] + }, + { + "id": "162:0648354", + "directory": "https://local.nixle.com/city/ca/modesto/", + "checked_at": "2026-09-13T19:17:09.497266+00:00", + "channels": [] + }, + { + "id": "162:0648816", + "directory": "https://local.nixle.com/city/ca/montebello/", + "checked_at": "2026-09-13T19:17:10.214611+00:00", + "channels": [] + }, + { + "id": "162:0648914", + "directory": "https://local.nixle.com/city/ca/monterey-park/", + "checked_at": "2026-09-13T19:17:10.970619+00:00", + "channels": [] + }, + { + "id": "162:0649270", + "directory": "https://local.nixle.com/city/ca/moreno-valley/", + "checked_at": "2026-09-13T19:17:11.661237+00:00", + "channels": [] + }, + { + "id": "162:0649670", + "directory": "https://local.nixle.com/city/ca/mountain-view/", + "checked_at": "2026-09-13T19:17:12.399510+00:00", + "channels": [] + }, + { + "id": "162:0650076", + "directory": "https://local.nixle.com/city/ca/murrieta/", + "checked_at": "2026-09-13T19:17:13.105401+00:00", + "channels": [] + }, + { + "id": "162:0650258", + "directory": "https://local.nixle.com/city/ca/napa/", + "checked_at": "2026-09-13T19:17:13.879221+00:00", + "channels": [] + }, + { + "id": "162:0650398", + "directory": "https://local.nixle.com/city/ca/national-city/", + "checked_at": "2026-09-13T19:17:14.564688+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/national-city-police-department/", + "title": "National City Police Department", + "evidence_url": "https://local.nixle.com/city/ca/national-city/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0651182", + "directory": "https://local.nixle.com/city/ca/newport-beach/", + "checked_at": "2026-09-13T19:17:15.220919+00:00", + "channels": [] + }, + { + "id": "162:0652526", + "directory": "https://local.nixle.com/city/ca/norwalk/", + "checked_at": "2026-09-13T19:17:15.890005+00:00", + "channels": [] + }, + { + "id": "162:0652582", + "directory": "https://local.nixle.com/city/ca/novato/", + "checked_at": "2026-09-13T19:17:16.622963+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/novato-police-ca/", + "title": "Novato Police, CA", + "evidence_url": "https://local.nixle.com/city/ca/novato/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0653000", + "directory": "https://local.nixle.com/city/ca/oakland/", + "checked_at": "2026-09-13T19:17:17.390038+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/oakland-police-department-ca/", + "title": "Oakland Police Department CA", + "evidence_url": "https://local.nixle.com/city/ca/oakland/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0653322", + "directory": "https://local.nixle.com/city/ca/oceanside/", + "checked_at": "2026-09-13T19:17:18.154818+00:00", + "channels": [] + }, + { + "id": "162:0653896", + "directory": "https://local.nixle.com/city/ca/ontario/", + "checked_at": "2026-09-13T19:17:18.868825+00:00", + "channels": [] + }, + { + "id": "162:0653980", + "directory": "https://local.nixle.com/city/ca/orange/", + "checked_at": "2026-09-13T19:17:19.612144+00:00", + "channels": [] + }, + { + "id": "162:0654652", + "directory": "https://local.nixle.com/city/ca/oxnard/", + "checked_at": "2026-09-13T19:17:20.377539+00:00", + "channels": [] + }, + { + "id": "162:0655184", + "directory": "https://local.nixle.com/city/ca/palm-desert/", + "checked_at": "2026-09-13T19:17:21.101667+00:00", + "channels": [] + }, + { + "id": "162:0655156", + "directory": "https://local.nixle.com/city/ca/palmdale/", + "checked_at": "2026-09-13T19:17:21.839072+00:00", + "channels": [] + }, + { + "id": "162:0655282", + "directory": "https://local.nixle.com/city/ca/palo-alto/", + "checked_at": "2026-09-13T19:17:22.563162+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/palo-alto-police-department/", + "title": "Palo Alto Police Department", + "evidence_url": "https://local.nixle.com/city/ca/palo-alto/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0655618", + "directory": "https://local.nixle.com/city/ca/paramount/", + "checked_at": "2026-09-13T19:17:23.314907+00:00", + "channels": [] + }, + { + "id": "162:0656000", + "directory": "https://local.nixle.com/city/ca/pasadena/", + "checked_at": "2026-09-13T19:17:24.017249+00:00", + "channels": [] + }, + { + "id": "162:0656700", + "directory": "https://local.nixle.com/city/ca/perris/", + "checked_at": "2026-09-13T19:17:24.874751+00:00", + "channels": [] + }, + { + "id": "162:0656784", + "directory": "https://local.nixle.com/city/ca/petaluma/", + "checked_at": "2026-09-13T19:17:25.427450+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/petaluma-police-department/", + "title": "Petaluma Police Department", + "evidence_url": "https://local.nixle.com/city/ca/petaluma/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0656924", + "directory": "https://local.nixle.com/city/ca/pico-rivera/", + "checked_at": "2026-09-13T19:17:26.159336+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/lasd---pico-rivera-station-los-angeles-county-sheriff/", + "title": "LASD - Pico Rivera Station, Los Angeles County Sheriff", + "evidence_url": "https://local.nixle.com/city/ca/pico-rivera/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0657456", + "directory": "https://local.nixle.com/city/ca/pittsburg/", + "checked_at": "2026-09-13T19:17:26.889205+00:00", + "channels": [] + }, + { + "id": "162:0657526", + "directory": "https://local.nixle.com/city/ca/placentia/", + "checked_at": "2026-09-13T19:17:27.568486+00:00", + "channels": [] + }, + { + "id": "162:0657792", + "directory": "https://local.nixle.com/city/ca/pleasanton/", + "checked_at": "2026-09-13T19:17:28.274818+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/pleasanton-police-department/", + "title": "Pleasanton Police Department", + "evidence_url": "https://local.nixle.com/city/ca/pleasanton/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0658072", + "directory": "https://local.nixle.com/city/ca/pomona/", + "checked_at": "2026-09-13T19:17:29.024972+00:00", + "channels": [] + }, + { + "id": "162:0658240", + "directory": "https://local.nixle.com/city/ca/porterville/", + "checked_at": "2026-09-13T19:17:29.741111+00:00", + "channels": [] + }, + { + "id": "162:0659444", + "directory": "https://local.nixle.com/city/ca/rancho-cordova/", + "checked_at": "2026-09-13T19:17:30.479406+00:00", + "channels": [] + }, + { + "id": "162:0659451", + "directory": "https://local.nixle.com/city/ca/rancho-cucamonga/", + "checked_at": "2026-09-13T19:17:31.156393+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/sbsd---rancho-cucamonga-police-department/", + "title": "SBSD - Rancho Cucamonga Police Department", + "evidence_url": "https://local.nixle.com/city/ca/rancho-cucamonga/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0659920", + "directory": "https://local.nixle.com/city/ca/redding/", + "checked_at": "2026-09-13T19:17:31.839885+00:00", + "channels": [] + }, + { + "id": "162:0659962", + "directory": "https://local.nixle.com/city/ca/redlands/", + "checked_at": "2026-09-13T19:17:32.559670+00:00", + "channels": [] + }, + { + "id": "162:0660018", + "directory": "https://local.nixle.com/city/ca/redondo-beach/", + "checked_at": "2026-09-13T19:17:33.272533+00:00", + "channels": [] + }, + { + "id": "162:0660102", + "directory": "https://local.nixle.com/city/ca/redwood-city/", + "checked_at": "2026-09-13T19:17:34.051363+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/redwood-city-police-department/", + "title": "Redwood City Police Department", + "evidence_url": "https://local.nixle.com/city/ca/redwood-city/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0660466", + "directory": "https://local.nixle.com/city/ca/rialto/", + "checked_at": "2026-09-13T19:17:34.762615+00:00", + "channels": [] + }, + { + "id": "162:0660620", + "directory": "https://local.nixle.com/city/ca/richmond/", + "checked_at": "2026-09-13T19:17:35.512008+00:00", + "channels": [] + }, + { + "id": "162:0662000", + "directory": "https://local.nixle.com/city/ca/riverside/", + "checked_at": "2026-09-13T19:17:36.210714+00:00", + "channels": [] + }, + { + "id": "162:0662364", + "directory": "https://local.nixle.com/city/ca/rocklin/", + "checked_at": "2026-09-13T19:17:36.973435+00:00", + "channels": [] + }, + { + "id": "162:0662938", + "directory": "https://local.nixle.com/city/ca/roseville/", + "checked_at": "2026-09-13T19:17:37.716206+00:00", + "channels": [] + }, + { + "id": "162:0664000", + "directory": "https://local.nixle.com/city/ca/sacramento/", + "checked_at": "2026-09-13T19:17:38.505826+00:00", + "channels": [] + }, + { + "id": "162:0664224", + "directory": "https://local.nixle.com/city/ca/salinas/", + "checked_at": "2026-09-13T19:17:39.292852+00:00", + "channels": [] + }, + { + "id": "162:0665000", + "directory": "https://local.nixle.com/city/ca/san-bernardino/", + "checked_at": "2026-09-13T19:17:39.976121+00:00", + "channels": [] + }, + { + "id": "162:0665042", + "directory": "https://local.nixle.com/city/ca/ventura/", + "checked_at": "2026-09-13T19:17:40.681195+00:00", + "channels": [] + }, + { + "id": "162:0665084", + "directory": "https://local.nixle.com/city/ca/san-clemente/", + "checked_at": "2026-09-13T19:17:41.413854+00:00", + "channels": [] + }, + { + "id": "162:0666000", + "directory": "https://local.nixle.com/city/ca/san-diego/", + "checked_at": "2026-09-13T19:17:42.103296+00:00", + "channels": [] + }, + { + "id": "162:0667000", + "directory": "https://local.nixle.com/city/ca/san-francisco/", + "checked_at": "2026-09-13T19:17:43.002412+00:00", + "channels": [] + }, + { + "id": "162:0667112", + "directory": "https://local.nixle.com/city/ca/san-jacinto/", + "checked_at": "2026-09-13T19:17:43.704346+00:00", + "channels": [] + }, + { + "id": "162:0668000", + "directory": "https://local.nixle.com/city/ca/san-jose/", + "checked_at": "2026-09-13T19:17:44.402611+00:00", + "channels": [] + }, + { + "id": "162:0668084", + "directory": "https://local.nixle.com/city/ca/san-leandro/", + "checked_at": "2026-09-13T19:17:45.211819+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/san-leandro-police-department/", + "title": "San Leandro Police Department", + "evidence_url": "https://local.nixle.com/city/ca/san-leandro/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0668154", + "directory": "https://local.nixle.com/city/ca/san-luis-obispo/", + "checked_at": "2026-09-13T19:17:45.986496+00:00", + "channels": [] + }, + { + "id": "162:0668196", + "directory": "https://local.nixle.com/city/ca/san-marcos/", + "checked_at": "2026-09-13T19:17:46.676413+00:00", + "channels": [] + }, + { + "id": "162:0668252", + "directory": "https://local.nixle.com/city/ca/san-mateo/", + "checked_at": "2026-09-13T19:17:47.646730+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/san-mateo-ca-police-department/", + "title": "San Mateo, CA Police Department", + "evidence_url": "https://local.nixle.com/city/ca/san-mateo/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0668364", + "directory": "https://local.nixle.com/city/ca/san-rafael/", + "checked_at": "2026-09-13T19:17:48.398216+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/san-rafael-police-department/", + "title": "San Rafael Police Department", + "evidence_url": "https://local.nixle.com/city/ca/san-rafael/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0668378", + "directory": "https://local.nixle.com/city/ca/san-ramon/", + "checked_at": "2026-09-13T19:17:49.117812+00:00", + "channels": [] + }, + { + "id": "162:0669000", + "directory": "https://local.nixle.com/city/ca/santa-ana/", + "checked_at": "2026-09-13T19:17:49.848821+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/santa-ana-police-department/", + "title": "Santa Ana Police Department", + "evidence_url": "https://local.nixle.com/city/ca/santa-ana/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0669070", + "directory": "https://local.nixle.com/city/ca/santa-barbara/", + "checked_at": "2026-09-13T19:17:50.653342+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/santa-barbara-police-department/", + "title": "Santa Barbara Police Department", + "evidence_url": "https://local.nixle.com/city/ca/santa-barbara/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0669084", + "directory": "https://local.nixle.com/city/ca/santa-clara/", + "checked_at": "2026-09-13T19:17:51.325575+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/santa-clara-police-department/", + "title": "Santa Clara Police Department", + "evidence_url": "https://local.nixle.com/city/ca/santa-clara/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0669088", + "directory": "https://local.nixle.com/city/ca/santa-clarita/", + "checked_at": "2026-09-13T19:17:51.865194+00:00", + "channels": [] + }, + { + "id": "162:0669112", + "directory": "https://local.nixle.com/city/ca/santa-cruz/", + "checked_at": "2026-09-13T19:17:52.640558+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/santa-cruz-police-department/", + "title": "Santa Cruz Police Department", + "evidence_url": "https://local.nixle.com/city/ca/santa-cruz/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0669196", + "directory": "https://local.nixle.com/city/ca/santa-maria/", + "checked_at": "2026-09-13T19:17:53.378254+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/santa-maria-police-department/", + "title": "Santa Maria Police Department", + "evidence_url": "https://local.nixle.com/city/ca/santa-maria/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0670000", + "directory": "https://local.nixle.com/city/ca/santa-monica/", + "checked_at": "2026-09-13T19:17:54.090231+00:00", + "channels": [] + }, + { + "id": "162:0670098", + "directory": "https://local.nixle.com/city/ca/santa-rosa/", + "checked_at": "2026-09-13T19:17:54.822736+00:00", + "channels": [] + }, + { + "id": "162:0670224", + "directory": "https://local.nixle.com/city/ca/santee/", + "checked_at": "2026-09-13T19:17:55.540164+00:00", + "channels": [] + }, + { + "id": "162:0672016", + "directory": "https://local.nixle.com/city/ca/simi-valley/", + "checked_at": "2026-09-13T19:17:56.252154+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/simi-valley-police-department/", + "title": "Simi Valley Police Department", + "evidence_url": "https://local.nixle.com/city/ca/simi-valley/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0673080", + "directory": "https://local.nixle.com/city/ca/south-gate/", + "checked_at": "2026-09-13T19:17:57.055409+00:00", + "channels": [] + }, + { + "id": "162:0673262", + "directory": "https://local.nixle.com/city/ca/south-san-francisco/", + "checked_at": "2026-09-13T19:17:57.838204+00:00", + "channels": [] + }, + { + "id": "162:0675000", + "directory": "https://local.nixle.com/city/ca/stockton/", + "checked_at": "2026-09-13T19:17:58.521735+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/stockton-police-department-ca/", + "title": "Stockton Police Department, CA", + "evidence_url": "https://local.nixle.com/city/ca/stockton/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0677000", + "directory": "https://local.nixle.com/city/ca/sunnyvale/", + "checked_at": "2026-09-13T19:17:59.357602+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/sunnyvale-department-of-public-safety/", + "title": "Sunnyvale Department of Public Safety", + "evidence_url": "https://local.nixle.com/city/ca/sunnyvale/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0678120", + "directory": "https://local.nixle.com/city/ca/temecula/", + "checked_at": "2026-09-13T19:18:00.110440+00:00", + "channels": [] + }, + { + "id": "162:0678582", + "directory": "https://local.nixle.com/city/ca/thousand-oaks/", + "checked_at": "2026-09-13T19:18:00.828816+00:00", + "channels": [] + }, + { + "id": "162:0680000", + "directory": "https://local.nixle.com/city/ca/torrance/", + "checked_at": "2026-09-13T19:18:01.650796+00:00", + "channels": [] + }, + { + "id": "162:0680238", + "directory": "https://local.nixle.com/city/ca/tracy/", + "checked_at": "2026-09-13T19:18:02.387860+00:00", + "channels": [] + }, + { + "id": "162:0680644", + "directory": "https://local.nixle.com/city/ca/tulare/", + "checked_at": "2026-09-13T19:18:03.090324+00:00", + "channels": [] + }, + { + "id": "162:0680812", + "directory": "https://local.nixle.com/city/ca/turlock/", + "checked_at": "2026-09-13T19:18:03.781175+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/turlock-police-department-ca/", + "title": "Turlock Police Department, CA", + "evidence_url": "https://local.nixle.com/city/ca/turlock/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0680854", + "directory": "https://local.nixle.com/city/ca/tustin/", + "checked_at": "2026-09-13T19:18:04.594147+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/tustin-ca-police-department/", + "title": "Tustin, CA Police Department", + "evidence_url": "https://local.nixle.com/city/ca/tustin/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0681204", + "directory": "https://local.nixle.com/city/ca/union-city/", + "checked_at": "2026-09-13T19:18:05.290249+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/union-city-police-department-ca/", + "title": "Union City Police Department, CA", + "evidence_url": "https://local.nixle.com/city/ca/union-city/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0681344", + "directory": "https://local.nixle.com/city/ca/upland/", + "checked_at": "2026-09-13T19:18:06.080901+00:00", + "channels": [] + }, + { + "id": "162:0681554", + "directory": "https://local.nixle.com/city/ca/vacaville/", + "checked_at": "2026-09-13T19:18:06.782128+00:00", + "channels": [] + }, + { + "id": "162:0681666", + "directory": "https://local.nixle.com/city/ca/vallejo/", + "checked_at": "2026-09-13T19:18:07.528905+00:00", + "channels": [] + }, + { + "id": "162:0682590", + "directory": "https://local.nixle.com/city/ca/victorville/", + "checked_at": "2026-09-13T19:18:08.284543+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/sbsd---victorville-police-department/", + "title": "SBSD - Victorville Police Department", + "evidence_url": "https://local.nixle.com/city/ca/victorville/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + }, + { + "id": "162:0682954", + "directory": "https://local.nixle.com/city/ca/visalia/", + "checked_at": "2026-09-13T19:18:08.991794+00:00", + "channels": [] + }, + { + "id": "162:0682996", + "directory": "https://local.nixle.com/city/ca/vista/", + "checked_at": "2026-09-13T19:18:09.691959+00:00", + "channels": [] + }, + { + "id": "162:0683346", + "directory": "https://local.nixle.com/city/ca/walnut-creek/", + "checked_at": "2026-09-13T19:18:10.403117+00:00", + "channels": [] + }, + { + "id": "162:0683668", + "directory": "https://local.nixle.com/city/ca/watsonville/", + "checked_at": "2026-09-13T19:18:11.129473+00:00", + "channels": [] + }, + { + "id": "162:0684200", + "directory": "https://local.nixle.com/city/ca/west-covina/", + "checked_at": "2026-09-13T19:18:11.922793+00:00", + "channels": [] + }, + { + "id": "162:0684816", + "directory": "https://local.nixle.com/city/ca/west-sacramento/", + "checked_at": "2026-09-13T19:18:12.643578+00:00", + "channels": [] + }, + { + "id": "162:0684550", + "directory": "https://local.nixle.com/city/ca/westminster/", + "checked_at": "2026-09-13T19:18:13.448269+00:00", + "channels": [] + }, + { + "id": "162:0685292", + "directory": "https://local.nixle.com/city/ca/whittier/", + "checked_at": "2026-09-13T19:18:14.272858+00:00", + "channels": [] + }, + { + "id": "162:0686328", + "directory": "https://local.nixle.com/city/ca/woodland/", + "checked_at": "2026-09-13T19:18:15.028630+00:00", + "channels": [] + }, + { + "id": "162:0686832", + "directory": "https://local.nixle.com/city/ca/yorba-linda/", + "checked_at": "2026-09-13T19:18:15.764154+00:00", + "channels": [] + }, + { + "id": "162:0686972", + "directory": "https://local.nixle.com/city/ca/yuba-city/", + "checked_at": "2026-09-13T19:18:16.499408+00:00", + "channels": [] + }, + { + "id": "162:0687042", + "directory": "https://local.nixle.com/city/ca/yucaipa/", + "checked_at": "2026-09-13T19:18:17.250689+00:00", + "channels": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/sbsd---yucaipa-police-department/", + "title": "SBSD - Yucaipa Police Department", + "evidence_url": "https://local.nixle.com/city/ca/yucaipa/", + "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested" + } + ] + } +] diff --git a/docs/data/police-sources/summary.json b/docs/data/police-sources/summary.json new file mode 100644 index 0000000..0f7f365 --- /dev/null +++ b/docs/data/police-sources/summary.json @@ -0,0 +1,14 @@ +{ + "channels-found": 126, + "department-found": 51, + "unresolved": 0, + "pending": 0, + "places": 177, + "channels": 1715, + "reviewed_ingestion_cities": 39, + "state": "CA", + "population_min_exclusive": 50000, + "unique_channel_urls": 1702, + "local_governments_within_100km": 37, + "public_archives_or_feeds_with_items": 54 +} diff --git a/docs/data/police-sources/validation.json b/docs/data/police-sources/validation.json new file mode 100644 index 0000000..5f0572b --- /dev/null +++ b/docs/data/police-sources/validation.json @@ -0,0 +1,602 @@ +{ + "https://local.nixle.com/burbank-police-department-california/": { + "url": "https://local.nixle.com/burbank-police-department-california/", + "checked_at": "2026-09-13T19:03:09.455752+00:00", + "final_url": "https://local.nixle.com/burbank-police-department-california/", + "publisher": "Burbank Police Department, California", + "item_count": 20, + "newest_label": "Entered: 1 year, 3 months ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://hppolice.org/feed/": { + "url": "https://hppolice.org/feed/", + "checked_at": "2026-09-13T19:03:11.180894+00:00", + "final_url": "https://hppolice.org/feed/", + "publisher": "Huntington Park Police Department", + "item_count": 10, + "newest_label": "2023-11-15T07:35:48+00:00", + "access": "public-feed-with-items", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + }, + "https://hppolice.org/comments/feed/": { + "url": "https://hppolice.org/comments/feed/", + "checked_at": "2026-09-13T19:03:11.519133+00:00", + "final_url": "https://hppolice.org/comments/feed/", + "publisher": "\n\tComments for Huntington Park Police Department\t", + "item_count": 0, + "newest_label": null, + "access": "empty-public-feed", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + }, + "https://hppolice.org/category/news/feed/": { + "url": "https://hppolice.org/category/news/feed/", + "checked_at": "2026-09-13T19:03:11.814319+00:00", + "final_url": "https://hppolice.org/category/news/feed/", + "publisher": "News Archives - Huntington Park Police Department", + "item_count": 10, + "newest_label": "2023-11-15T07:35:48+00:00", + "access": "public-feed-with-items", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + }, + "https://local.nixle.com/city-of-la-mesa": { + "url": "https://local.nixle.com/city-of-la-mesa", + "checked_at": "2026-09-13T19:03:11.913961+00:00", + "final_url": "https://local.nixle.com/city-of-la-mesa", + "publisher": "City of La Mesa", + "item_count": 20, + "newest_label": "Entered: 2 days ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://newportbeachpolicehq.com/feed/": { + "url": "https://newportbeachpolicehq.com/feed/", + "checked_at": "2026-09-13T19:03:12.274555+00:00", + "final_url": "https://newportbeachpolicehq.com/feed/", + "publisher": "Newport Beach", + "item_count": 1, + "newest_label": "2026-06-29T18:08:49+00:00", + "access": "public-feed-with-items", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + }, + "https://newportbeachpolicehq.com/comments/feed/": { + "url": "https://newportbeachpolicehq.com/comments/feed/", + "checked_at": "2026-09-13T19:03:12.379602+00:00", + "final_url": "https://newportbeachpolicehq.com/comments/feed/", + "publisher": "\n\tComments for Newport Beach\t", + "item_count": 1, + "newest_label": "2026-06-29T18:08:49+00:00", + "access": "public-feed-with-items", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + }, + "https://local.nixle.com/palo-alto-police-department/": { + "url": "https://local.nixle.com/palo-alto-police-department/", + "checked_at": "2026-09-13T19:03:12.637970+00:00", + "final_url": "https://local.nixle.com/palo-alto-police-department/", + "publisher": "Palo Alto Police Department", + "item_count": 20, + "newest_label": "Entered: 1 week, 4 days ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://www.cityofpasadena.net/police/feed/": { + "url": "https://www.cityofpasadena.net/police/feed/", + "checked_at": "2026-09-13T19:03:12.743735+00:00", + "final_url": "https://www.cityofpasadena.net/police/feed/", + "publisher": "Police Department", + "item_count": 10, + "newest_label": "2026-09-11T18:59:07+00:00", + "access": "public-feed-with-items", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + }, + "https://www.cityofpasadena.net/police/news/feed/": { + "url": "https://www.cityofpasadena.net/police/news/feed/", + "checked_at": "2026-09-13T19:03:13.380550+00:00", + "final_url": "https://www.cityofpasadena.net/police/news/feed/", + "publisher": "News - Police Department", + "item_count": 10, + "newest_label": "2026-09-11T18:59:07+00:00", + "access": "public-feed-with-items", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + }, + "https://www.redlands.gov/police-appointments/feed/": { + "url": "https://www.redlands.gov/police-appointments/feed/", + "checked_at": "2026-09-13T19:03:13.404332+00:00", + "final_url": "https://www.redlands.gov/police-appointments/feed/", + "publisher": "\n\tComments on: Police Appointments\t", + "item_count": 0, + "newest_label": null, + "access": "empty-public-feed", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + }, + "https://www.redlands.gov/public-safety/feed/": { + "url": "https://www.redlands.gov/public-safety/feed/", + "checked_at": "2026-09-13T19:03:14.003346+00:00", + "final_url": "https://www.redlands.gov/public-safety/feed/", + "publisher": "\n\tComments on: Public Safety\t", + "item_count": 0, + "newest_label": null, + "access": "empty-public-feed", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + }, + "https://police.salinas.gov/feed/": { + "url": "https://police.salinas.gov/feed/", + "checked_at": "2026-09-13T19:03:14.043058+00:00", + "final_url": "https://police.salinas.gov/feed/", + "publisher": "Salinas Police Department", + "item_count": 10, + "newest_label": "2026-09-11T07:14:42+00:00", + "access": "public-feed-with-items", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + }, + "https://police.salinas.gov/comments/feed/": { + "url": "https://police.salinas.gov/comments/feed/", + "checked_at": "2026-09-13T19:03:14.058619+00:00", + "final_url": "https://police.salinas.gov/comments/feed/", + "publisher": "\n\tComments for Salinas Police Department\t", + "item_count": 0, + "newest_label": null, + "access": "empty-public-feed", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + }, + "https://local.nixle.com/san-mateo-ca-police-department/": { + "url": "https://local.nixle.com/san-mateo-ca-police-department/", + "checked_at": "2026-09-13T19:03:15.256613+00:00", + "final_url": "https://local.nixle.com/san-mateo-ca-police-department/", + "publisher": "San Mateo, CA Police Department", + "item_count": 20, + "newest_label": "Entered: 2 days ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://southgatepd.com/feed/": { + "url": "https://southgatepd.com/feed/", + "checked_at": "2026-09-13T19:03:16.038122+00:00", + "final_url": "https://southgatepd.com/feed/", + "publisher": "South Gate Police Department", + "item_count": 3, + "newest_label": "2025-12-08T16:32:57+00:00", + "access": "public-feed-with-items", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + }, + "https://southgatepd.com/comments/feed/": { + "url": "https://southgatepd.com/comments/feed/", + "checked_at": "2026-09-13T19:03:16.442503+00:00", + "final_url": "https://southgatepd.com/comments/feed/", + "publisher": "\n\tComments for South Gate Police Department\t", + "item_count": 0, + "newest_label": null, + "access": "empty-public-feed", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + }, + "https://tracypd.com/feed": { + "url": "https://tracypd.com/feed", + "checked_at": "2026-09-13T19:03:17.149087+00:00", + "final_url": "https://tracypd.com/feed", + "publisher": "Tracy Police Department", + "item_count": 10, + "newest_label": "2026-09-12T17:21:04+00:00", + "access": "public-feed-with-items", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + }, + "https://tracypd.com/comments/feed": { + "url": "https://tracypd.com/comments/feed", + "checked_at": "2026-09-13T19:03:17.284093+00:00", + "final_url": "https://tracypd.com/comments/feed", + "publisher": "\n\tComments for Tracy Police Department\t", + "item_count": 0, + "newest_label": null, + "access": "empty-public-feed", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + }, + "https://local.nixle.com/turlock-police-department-ca/": { + "url": "https://local.nixle.com/turlock-police-department-ca/", + "checked_at": "2026-09-13T19:03:18.782038+00:00", + "final_url": "https://local.nixle.com/turlock-police-department-ca/", + "publisher": "Turlock Police Department, CA", + "item_count": 20, + "newest_label": "Entered: 3 days, 19 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/tustin-ca-police-department/": { + "url": "https://local.nixle.com/tustin-ca-police-department/", + "checked_at": "2026-09-13T19:03:19.297447+00:00", + "final_url": "https://local.nixle.com/tustin-ca-police-department/", + "publisher": "Tustin, CA Police Department", + "item_count": 20, + "newest_label": "Entered: 4 days, 23 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/sbsd---apple-valley-police-department/": { + "url": "https://local.nixle.com/sbsd---apple-valley-police-department/", + "checked_at": "2026-09-13T19:19:20.995088+00:00", + "final_url": "https://local.nixle.com/sbsd---apple-valley-police-department/", + "publisher": "SBSD - Apple Valley Police Department", + "item_count": 20, + "newest_label": "Entered: 1 day, 15 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/arcadia-police-department/": { + "url": "https://local.nixle.com/arcadia-police-department/", + "checked_at": "2026-09-13T19:19:20.996070+00:00", + "final_url": "https://local.nixle.com/arcadia-police-department/", + "publisher": "Arcadia Police Department", + "item_count": 20, + "newest_label": "Entered: 1 day, 21 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/berkeley-police-department/": { + "url": "https://local.nixle.com/berkeley-police-department/", + "checked_at": "2026-09-13T19:19:20.996292+00:00", + "final_url": "https://local.nixle.com/berkeley-police-department/", + "publisher": "Berkeley Police Department", + "item_count": 20, + "newest_label": "Entered: 19 hours, 19 minutes ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/sbsd---chino-hills-police-department/": { + "url": "https://local.nixle.com/sbsd---chino-hills-police-department/", + "checked_at": "2026-09-13T19:19:20.996513+00:00", + "final_url": "https://local.nixle.com/sbsd---chino-hills-police-department/", + "publisher": "SBSD - Chino Hills Police Department", + "item_count": 20, + "newest_label": "Entered: 5 days, 3 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/costa-mesa-police-department/": { + "url": "https://local.nixle.com/costa-mesa-police-department/", + "checked_at": "2026-09-13T19:19:20.996704+00:00", + "final_url": "https://local.nixle.com/costa-mesa-police-department/", + "publisher": "Costa Mesa Police Department", + "item_count": 20, + "newest_label": "Entered: 3 weeks, 4 days ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/daly-city-police-department/": { + "url": "https://local.nixle.com/daly-city-police-department/", + "checked_at": "2026-09-13T19:19:20.996874+00:00", + "final_url": "https://local.nixle.com/daly-city-police-department/", + "publisher": "Daly City Police Department", + "item_count": 20, + "newest_label": "Entered: 3 days, 1 hour ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/city-of-davis-police/": { + "url": "https://local.nixle.com/city-of-davis-police/", + "checked_at": "2026-09-13T19:19:20.997032+00:00", + "final_url": "https://local.nixle.com/city-of-davis-police/", + "publisher": "City of Davis Police", + "item_count": 20, + "newest_label": "Entered: 3 months ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/escondido-police-department/": { + "url": "https://local.nixle.com/escondido-police-department/", + "checked_at": "2026-09-13T19:19:20.997196+00:00", + "final_url": "https://local.nixle.com/escondido-police-department/", + "publisher": "Escondido Police Department", + "item_count": 20, + "newest_label": "Entered: 4 days, 23 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/fairfield-ca-police-department/": { + "url": "https://local.nixle.com/fairfield-ca-police-department/", + "checked_at": "2026-09-13T19:19:21.834007+00:00", + "final_url": "https://local.nixle.com/fairfield-ca-police-department/", + "publisher": "Fairfield, CA Police Department", + "item_count": 20, + "newest_label": "Entered: 2 days, 15 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/folsom-police-department/": { + "url": "https://local.nixle.com/folsom-police-department/", + "checked_at": "2026-09-13T19:19:22.532991+00:00", + "final_url": "https://local.nixle.com/folsom-police-department/", + "publisher": "Folsom Police Department", + "item_count": 20, + "newest_label": "Entered: 21 hours, 57 minutes ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/sbsd---fontana-sheriffs-department/": { + "url": "https://local.nixle.com/sbsd---fontana-sheriffs-department/", + "checked_at": "2026-09-13T19:19:23.248393+00:00", + "final_url": "https://local.nixle.com/sbsd---fontana-sheriffs-department/", + "publisher": "SBSD - Fontana Sheriff's Department", + "item_count": 20, + "newest_label": "Entered: 4 days ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/fremont-police-department-ca/": { + "url": "https://local.nixle.com/fremont-police-department-ca/", + "checked_at": "2026-09-13T19:19:23.950956+00:00", + "final_url": "https://local.nixle.com/fremont-police-department-ca/", + "publisher": "Fremont Police Department (CA)", + "item_count": 20, + "newest_label": "Entered: 1 day, 23 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/gilroy-police-department/": { + "url": "https://local.nixle.com/gilroy-police-department/", + "checked_at": "2026-09-13T19:19:24.727165+00:00", + "final_url": "https://local.nixle.com/gilroy-police-department/", + "publisher": "Gilroy Police Department", + "item_count": 20, + "newest_label": "Entered: 1 month ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/sbsd---hesperia-police-department/": { + "url": "https://local.nixle.com/sbsd---hesperia-police-department/", + "checked_at": "2026-09-13T19:19:25.523116+00:00", + "final_url": "https://local.nixle.com/sbsd---hesperia-police-department/", + "publisher": "SBSD - Hesperia Police Department", + "item_count": 20, + "newest_label": "Entered: 2 days, 23 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/sbsd---highland-police-department/": { + "url": "https://local.nixle.com/sbsd---highland-police-department/", + "checked_at": "2026-09-13T19:19:26.069527+00:00", + "final_url": "https://local.nixle.com/sbsd---highland-police-department/", + "publisher": "SBSD - Highland Police Department", + "item_count": 20, + "newest_label": "Entered: 1 week ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/madera-police-department/": { + "url": "https://local.nixle.com/madera-police-department/", + "checked_at": "2026-09-13T19:19:28.994066+00:00", + "final_url": "https://local.nixle.com/madera-police-department/", + "publisher": "Madera Police Department", + "item_count": 20, + "newest_label": "Entered: 2 months, 3 weeks ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/manteca-police-department/": { + "url": "https://local.nixle.com/manteca-police-department/", + "checked_at": "2026-09-13T19:19:29.844334+00:00", + "final_url": "https://local.nixle.com/manteca-police-department/", + "publisher": "Manteca Police Department", + "item_count": 20, + "newest_label": "Entered: 1 day, 12 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/national-city-police-department/": { + "url": "https://local.nixle.com/national-city-police-department/", + "checked_at": "2026-09-13T19:19:30.595688+00:00", + "final_url": "https://local.nixle.com/national-city-police-department/", + "publisher": "National City Police Department", + "item_count": 20, + "newest_label": "Entered: 3 weeks ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/novato-police-ca/": { + "url": "https://local.nixle.com/novato-police-ca/", + "checked_at": "2026-09-13T19:19:31.345058+00:00", + "final_url": "https://local.nixle.com/novato-police-ca/", + "publisher": "Novato Police, CA", + "item_count": 20, + "newest_label": "Entered: 5 days, 1 hour ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/oakland-police-department-ca/": { + "url": "https://local.nixle.com/oakland-police-department-ca/", + "checked_at": "2026-09-13T19:19:32.125369+00:00", + "final_url": "https://local.nixle.com/oakland-police-department-ca/", + "publisher": "Oakland Police Department CA", + "item_count": 20, + "newest_label": "Entered: 2 days, 20 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/petaluma-police-department/": { + "url": "https://local.nixle.com/petaluma-police-department/", + "checked_at": "2026-09-13T19:19:33.043055+00:00", + "final_url": "https://local.nixle.com/petaluma-police-department/", + "publisher": "Petaluma Police Department", + "item_count": 20, + "newest_label": "Entered: 1 day, 22 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/lasd---pico-rivera-station-los-angeles-county-sheriff/": { + "url": "https://local.nixle.com/lasd---pico-rivera-station-los-angeles-county-sheriff/", + "checked_at": "2026-09-13T19:19:33.756297+00:00", + "final_url": "https://local.nixle.com/lasd---pico-rivera-station-los-angeles-county-sheriff/", + "publisher": "LASD - Pico Rivera Station, Los Angeles County Sheriff", + "item_count": 20, + "newest_label": "Entered: 2 days, 16 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/pleasanton-police-department/": { + "url": "https://local.nixle.com/pleasanton-police-department/", + "checked_at": "2026-09-13T19:19:34.560058+00:00", + "final_url": "https://local.nixle.com/pleasanton-police-department/", + "publisher": "Pleasanton Police Department", + "item_count": 20, + "newest_label": "Entered: 22 hours, 3 minutes ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/sbsd---rancho-cucamonga-police-department/": { + "url": "https://local.nixle.com/sbsd---rancho-cucamonga-police-department/", + "checked_at": "2026-09-13T19:19:35.321167+00:00", + "final_url": "https://local.nixle.com/sbsd---rancho-cucamonga-police-department/", + "publisher": "SBSD - Rancho Cucamonga Police Department", + "item_count": 20, + "newest_label": "Entered: 3 days, 4 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/redwood-city-police-department/": { + "url": "https://local.nixle.com/redwood-city-police-department/", + "checked_at": "2026-09-13T19:19:36.030761+00:00", + "final_url": "https://local.nixle.com/redwood-city-police-department/", + "publisher": "Redwood City Police Department", + "item_count": 20, + "newest_label": "Entered: 1 week, 1 day ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/san-leandro-police-department/": { + "url": "https://local.nixle.com/san-leandro-police-department/", + "checked_at": "2026-09-13T19:19:38.241109+00:00", + "final_url": "https://local.nixle.com/san-leandro-police-department/", + "publisher": "San Leandro Police Department", + "item_count": 20, + "newest_label": "Entered: 1 week, 3 days ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/san-rafael-police-department/": { + "url": "https://local.nixle.com/san-rafael-police-department/", + "checked_at": "2026-09-13T19:19:38.997997+00:00", + "final_url": "https://local.nixle.com/san-rafael-police-department/", + "publisher": "San Rafael Police Department", + "item_count": 20, + "newest_label": "Entered: 1 week, 5 days ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/santa-ana-police-department/": { + "url": "https://local.nixle.com/santa-ana-police-department/", + "checked_at": "2026-09-13T19:19:39.763966+00:00", + "final_url": "https://local.nixle.com/santa-ana-police-department/", + "publisher": "Santa Ana Police Department", + "item_count": 20, + "newest_label": "Entered: 10 months, 4 weeks ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/santa-barbara-police-department/": { + "url": "https://local.nixle.com/santa-barbara-police-department/", + "checked_at": "2026-09-13T19:19:40.449284+00:00", + "final_url": "https://local.nixle.com/santa-barbara-police-department/", + "publisher": "Santa Barbara Police Department", + "item_count": 20, + "newest_label": "Entered: 2 months, 2 weeks ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/santa-clara-police-department/": { + "url": "https://local.nixle.com/santa-clara-police-department/", + "checked_at": "2026-09-13T19:19:41.195739+00:00", + "final_url": "https://local.nixle.com/santa-clara-police-department/", + "publisher": "Santa Clara Police Department", + "item_count": 20, + "newest_label": "Entered: 4 days, 1 hour ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/santa-cruz-police-department/": { + "url": "https://local.nixle.com/santa-cruz-police-department/", + "checked_at": "2026-09-13T19:19:41.946535+00:00", + "final_url": "https://local.nixle.com/santa-cruz-police-department/", + "publisher": "Santa Cruz Police Department", + "item_count": 20, + "newest_label": "Entered: 3 years, 7 months ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/santa-maria-police-department/": { + "url": "https://local.nixle.com/santa-maria-police-department/", + "checked_at": "2026-09-13T19:19:42.716791+00:00", + "final_url": "https://local.nixle.com/santa-maria-police-department/", + "publisher": "Santa Maria Police Department", + "item_count": 20, + "newest_label": "Entered: 1 day, 3 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/simi-valley-police-department/": { + "url": "https://local.nixle.com/simi-valley-police-department/", + "checked_at": "2026-09-13T19:19:43.269924+00:00", + "final_url": "https://local.nixle.com/simi-valley-police-department/", + "publisher": "Simi Valley Police Department", + "item_count": 20, + "newest_label": "Entered: 5 days, 1 hour ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/stockton-police-department-ca/": { + "url": "https://local.nixle.com/stockton-police-department-ca/", + "checked_at": "2026-09-13T19:19:43.978293+00:00", + "final_url": "https://local.nixle.com/stockton-police-department-ca/", + "publisher": "Stockton Police Department, CA", + "item_count": 20, + "newest_label": "Entered: 7 hours, 38 minutes ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/sunnyvale-department-of-public-safety/": { + "url": "https://local.nixle.com/sunnyvale-department-of-public-safety/", + "checked_at": "2026-09-13T19:19:44.697291+00:00", + "final_url": "https://local.nixle.com/sunnyvale-department-of-public-safety/", + "publisher": "Sunnyvale Department of Public Safety", + "item_count": 20, + "newest_label": "Entered: 4 days, 23 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/union-city-police-department-ca/": { + "url": "https://local.nixle.com/union-city-police-department-ca/", + "checked_at": "2026-09-13T19:19:45.450035+00:00", + "final_url": "https://local.nixle.com/union-city-police-department-ca/", + "publisher": "Union City Police Department, CA", + "item_count": 20, + "newest_label": "Entered: 1 day, 19 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/sbsd---victorville-police-department/": { + "url": "https://local.nixle.com/sbsd---victorville-police-department/", + "checked_at": "2026-09-13T19:19:46.154934+00:00", + "final_url": "https://local.nixle.com/sbsd---victorville-police-department/", + "publisher": "SBSD - Victorville Police Department", + "item_count": 20, + "newest_label": "Entered: 1 hour, 34 minutes ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://local.nixle.com/sbsd---yucaipa-police-department/": { + "url": "https://local.nixle.com/sbsd---yucaipa-police-department/", + "checked_at": "2026-09-13T19:19:46.908258+00:00", + "final_url": "https://local.nixle.com/sbsd---yucaipa-police-department/", + "publisher": "SBSD - Yucaipa Police Department", + "item_count": 20, + "newest_label": "Entered: 2 days, 22 hours ago", + "access": "public-nixle-archive", + "ingestion": "HTML adapter required; publication dates are on individual alerts" + }, + "https://hemetpd.com/feed/": { + "url": "https://hemetpd.com/feed/", + "checked_at": "2026-09-13T19:22:30.700425+00:00", + "final_url": "https://hemetpd.com/feed", + "publisher": "Hemet Police Department", + "item_count": 10, + "newest_label": "2026-09-12T14:00:00+00:00", + "access": "public-feed-with-items", + "ingestion": "RSS/Atom parser; confirm police scope and classify announcements separately" + } +} diff --git a/docs/police-sources.md b/docs/police-sources.md new file mode 100644 index 0000000..97b5bd9 --- /dev/null +++ b/docs/police-sources.md @@ -0,0 +1,116 @@ +# California police announcements + +California is the first state. The catalogue contains all **177 incorporated cities +with more than 50,000 residents** in Census Vintage 2025; 76 exceed 100,000. +The 50,000 cutoff retains more local coverage without adding a paid data service. +Unincorporated Census-designated places are outside this municipal scope. + +**39 cities have reviewed ingestion sources: 35 Nixle archives and four RSS feeds.** +All 39 returned dated announcements in the live adapter check on September 13, 2026. +The remaining 138 cities have source leads, not working ingestion coverage from +this adapter. Existing Socrata crime sources remain separate. + +The crime collection links to `/c/crime/coverage`, a directory with city/account +search, 50,000 and 100,000 population filters, and a “Needs a feed” filter. +`/f/police-updates-ca` contains the new announcements. Each source has its own +status page and can be paused or assigned a different cadence. + +## Meaning of a record + +- Kind: `police-update`, separate from incident-level `crime-report` records. +- Content: a publisher's headline, a short summary and a link to the original. + Police feeds may include traffic advisories, outreach and other agency notices. +- Time: the publication date supplied by RSS or the individual Nixle alert. + Archive text such as “2 weeks ago” is never converted to today's date. A missing + timestamp stays unknown. Incident time is not inferred from publication time. +- Location: the publishing city's Census reference point, explicitly labelled + `location_precision: jurisdiction`. This supports the existing radius queries + without implying an exact incident address. The linked radius of 100 is in + **kilometers**. Agency headquarters addresses in Nixle footers are excluded. +- City police publishers are assigned to their municipal jurisdiction. Broad + county feeds and sheriff stations with uncertain service areas are references + only; they are not pinned to whichever city shares their name. + +Announcements do not enter the existing incident-only saved feeds or scanner +crime counts. The collection and item pages explain the location and time basis. + +## Polling and cost + +Default cadence is 60 minutes per city. No X API, social login, paid scraping +service, or paid geocoder is used. Social profiles remain direct reference links. +The adapter checks robots policy, has request timeouts, caps RSS results at 50 +and Nixle archive entries at 20, and limits detail fetches to the worker budget +with a maximum of 20 per run. It spaces detail requests by 500 milliseconds. + +After initial loading, each Nixle run reads robots, the archive and the newest +two alerts to catch corrections; unseen/changed alerts take precedence. Each +RSS run reads robots and its feed. With no new posts this is approximately 148 +requests an hour across the 39 sources, or 107,000 per 30 days. New posts and +initial loading add detail requests. This estimate excludes retries; hosting, +bandwidth and database costs depend on the deployment. There is no paid API +dependency in this implementation. + +IDs are stable and unchanged records keep their content hash. Failed detail +reads fail the source run and are retried; they are not recorded as processed. +An HTML login/challenge page is an error, rather than a successful empty feed. + +## Evidence and reproducibility + +The full discovery snapshot is in `docs/data/police-sources/`: + +- `inventory.json` and `channels.csv`: cities, populations, coordinates, source + candidates, provenance, access results and discovery errors. +- `index.html`: standalone searchable research directory, including the original + 100 km view around 37.243507, -121.942648. +- `indexed-searches.json`: additional web discovery results with original queries. +- `nixle-directories.json`: publisher links actually found in public city pages. +- `validation.json`: feed/archive format, item counts and latest date labels. + An archive with items can still be stale or belong to a different jurisdiction; + this count is not the number of live city feeds. +- `ingestion-check.json`: live adapter results for the explicitly enabled cities. + +`docs/data/police-ingestion-ca.json` is the explicit review list that enables +ingestion. Discovery never adds a feed to it automatically. The generated runtime +catalogue is `packages/adapters/src/police-sources-ca.json` and includes at most six +reference links per city. Sources without ingestion remain labelled as leads. + +Population source: +https://www2.census.gov/programs-surveys/popest/datasets/2020-2025/cities/totals/sub-est2025.csv + +Reference points: +https://www2.census.gov/geo/docs/maps-data/data/gazetteer/2025_Gazetteer/2025_Gaz_place_national.zip + +Government domain registry: +https://github.com/cisagov/dotgov-data + +Discovery also uses Wikidata FIPS-matched official-website leads and search +results; these are candidates, not independent proof of police ownership. +Blocked websites, empty calendars, stale feeds and social accounts are retained +as references where useful. In particular, an accessible feed on an unverified +domain is insufficient for activation. + +```sh +python3 scripts/discover-police-sources.py --state CA --min-population 50000 +python3 scripts/discover-police-nixle.py +python3 scripts/build-police-source-report.py --validate +# Review agency identity, jurisdiction, dates and access before editing the explicit list. +python3 scripts/build-police-catalogue.py +bun scripts/check-police-feeds.js +bunx biome check --write docs/data packages/adapters/src/police-sources-ca.json +python3 test/police-source-discovery.test.py +bun test test/police-updates.test.js test/geo.test.js +``` + +Discovery resumes existing results; use `--refresh` to repeat city website scans. +Feed validation and Nixle directory discovery resume their snapshots as well; +remove the particular validation/directory entry to recheck it. The live adapter +smoke check always makes fresh requests and writes no database records. + +For another state, discover into a separate directory with `--state XX --output +docs/data/police-sources-xx`. Review its city-specific publishers before adding a +runtime catalogue and seeds. Do not overwrite the California directory to add a +second state. The runtime builder currently accepts the CA/50,000 inventory only. + +Normal application startup seeds these 39 hourly sources and the saved feed +idempotently; no database migration is required. Deployment and worker operation +are required before the new sources appear on the public site. diff --git a/packages/adapters/src/index.js b/packages/adapters/src/index.js index 0dd58a2..d3597f1 100644 --- a/packages/adapters/src/index.js +++ b/packages/adapters/src/index.js @@ -91,6 +91,7 @@ import { p0dcasters } from './p0dcasters.js'; import { buildingPermits } from './permits.js'; import { podcastindexCatalog } from './podcastindex-catalog.js'; import { podcasts } from './podcasts.js'; +import { policeUpdates } from './police-updates.js'; import { proscanDirectory } from './proscan.js'; import { pypi } from './pypi.js'; import { redditDeals } from './redditdeals.js'; @@ -163,6 +164,7 @@ export const ADAPTERS = [ nasdaqHalts, ecbFxRates, socrataCrime, + policeUpdates, scannerDirectory, proscanDirectory, ukPoliceCrime, @@ -305,3 +307,5 @@ const byName = new Map(ADAPTERS.map((a) => [a.name, a])); export function adapterByName(name) { return byName.get(String(name)) ?? null; } + +export { POLICE_CITIES, POLICE_SCOPE } from './police-updates.js'; diff --git a/packages/adapters/src/police-sources-ca.json b/packages/adapters/src/police-sources-ca.json new file mode 100644 index 0000000..7ab0584 --- /dev/null +++ b/packages/adapters/src/police-sources-ca.json @@ -0,0 +1,6389 @@ +{ + "state": "CA", + "populationYear": 2025, + "minimumPopulation": 50000, + "populationSource": "https://www2.census.gov/programs-surveys/popest/datasets/2020-2025/cities/totals/sub-est2025.csv", + "cities": [ + { + "geoid": "0600562", + "name": "Alameda", + "state": "CA", + "slug": "alameda", + "population": 76876, + "lat": 37.741911, + "lon": -122.259914, + "ingestion": null, + "references": [ + { + "kind": "incident-log", + "url": "https://www.alamedaca.gov/files/assets/public/v/2/departments/alameda/police/hate-crime-log-public.xlsx.pdf", + "reviewed": false, + "evidenceUrl": "https://www.alamedaca.gov/Departments/Police-Department/Crime-Activity" + }, + { + "kind": "incident-log", + "url": "https://www.alamedaca.gov/files/assets/public/v/27/departments/alameda/police/hate-crime-stats/apd-hate-crime-log-2023-present-june-2026.pdf", + "reviewed": false, + "evidenceUrl": "https://www.alamedaca.gov/Departments/Police-Department/Crime-Activity" + }, + { + "kind": "incident-log", + "url": "https://alameda.citizenrims.com/map", + "reviewed": false, + "evidenceUrl": "https://www.alamedaca.gov/Departments/Police-Department/Crime-Activity" + }, + { + "kind": "newsroom", + "url": "https://www.alamedaca.gov/Shortcut-Content/News-Media/Alameda-Police-Month-in-Review-July-2026", + "reviewed": false, + "evidenceUrl": "https://www.alamedaca.gov/Shortcut-Content/News-Media" + }, + { + "kind": "newsroom", + "url": "https://www.alamedaca.gov/Shortcut-Content/News-Media/Proposed-Commercial-Zoning-Changes", + "reviewed": false, + "evidenceUrl": "https://www.alamedaca.gov/Shortcut-Content/News-Media" + }, + { + "kind": "newsroom", + "url": "https://www.alamedaca.gov/Shortcut-Content/News-Media/Oakland-Alameda-Water-Shuttle-Returns", + "reviewed": false, + "evidenceUrl": "https://www.alamedaca.gov/Shortcut-Content/News-Media" + } + ] + }, + { + "geoid": "0600884", + "name": "Alhambra", + "state": "CA", + "slug": "alhambra", + "population": 79820, + "lat": 34.083571, + "lon": -118.136444, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.alhambraca.gov/834/Police", + "reviewed": false, + "evidenceUrl": "https://www.alhambraca.gov/834/Police" + }, + { + "kind": "department-page", + "url": "https://www.cityofalhambra.org/834", + "reviewed": false, + "evidenceUrl": "https://www.cityofalhambra.org/834" + }, + { + "kind": "department-page", + "url": "https://alhambraca.gov/271/Crime-Statistics", + "reviewed": false, + "evidenceUrl": "https://alhambraca.gov/271/Crime-Statistics" + } + ] + }, + { + "geoid": "0602000", + "name": "Anaheim", + "state": "CA", + "slug": "anaheim", + "population": 341008, + "lat": 33.855502, + "lon": -117.758657, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://pd.anaheim.net/", + "reviewed": true, + "evidenceUrl": "https://pd.anaheim.net/" + } + ] + }, + { + "geoid": "0602252", + "name": "Antioch", + "state": "CA", + "slug": "antioch", + "population": 118958, + "lat": 37.978336, + "lon": -121.796064, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.antiochca.gov/186/Police-Department", + "reviewed": true, + "evidenceUrl": "https://www.antiochca.gov/186/Police-Department" + }, + { + "kind": "department-page", + "url": "https://www.antiochca.gov/police/contact-information/", + "reviewed": false, + "evidenceUrl": "https://www.antiochca.gov/police/contact-information/" + }, + { + "kind": "department-page", + "url": "https://www.antiochca.gov/446/Crime-Statistics", + "reviewed": false, + "evidenceUrl": "https://www.antiochca.gov/446/Crime-Statistics" + } + ] + }, + { + "geoid": "0602364", + "name": "Apple Valley", + "state": "CA", + "slug": "apple-valley", + "population": 75247, + "lat": 34.533376, + "lon": -117.210358, + "ingestion": { + "url": "https://local.nixle.com/sbsd---apple-valley-police-department/", + "format": "nixle", + "publisher": "SBSD - Apple Valley Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/apple-valley/", + "checkedAt": "2026-09-13T19:19:20.995088+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/sbsd---apple-valley-police-department/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/apple-valley/" + }, + { + "kind": "newsroom", + "url": "https://www.applevalley.org/services/police-department/police-news", + "reviewed": false, + "evidenceUrl": "https://www.applevalley.org/services/police-department/police-news" + }, + { + "kind": "department-page", + "url": "https://www.applevalleymn.gov/114/Police-Department", + "reviewed": false, + "evidenceUrl": "https://www.applevalleymn.gov/114/Police-Department" + } + ] + }, + { + "geoid": "0602462", + "name": "Arcadia", + "state": "CA", + "slug": "arcadia", + "population": 54117, + "lat": 34.132689, + "lon": -118.036347, + "ingestion": { + "url": "https://local.nixle.com/arcadia-police-department/", + "format": "nixle", + "publisher": "Arcadia Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/arcadia/", + "checkedAt": "2026-09-13T19:19:20.996070+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/arcadia-police-department/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/arcadia/" + }, + { + "kind": "department-page", + "url": "https://www.arcadiacapolice.gov/index.php", + "reviewed": false, + "evidenceUrl": "https://arcadiaca.gov/" + }, + { + "kind": "department-page", + "url": "https://www.arcadiacapolice.gov/about_us/index.php", + "reviewed": false, + "evidenceUrl": "https://arcadiaca.gov/" + }, + { + "kind": "department-page", + "url": "https://www.arcadiacapolice.gov/crime_trends/index.php", + "reviewed": false, + "evidenceUrl": "https://www.arcadiacapolice.gov/index.php" + }, + { + "kind": "department-page", + "url": "https://www.arcadiacapolice.gov/about_us/contact_us.php", + "reviewed": false, + "evidenceUrl": "https://www.arcadiacapolice.gov/about_us/contact_us.php" + }, + { + "kind": "department-page", + "url": "https://www.arcadiaca.gov/government/police/services/index.php", + "reviewed": false, + "evidenceUrl": "https://www.arcadiaca.gov/government/police/services/index.php" + } + ] + }, + { + "geoid": "0603526", + "name": "Bakersfield", + "state": "CA", + "slug": "bakersfield", + "population": 422165, + "lat": 35.353171, + "lon": -119.037919, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.gov.ca.gov/2024/04/30/chp-bakersfield-public-safety-2/", + "reviewed": false, + "evidenceUrl": "https://www.gov.ca.gov/2024/04/30/chp-bakersfield-public-safety-2/" + } + ] + }, + { + "geoid": "0603666", + "name": "Baldwin Park", + "state": "CA", + "slug": "baldwin-park", + "population": 68880, + "lat": 34.082824, + "lon": -117.971286, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.baldwinparkpolice.com/", + "reviewed": false, + "evidenceUrl": "https://www.baldwinpark.com/" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/BaldwinParkPD/", + "reviewed": false, + "evidenceUrl": "https://www.baldwinparkpolice.com/" + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/baldwinparkpd/", + "reviewed": false, + "evidenceUrl": "https://www.baldwinparkpolice.com/" + } + ] + }, + { + "geoid": "0604758", + "name": "Beaumont", + "state": "CA", + "slug": "beaumont", + "population": 60835, + "lat": 33.876722, + "lon": -116.953009, + "ingestion": null, + "references": [ + { + "kind": "incident-log", + "url": "https://beaumontpd.citizenrims.com", + "reviewed": false, + "evidenceUrl": "https://beaumontca.gov/1169/Crime" + }, + { + "kind": "incident-log", + "url": "https://beaumontpd.citizenrims.com/map", + "reviewed": false, + "evidenceUrl": "https://beaumontca.gov/1366/Police" + }, + { + "kind": "department-page", + "url": "https://beaumontca.gov/1366/Police", + "reviewed": false, + "evidenceUrl": "https://beaumontca.gov/" + }, + { + "kind": "department-page", + "url": "https://beaumontca.gov/1169/Crime", + "reviewed": false, + "evidenceUrl": "https://beaumontca.gov/1366/Police" + }, + { + "kind": "department-page", + "url": "https://beaumontca.gov/1196/Crime-Tips", + "reviewed": false, + "evidenceUrl": "https://beaumontca.gov/1366/Police" + }, + { + "kind": "department-page", + "url": "https://beaumontca.gov/1166/Transparency", + "reviewed": false, + "evidenceUrl": "https://beaumontca.gov/1366/Police" + } + ] + }, + { + "geoid": "0604982", + "name": "Bellflower", + "state": "CA", + "slug": "bellflower", + "population": 74719, + "lat": 33.887821, + "lon": -118.12725, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://origin.www.longbeach.gov/police/press-releases/at-risk-missing-person---juan-munoz/", + "reviewed": false, + "evidenceUrl": "https://origin.www.longbeach.gov/police/press-releases/at-risk-missing-person---juan-munoz/" + }, + { + "kind": "newsroom", + "url": "https://www.longbeach.gov/police/press-releases/traffic-fatality--2200-block-of-bellflower-boulevard/", + "reviewed": false, + "evidenceUrl": "https://www.longbeach.gov/police/press-releases/traffic-fatality--2200-block-of-bellflower-boulevard/" + }, + { + "kind": "department-page", + "url": "https://irvinepd.gov/2026/06/25/residential-burglary-crew-arrested-2/", + "reviewed": false, + "evidenceUrl": "https://irvinepd.gov/2026/06/25/residential-burglary-crew-arrested-2/" + } + ] + }, + { + "geoid": "0606000", + "name": "Berkeley", + "state": "CA", + "slug": "berkeley", + "population": 121911, + "lat": 37.865673, + "lon": -122.298725, + "ingestion": { + "url": "https://local.nixle.com/berkeley-police-department/", + "format": "nixle", + "publisher": "Berkeley Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/berkeley/", + "checkedAt": "2026-09-13T19:19:20.996292+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/berkeley-police-department/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/berkeley/" + }, + { + "kind": "department-page", + "url": "https://berkeleyca.gov/safety-health/police", + "reviewed": false, + "evidenceUrl": "https://berkeleyca.gov/" + }, + { + "kind": "department-page", + "url": "https://berkeleyca.gov/safety-health/police/report-crime", + "reviewed": false, + "evidenceUrl": "https://berkeleyca.gov/safety-health/police" + }, + { + "kind": "department-page", + "url": "https://berkeleyca.gov/safety-health/police-accountability", + "reviewed": false, + "evidenceUrl": "https://berkeleyca.gov/" + }, + { + "kind": "department-page", + "url": "https://berkeleyca.gov/community-recreation/news", + "reviewed": false, + "evidenceUrl": "https://berkeleyca.gov/safety-health/police" + } + ] + }, + { + "geoid": "0608142", + "name": "Brentwood", + "state": "CA", + "slug": "brentwood", + "population": 66607, + "lat": 37.935578, + "lon": -121.71897, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.brentwoodca.gov/government/police", + "reviewed": true, + "evidenceUrl": "https://www.brentwoodca.gov/government/police" + }, + { + "kind": "newsroom", + "url": "https://www.brentwoodca.gov/government/police/news", + "reviewed": false, + "evidenceUrl": "https://www.brentwoodca.gov/government/police/news" + }, + { + "kind": "department-page", + "url": "https://www.brentwoodca.gov/government/police/contact-us", + "reviewed": false, + "evidenceUrl": "https://www.brentwoodca.gov/government/police/contact-us" + } + ] + }, + { + "geoid": "0608786", + "name": "Buena Park", + "state": "CA", + "slug": "buena-park", + "population": 81741, + "lat": 33.857353, + "lon": -118.007373, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.oag.ca.gov/news/press-releases/california-department-justice-investigating-buena-park-police-department-officer", + "reviewed": false, + "evidenceUrl": "https://www.oag.ca.gov/news/press-releases/california-department-justice-investigating-buena-park-police-department-officer" + }, + { + "kind": "department-page", + "url": "https://www.ocsheriff.gov/occrimestoppers", + "reviewed": false, + "evidenceUrl": "https://www.ocsheriff.gov/occrimestoppers" + }, + { + "kind": "department-page", + "url": "https://oag.ca.gov/fingerprints/locations/buena-park-police-department", + "reviewed": false, + "evidenceUrl": "https://oag.ca.gov/fingerprints/locations/buena-park-police-department" + } + ] + }, + { + "geoid": "0608954", + "name": "Burbank", + "state": "CA", + "slug": "burbank", + "population": 102988, + "lat": 34.190079, + "lon": -118.326405, + "ingestion": null, + "references": [ + { + "kind": "x", + "url": "https://x.com/burbankpd", + "reviewed": false, + "evidenceUrl": "https://www.burbankca.gov/web/police-department" + }, + { + "kind": "incident-log", + "url": "https://www.burbankca.gov/web/police-department/news/-/police_newsdetail/20124/burbank-pd-community-bulletin-first-amendment-auditors", + "reviewed": false, + "evidenceUrl": "https://www.burbankca.gov/web/police-department/newsroom" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/newsroom", + "reviewed": false, + "evidenceUrl": "https://www.burbankca.gov/web/police-department" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/news/-/police_newsdetail/20124/burbank-pd-news-release-dui-checkpoint-results-3", + "reviewed": false, + "evidenceUrl": "https://www.burbankca.gov/web/police-department/newsroom" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/news/-/police_newsdetail/20124/burbank-pd-news-release-man-arrested-for-lewd-behavior", + "reviewed": false, + "evidenceUrl": "https://www.burbankca.gov/web/police-department/newsroom" + }, + { + "kind": "newsroom", + "url": "https://www.burbankca.gov/web/police-department/news/-/police_newsdetail/20124/burbank-police-news-release-man-arrested-for-lewd-behavior", + "reviewed": false, + "evidenceUrl": "https://www.burbankca.gov/web/police-department" + } + ] + }, + { + "geoid": "0610046", + "name": "Camarillo", + "state": "CA", + "slug": "camarillo", + "population": 68652, + "lat": 34.221823, + "lon": -119.032154, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://sheriff.venturacounty.gov/?p=9065", + "reviewed": false, + "evidenceUrl": "https://sheriff.venturacounty.gov/?p=9065" + }, + { + "kind": "department-page", + "url": "https://oag.ca.gov/fingerprints/locations/camarillo-police-department", + "reviewed": false, + "evidenceUrl": "https://oag.ca.gov/fingerprints/locations/camarillo-police-department" + } + ] + }, + { + "geoid": "0611194", + "name": "Carlsbad", + "state": "CA", + "slug": "carlsbad", + "population": 112260, + "lat": 33.129284, + "lon": -117.284183, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.carlsbadca.gov/Departments/police", + "reviewed": false, + "evidenceUrl": "https://www.carlsbadca.gov/Departments/police" + }, + { + "kind": "department-page", + "url": "https://www.carlsbadca.gov/departments/police/-npage-3", + "reviewed": false, + "evidenceUrl": "https://www.carlsbadca.gov/departments/police/-npage-3" + }, + { + "kind": "department-page", + "url": "https://www.carlsbadca.gov/departments/police/-npage-2", + "reviewed": false, + "evidenceUrl": "https://www.carlsbadca.gov/departments/police/-npage-2" + } + ] + }, + { + "geoid": "0611530", + "name": "Carson", + "state": "CA", + "slug": "carson", + "population": 90808, + "lat": 33.840367, + "lon": -118.249574, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.carsoncity.gov/government/departments-g-z/sheriff-s-office/crime-in-our-area", + "reviewed": false, + "evidenceUrl": "https://www.carsoncity.gov/government/departments-g-z/sheriff-s-office/crime-in-our-area" + }, + { + "kind": "department-page", + "url": "https://ci.carson.ca.us/CityManager/PublicSafety.aspx", + "reviewed": false, + "evidenceUrl": "https://ci.carson.ca.us/CityManager/PublicSafety.aspx" + } + ] + }, + { + "geoid": "0612048", + "name": "Cathedral City", + "state": "CA", + "slug": "cathedral-city", + "population": 52375, + "lat": 33.835487, + "lon": -116.463103, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.cathedralcity.gov/departments/police-department", + "reviewed": false, + "evidenceUrl": "https://www.cathedralcity.gov/departments/police-department" + }, + { + "kind": "department-page", + "url": "https://www.cathedralcity.gov/departments/police-department/services-operations", + "reviewed": false, + "evidenceUrl": "https://www.cathedralcity.gov/departments/police-department/services-operations" + }, + { + "kind": "department-page", + "url": "https://www.cathedralcity.gov/departments/police-department/online-services-reporting", + "reviewed": false, + "evidenceUrl": "https://www.cathedralcity.gov/departments/police-department/online-services-reporting" + } + ] + }, + { + "geoid": "0613014", + "name": "Chico", + "state": "CA", + "slug": "chico", + "population": 105081, + "lat": 39.758951, + "lon": -121.81772, + "ingestion": null, + "references": [ + { + "kind": "incident-log", + "url": "https://chicoca.gov/City-Services/Public-Safety/__catapult_pages/4ab3d961-5958-4376-b4c5-4fbadab060c9/Police-Department.html", + "reviewed": false, + "evidenceUrl": "https://chicoca.gov/City-Services/Public-Safety/index.html" + }, + { + "kind": "incident-log", + "url": "https://chicoca.gov/City-Services/Public-Safety/Fire-Department/__catapult_pages/4ab3d961-5958-4376-b4c5-4fbadab060c9/index.html", + "reviewed": false, + "evidenceUrl": "https://chicoca.gov/City-Services/Public-Safety/Fire-Department/index.html" + }, + { + "kind": "incident-log", + "url": "https://chicoca.gov/City-Services/Public-Safety/City-Services/Public-Safety/Police-Department/Police-Department-Online-Crime-Report/index.html", + "reviewed": false, + "evidenceUrl": "https://chicoca.gov/City-Services/Public-Safety/index.html" + }, + { + "kind": "incident-log", + "url": "https://chicoca.gov/City-Services/Public-Safety/__catapult_pages/1434a321-6462-4bc1-b275-f46a28f9cac5/Police-Department-Online-Crime-Report.html", + "reviewed": false, + "evidenceUrl": "https://chicoca.gov/City-Services/Public-Safety/index.html" + }, + { + "kind": "incident-log", + "url": "https://chicoca.gov/City-Services/Public-Safety/Fire-Department/City-Services/Public-Safety/Police-Department/Police-Department-Online-Crime-Report/index.html", + "reviewed": false, + "evidenceUrl": "https://chicoca.gov/City-Services/Public-Safety/Fire-Department/index.html" + }, + { + "kind": "newsroom", + "url": "https://chicoca.gov/City-Services/Public-Safety/Our-Community/Latest-News--Chico-TV/City-of-Chico-Press-Releases/index.html", + "reviewed": false, + "evidenceUrl": "https://chicoca.gov/City-Services/Public-Safety/index.html" + } + ] + }, + { + "geoid": "0613210", + "name": "Chino", + "state": "CA", + "slug": "chino", + "population": 96957, + "lat": 33.975627, + "lon": -117.667351, + "ingestion": null, + "references": [ + { + "kind": "x", + "url": "https://x.com/chinopolicedept", + "reviewed": false, + "evidenceUrl": "https://www.cityofchino.org/1740/Police" + }, + { + "kind": "department-page", + "url": "https://www.cityofchino.org/1740/Police", + "reviewed": false, + "evidenceUrl": "https://www.cityofchino.org/" + }, + { + "kind": "department-page", + "url": "https://www.cityofchino.org/1759/Transparency", + "reviewed": false, + "evidenceUrl": "https://www.cityofchino.org/1740/Police" + }, + { + "kind": "department-page", + "url": "https://www.cityofchino.org/276/Crime-Information", + "reviewed": false, + "evidenceUrl": "https://www.cityofchino.org/1740/Police" + }, + { + "kind": "department-page", + "url": "https://www.cityofchino.org/618/Chino-Newsletters", + "reviewed": false, + "evidenceUrl": "https://www.cityofchino.org/1740/Police" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/chinopolicedept/", + "reviewed": false, + "evidenceUrl": "https://www.cityofchino.org/1740/Police" + } + ] + }, + { + "geoid": "0613214", + "name": "Chino Hills", + "state": "CA", + "slug": "chino-hills", + "population": 77519, + "lat": 33.942969, + "lon": -117.725648, + "ingestion": { + "url": "https://local.nixle.com/sbsd---chino-hills-police-department/", + "format": "nixle", + "publisher": "SBSD - Chino Hills Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/chino-hills/", + "checkedAt": "2026-09-13T19:19:20.996513+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/sbsd---chino-hills-police-department/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/chino-hills/" + }, + { + "kind": "newsroom", + "url": "https://www.chinohills.org/Archive.asp?AMID=48", + "reviewed": false, + "evidenceUrl": "https://www.chinohills.org/rss.aspx" + }, + { + "kind": "newsroom", + "url": "https://www.chinohills.org/Archive.aspx?AMID=48", + "reviewed": false, + "evidenceUrl": "https://www.chinohills.org/1702/Transparency" + }, + { + "kind": "department-page", + "url": "https://www.chinohills.org/1702/Transparency", + "reviewed": false, + "evidenceUrl": "https://www.chinohills.org/Calendar.aspx?EID=8100" + }, + { + "kind": "department-page", + "url": "https://www.chinohills.org/Calendar.aspx?EID=8100", + "reviewed": false, + "evidenceUrl": "https://www.chinohills.org/" + } + ] + }, + { + "geoid": "0613392", + "name": "Chula Vista", + "state": "CA", + "slug": "chula-vista", + "population": 275533, + "lat": 32.62767, + "lon": -117.01517, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.chulavistaca.gov/departments/police-department/about-us/transparency-and-accountability/press-log", + "reviewed": false, + "evidenceUrl": "https://www.chulavistaca.gov/departments/police-department/about-us/transparency-and-accountability/press-log" + }, + { + "kind": "department-page", + "url": "https://www.chulavistaca.gov/departments/police-department", + "reviewed": false, + "evidenceUrl": "https://www.chulavistaca.gov/departments/police-department" + }, + { + "kind": "department-page", + "url": "https://www.chulavistaca.gov/departments/police-department/services", + "reviewed": false, + "evidenceUrl": "https://www.chulavistaca.gov/departments/police-department/services" + } + ] + }, + { + "geoid": "0613588", + "name": "Citrus Heights", + "state": "CA", + "slug": "citrus-heights", + "population": 86348, + "lat": 38.69481, + "lon": -121.287953, + "ingestion": null, + "references": [ + { + "kind": "x", + "url": "https://x.com/citrusheightspd", + "reviewed": false, + "evidenceUrl": "https://www.citrusheights.net/245/Online-Reporting" + }, + { + "kind": "incident-log", + "url": "https://www.citrusheights.net/DocumentCenter/View/29802/07272026---CHPD-Announces-New-Online-Crime-Reporting-System", + "reviewed": false, + "evidenceUrl": "https://www.citrusheights.net/1481/Media-Releases" + }, + { + "kind": "newsroom", + "url": "https://www.citrusheights.net/1481/Media-Releases", + "reviewed": false, + "evidenceUrl": "https://www.citrusheights.net/245/Online-Reporting" + }, + { + "kind": "department-page", + "url": "https://www.citrusheights.net/1254/Police-Department", + "reviewed": false, + "evidenceUrl": "https://www.citrusheights.net/" + }, + { + "kind": "department-page", + "url": "https://www.citrusheights.net/347/Incident-Logs", + "reviewed": false, + "evidenceUrl": "https://www.citrusheights.net/245/Online-Reporting" + }, + { + "kind": "department-page", + "url": "https://www.citrusheights.net/272/Internet-Crime", + "reviewed": false, + "evidenceUrl": "https://www.citrusheights.net/245/Online-Reporting" + } + ] + }, + { + "geoid": "0614218", + "name": "Clovis", + "state": "CA", + "slug": "clovis", + "population": 129347, + "lat": 36.827809, + "lon": -119.681843, + "ingestion": null, + "references": [ + { + "kind": "x", + "url": "https://x.com/clovispolice_ca", + "reviewed": false, + "evidenceUrl": "https://x.com/ClovisPolice_CA/with_replies" + }, + { + "kind": "nextdoor", + "url": "https://nextdoor.com/agency-detail/ca/clovis/clovis-police-department/", + "reviewed": false, + "evidenceUrl": "https://nextdoor.com/agency-detail/ca/clovis/clovis-police-department/" + }, + { + "kind": "nextdoor", + "url": "https://nextdoor.com/agency-post/ca/clovis/clovis-police-department/june-2026-spotlight-497232963/", + "reviewed": false, + "evidenceUrl": "https://nextdoor.com/agency-post/ca/clovis/clovis-police-department/june-2026-spotlight-497232963/" + } + ] + }, + { + "geoid": "0614890", + "name": "Colton", + "state": "CA", + "slug": "colton", + "population": 53383, + "lat": 34.054525, + "lon": -117.325029, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://police.coltonca.gov/news-releases/", + "reviewed": false, + "evidenceUrl": "https://police.coltonca.gov/news-releases/" + }, + { + "kind": "department-page", + "url": "https://police.coltonca.gov/", + "reviewed": false, + "evidenceUrl": "https://police.coltonca.gov/" + }, + { + "kind": "department-page", + "url": "https://police.coltonca.gov/records/", + "reviewed": false, + "evidenceUrl": "https://police.coltonca.gov/records/" + } + ] + }, + { + "geoid": "0615044", + "name": "Compton", + "state": "CA", + "slug": "compton", + "population": 90500, + "lat": 33.894047, + "lon": -118.227469, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.longbeach.gov/police/press-releases/at-risk-missing-person---charles-garner-iii/", + "reviewed": false, + "evidenceUrl": "https://www.longbeach.gov/police/press-releases/at-risk-missing-person---charles-garner-iii/" + }, + { + "kind": "department-page", + "url": "https://www.comptoncity.org/services/police-services", + "reviewed": false, + "evidenceUrl": "https://www.comptoncity.org/services/police-services" + } + ] + }, + { + "geoid": "0616000", + "name": "Concord", + "state": "CA", + "slug": "concord", + "population": 123261, + "lat": 37.972184, + "lon": -122.001587, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.cityofconcord.org/police", + "reviewed": false, + "evidenceUrl": "https://www.cityofconcord.org/police" + }, + { + "kind": "department-page", + "url": "https://www.cityofconcord.org/183/Police", + "reviewed": false, + "evidenceUrl": "https://www.cityofconcord.org/" + }, + { + "kind": "department-page", + "url": "https://www.cityofconcord.org/1136/Crime-Map", + "reviewed": false, + "evidenceUrl": "https://www.cityofconcord.org/183/Police" + }, + { + "kind": "department-page", + "url": "https://www.cityofconcord.org/830/Transparency-Portal", + "reviewed": false, + "evidenceUrl": "https://www.cityofconcord.org/183/Police" + }, + { + "kind": "department-page", + "url": "https://www.cityofconcord.org/248/Major-Crimes-Unit-MCU", + "reviewed": false, + "evidenceUrl": "https://www.cityofconcord.org/183/Police" + }, + { + "kind": "department-page", + "url": "https://www.cityofconcord.org/1063/Crime-and-Incident-Data", + "reviewed": false, + "evidenceUrl": "https://www.cityofconcord.org/1063/Crime-and-Incident-Data" + } + ] + }, + { + "geoid": "0616350", + "name": "Corona", + "state": "CA", + "slug": "corona", + "population": 161734, + "lat": 33.861969, + "lon": -117.565495, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.coronaca.gov/news/assault-with-a-deadly-weapon-suspect-shot-by-police-2", + "reviewed": false, + "evidenceUrl": "https://www.coronaca.gov/news" + }, + { + "kind": "newsroom", + "url": "https://www.coronaca.gov/news", + "reviewed": false, + "evidenceUrl": "https://www.coronaca.gov/departments/police" + }, + { + "kind": "newsroom", + "url": "https://www.coronaca.gov/news?category=Press+Releases", + "reviewed": false, + "evidenceUrl": "https://www.coronaca.gov/departments/police/permits" + }, + { + "kind": "newsroom", + "url": "https://www.coronaca.gov/news/fatal-traffic-collision-7", + "reviewed": false, + "evidenceUrl": "https://www.coronaca.gov/news" + }, + { + "kind": "department-page", + "url": "https://www.coronaca.gov/departments/police", + "reviewed": false, + "evidenceUrl": "https://www.coronaca.gov/" + }, + { + "kind": "department-page", + "url": "https://www.coronaca.gov/departments/police/permits", + "reviewed": false, + "evidenceUrl": "https://www.coronaca.gov/" + } + ] + }, + { + "geoid": "0616532", + "name": "Costa Mesa", + "state": "CA", + "slug": "costa-mesa", + "population": 108881, + "lat": 33.665905, + "lon": -117.912336, + "ingestion": { + "url": "https://local.nixle.com/costa-mesa-police-department/", + "format": "nixle", + "publisher": "Costa Mesa Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/costa-mesa/", + "checkedAt": "2026-09-13T19:19:20.996704+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/costa-mesa-police-department/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/costa-mesa/" + }, + { + "kind": "department-page", + "url": "https://www.costamesaca.gov/government/departments-and-divisions/police/police-information", + "reviewed": false, + "evidenceUrl": "https://www.costamesaca.gov/government/departments-and-divisions/police/police-information" + }, + { + "kind": "department-page", + "url": "https://www.costamesaca.gov/government/departments-and-divisions/police/police-information/crime-statistics", + "reviewed": false, + "evidenceUrl": "https://www.costamesaca.gov/government/departments-and-divisions/police/police-information/crime-statistics" + }, + { + "kind": "department-page", + "url": "https://www.costamesaca.gov/government/departments-and-divisions/police/department-divisions/administration/media-public-affairs", + "reviewed": false, + "evidenceUrl": "https://www.costamesaca.gov/government/departments-and-divisions/police/department-divisions/administration/media-public-affairs" + } + ] + }, + { + "geoid": "0617610", + "name": "Cupertino", + "state": "CA", + "slug": "cupertino", + "population": 58333, + "lat": 37.3194, + "lon": -122.044957, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://sheriff.santaclaracounty.gov/about-us/newsroom-press-releases", + "reviewed": true, + "evidenceUrl": "https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff" + }, + { + "kind": "incident-log", + "url": "https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff/Crime-Reports", + "reviewed": false, + "evidenceUrl": "https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff" + }, + { + "kind": "newsroom", + "url": "https://www.cupertino.gov/Your-City/News-and-Updates/Press-Release", + "reviewed": false, + "evidenceUrl": "https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff" + }, + { + "kind": "newsroom", + "url": "https://www.cupertino.gov/I-Want-To/View-City-Data/Citys-Press-Releases", + "reviewed": false, + "evidenceUrl": "https://www.cupertino.gov/Your-City/Divisions/Public-Safety/SCC-Sheriff" + }, + { + "kind": "newsroom", + "url": "https://www.cupertino.gov/Your-City/Divisions/Communications/Press-Releases", + "reviewed": false, + "evidenceUrl": "https://www.cupertino.gov/Your-City/Divisions/Communications/Cupertino-SCENE-Newsletter" + }, + { + "kind": "department-page", + "url": "https://www.cupertino.gov/Your-City/Divisions/Public-Safety", + "reviewed": false, + "evidenceUrl": "https://www.cupertino.gov/Home" + } + ] + }, + { + "geoid": "0617918", + "name": "Daly City", + "state": "CA", + "slug": "daly-city", + "population": 101261, + "lat": 37.701684, + "lon": -122.464968, + "ingestion": { + "url": "https://local.nixle.com/daly-city-police-department/", + "format": "nixle", + "publisher": "Daly City Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/daly-city/", + "checkedAt": "2026-09-13T19:19:20.996874+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/daly-city-police-department/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/daly-city/" + }, + { + "kind": "x", + "url": "https://x.com/dalycitypd", + "reviewed": false, + "evidenceUrl": "https://www.dalycity.org/1231/Police" + }, + { + "kind": "incident-log", + "url": "https://www.dalycity.org/906/Crime-Alert-Bulletins", + "reviewed": false, + "evidenceUrl": "https://www.dalycity.org/1231/Police" + }, + { + "kind": "department-page", + "url": "https://www.dalycity.org/1231/Police", + "reviewed": false, + "evidenceUrl": "https://www.dalycity.org/" + }, + { + "kind": "department-page", + "url": "https://www.dalycity.org/m/newsflash", + "reviewed": false, + "evidenceUrl": "https://www.dalycity.org/m/newsflash/home/detail/1014" + }, + { + "kind": "department-page", + "url": "https://www.dalycity.org/905/DCPD-Social-Media", + "reviewed": false, + "evidenceUrl": "https://www.dalycity.org/1231/Police" + } + ] + }, + { + "geoid": "0618100", + "name": "Davis", + "state": "CA", + "slug": "davis", + "population": 66110, + "lat": 38.556147, + "lon": -121.737793, + "ingestion": null, + "references": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/city-of-davis-police/", + "reviewed": false, + "evidenceUrl": "https://local.nixle.com/city/ca/davis/" + }, + { + "kind": "department-page", + "url": "https://www.cityofdavis.org/city-hall/police-department/", + "reviewed": false, + "evidenceUrl": "https://www.cityofdavis.org/city-hall/police-department/" + }, + { + "kind": "department-page", + "url": "https://www.cityofdavis.org/city-hall/police-department/contact-us-6030", + "reviewed": false, + "evidenceUrl": "https://www.cityofdavis.org/city-hall/police-department/contact-us-6030" + }, + { + "kind": "department-page", + "url": "https://www.cityofdavis.org/city-hall/police-department/online-crime-reporting", + "reviewed": false, + "evidenceUrl": "https://www.cityofdavis.org/city-hall/police-department/online-crime-reporting" + } + ] + }, + { + "geoid": "0618394", + "name": "Delano", + "state": "CA", + "slug": "delano", + "population": 52334, + "lat": 35.76643, + "lon": -119.264221, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.cityofdelano.org/105/Police-Department", + "reviewed": false, + "evidenceUrl": "https://www.cityofdelano.org/105/Police-Department" + }, + { + "kind": "department-page", + "url": "https://www.cityofdelano.org/708/Office-of-the-Chief-of-Police", + "reviewed": false, + "evidenceUrl": "https://www.cityofdelano.org/708/Office-of-the-Chief-of-Police" + } + ] + }, + { + "geoid": "0619192", + "name": "Diamond Bar", + "state": "CA", + "slug": "diamond-bar", + "population": 51884, + "lat": 34.001573, + "lon": -117.817601, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.diamondbarca.gov/189/Public-Safety", + "reviewed": false, + "evidenceUrl": "https://www.diamondbarca.gov/189/Public-Safety" + } + ] + }, + { + "geoid": "0619766", + "name": "Downey", + "state": "CA", + "slug": "downey", + "population": 108468, + "lat": 33.938237, + "lon": -118.130856, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.downeyca.org/our-city/departments/police/department-news", + "reviewed": false, + "evidenceUrl": "https://www.downeyca.org/our-city/departments/police/department-news" + }, + { + "kind": "department-page", + "url": "https://www.downeyca.org/our-city/departments/police/file-online-report", + "reviewed": false, + "evidenceUrl": "https://www.downeyca.org/our-city/departments/police/file-online-report" + }, + { + "kind": "department-page", + "url": "https://www.downeyca.org/our-city/departments/police/crime-prevention-and-safety", + "reviewed": false, + "evidenceUrl": "https://www.downeyca.org/our-city/departments/police/crime-prevention-and-safety" + } + ] + }, + { + "geoid": "0620018", + "name": "Dublin", + "state": "CA", + "slug": "dublin", + "population": 71602, + "lat": 37.716137, + "lon": -121.896229, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://dublin.ca.gov/130/Police-Events", + "reviewed": false, + "evidenceUrl": "https://dublin.ca.gov/130/Police-Events" + }, + { + "kind": "department-page", + "url": "https://www.dublin.ca.gov/2294/Police-Services", + "reviewed": false, + "evidenceUrl": "https://www.dublin.ca.gov/2294/Police-Services" + } + ] + }, + { + "geoid": "0621230", + "name": "Eastvale", + "state": "CA", + "slug": "eastvale", + "population": 70594, + "lat": 33.963274, + "lon": -117.582369, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.eastvaleca.gov/government/police-services", + "reviewed": false, + "evidenceUrl": "https://www.eastvaleca.gov/government/police-services" + }, + { + "kind": "department-page", + "url": "https://www.eastvaleca.gov/services/law-enforcement-services/crime-statistics", + "reviewed": false, + "evidenceUrl": "https://www.eastvaleca.gov/services/law-enforcement-services/crime-statistics" + } + ] + }, + { + "geoid": "0621712", + "name": "El Cajon", + "state": "CA", + "slug": "el-cajon", + "population": 101755, + "lat": 32.801673, + "lon": -116.960468, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.elcajon.gov/your-government/departments/police-department/information-you-may-need/police-department-news/happening-now", + "reviewed": false, + "evidenceUrl": "https://www.elcajon.gov/your-government/departments/police-department/information-you-may-need/police-department-news/happening-now" + }, + { + "kind": "newsroom", + "url": "https://www.elcajon.gov/your-government/departments/police-department/information-you-may-need/police-department-news/happening-now/-arch-1", + "reviewed": false, + "evidenceUrl": "https://www.elcajon.gov/your-government/departments/police-department/information-you-may-need/police-department-news/happening-now/-arch-1" + }, + { + "kind": "department-page", + "url": "https://www.elcajon.gov/your-government/departments/police", + "reviewed": false, + "evidenceUrl": "https://www.elcajon.gov/your-government/departments/police" + } + ] + }, + { + "geoid": "0622230", + "name": "El Monte", + "state": "CA", + "slug": "el-monte", + "population": 105075, + "lat": 34.074633, + "lon": -118.029136, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.elmonteca.gov/209/Police", + "reviewed": false, + "evidenceUrl": "https://www.elmonteca.gov/209/Police" + }, + { + "kind": "department-page", + "url": "https://www.elmonteca.gov/m/directory/department?did=13", + "reviewed": false, + "evidenceUrl": "https://www.elmonteca.gov/m/directory/department?did=13" + }, + { + "kind": "department-page", + "url": "https://www.ci.el-monte.ca.us/m/directory/department?did=13", + "reviewed": false, + "evidenceUrl": "https://www.ci.el-monte.ca.us/m/directory/department?did=13" + } + ] + }, + { + "geoid": "0622020", + "name": "Elk Grove", + "state": "CA", + "slug": "elk-grove", + "population": 185007, + "lat": 38.414621, + "lon": -121.384961, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://elkgrove.gov/police/safety-dashboard", + "reviewed": false, + "evidenceUrl": "https://elkgrove.gov/police/safety-dashboard" + }, + { + "kind": "department-page", + "url": "https://elkgrove.gov/police/emergencies-and-non-emergencies", + "reviewed": false, + "evidenceUrl": "https://elkgrove.gov/police/emergencies-and-non-emergencies" + }, + { + "kind": "department-page", + "url": "https://elkgrove.gov/departments-and-divisions/police-department", + "reviewed": false, + "evidenceUrl": "https://elkgrove.gov/departments-and-divisions/police-department" + } + ] + }, + { + "geoid": "0622678", + "name": "Encinitas", + "state": "CA", + "slug": "encinitas", + "population": 60736, + "lat": 33.050632, + "lon": -117.263616, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-npage-4", + "reviewed": false, + "evidenceUrl": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-npage-4" + }, + { + "kind": "newsroom", + "url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-npage-3/-arch-1", + "reviewed": false, + "evidenceUrl": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-npage-3/-arch-1" + }, + { + "kind": "department-page", + "url": "https://www.encinitasca.gov/government/departments/public-safety/sheriff-quarterly-presentation", + "reviewed": false, + "evidenceUrl": "https://www.encinitasca.gov/government/departments/public-safety/sheriff-quarterly-presentation" + } + ] + }, + { + "geoid": "0622804", + "name": "Escondido", + "state": "CA", + "slug": "escondido", + "population": 146030, + "lat": 33.133053, + "lon": -117.074043, + "ingestion": { + "url": "https://local.nixle.com/escondido-police-department/", + "format": "nixle", + "publisher": "Escondido Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/escondido/", + "checkedAt": "2026-09-13T19:19:20.997196+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/escondido-police-department/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/escondido/" + }, + { + "kind": "newsroom", + "url": "https://escondido.gov/m/newsflash/Home/Detail/301", + "reviewed": false, + "evidenceUrl": "https://escondido.gov/m/newsflash/home/detail/218" + }, + { + "kind": "newsroom", + "url": "https://escondido.gov/m/newsflash/Home/Detail/299", + "reviewed": false, + "evidenceUrl": "https://escondido.gov/m/newsflash/home/detail/218" + }, + { + "kind": "newsroom", + "url": "https://escondido.gov/m/newsflash/Home/Detail/298", + "reviewed": false, + "evidenceUrl": "https://escondido.gov/m/newsflash/home/detail/218" + }, + { + "kind": "department-page", + "url": "https://escondido.gov/m/newsflash", + "reviewed": false, + "evidenceUrl": "https://escondido.gov/m/newsflash/home/detail/218" + }, + { + "kind": "department-page", + "url": "https://escondido.gov/m/newsflash/home/detail/218", + "reviewed": false, + "evidenceUrl": "https://escondido.gov/" + } + ] + }, + { + "geoid": "0623182", + "name": "Fairfield", + "state": "CA", + "slug": "fairfield", + "population": 122489, + "lat": 38.261965, + "lon": -122.032389, + "ingestion": { + "url": "https://local.nixle.com/fairfield-ca-police-department/", + "format": "nixle", + "publisher": "Fairfield, CA Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/fairfield/", + "checkedAt": "2026-09-13T19:19:21.834007+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/fairfield-ca-police-department/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/fairfield/" + }, + { + "kind": "department-page", + "url": "https://www.fairfield.ca.gov/government/city-departments/police", + "reviewed": false, + "evidenceUrl": "https://www.fairfield.ca.gov/government/city-departments/police" + }, + { + "kind": "department-page", + "url": "https://www.fairfield.ca.gov/government/city-departments/police/operations-bureau/daily-activity-logs", + "reviewed": false, + "evidenceUrl": "https://www.fairfield.ca.gov/government/city-departments/police/operations-bureau/daily-activity-logs" + }, + { + "kind": "department-page", + "url": "https://www.fairfield.ca.gov/government/city-departments/police/support-services-bureau/police-records-reports", + "reviewed": false, + "evidenceUrl": "https://www.fairfield.ca.gov/government/city-departments/police/support-services-bureau/police-records-reports" + } + ] + }, + { + "geoid": "0624638", + "name": "Folsom", + "state": "CA", + "slug": "folsom", + "population": 91983, + "lat": 38.666597, + "lon": -121.141635, + "ingestion": { + "url": "https://local.nixle.com/folsom-police-department/", + "format": "nixle", + "publisher": "Folsom Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/folsom/", + "checkedAt": "2026-09-13T19:19:22.532991+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/folsom-police-department/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/folsom/" + }, + { + "kind": "incident-log", + "url": "https://www.folsom.ca.us/government/police/crime-information/police-log", + "reviewed": false, + "evidenceUrl": "https://www.folsom.ca.us/government/police/crime-information/police-log" + }, + { + "kind": "department-page", + "url": "https://www.folsom.ca.us/government/police", + "reviewed": false, + "evidenceUrl": "https://www.folsom.ca.us/government/police" + }, + { + "kind": "department-page", + "url": "https://www.folsom.ca.us/government/police/connect-with-us", + "reviewed": false, + "evidenceUrl": "https://www.folsom.ca.us/government/police/connect-with-us" + } + ] + }, + { + "geoid": "0624680", + "name": "Fontana", + "state": "CA", + "slug": "fontana", + "population": 221223, + "lat": 34.109686, + "lon": -117.462888, + "ingestion": null, + "references": [ + { + "kind": "x", + "url": "https://x.com/fontanapd", + "reviewed": false, + "evidenceUrl": "https://fontanaca.gov/3577/Police-Department" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/sbsd---fontana-sheriffs-department/", + "reviewed": false, + "evidenceUrl": "https://local.nixle.com/city/ca/fontana/" + }, + { + "kind": "department-page", + "url": "https://fontanaca.gov/3577/Police-Department", + "reviewed": false, + "evidenceUrl": "https://fontanaca.gov/" + }, + { + "kind": "department-page", + "url": "https://fontanaca.gov/m/newsflash?cat=32", + "reviewed": false, + "evidenceUrl": "https://fontanaca.gov/3577/Police-Department" + }, + { + "kind": "department-page", + "url": "https://fontanaca.gov/DocumentCenter/View/49386/March-2026-Crime-Stats-PDF?bidId=", + "reviewed": false, + "evidenceUrl": "https://fontanaca.gov/3577/Police-Department" + }, + { + "kind": "crime-map", + "url": "http://www.crimemapping.com/", + "reviewed": false, + "evidenceUrl": "https://fontanaca.gov/3577/Police-Department" + } + ] + }, + { + "geoid": "0625380", + "name": "Fountain Valley", + "state": "CA", + "slug": "fountain-valley", + "population": 55508, + "lat": 33.710582, + "lon": -117.951129, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.fountainvalley.gov/1471/Police-Department", + "reviewed": false, + "evidenceUrl": "https://www.fountainvalley.gov/1471/Police-Department" + }, + { + "kind": "department-page", + "url": "https://www.fountainvalley.gov/430/My-Police-Department", + "reviewed": false, + "evidenceUrl": "https://www.fountainvalley.gov/430/My-Police-Department" + }, + { + "kind": "department-page", + "url": "https://fountainvalley.gov/709/Crime-Prevention", + "reviewed": false, + "evidenceUrl": "https://fountainvalley.gov/709/Crime-Prevention" + } + ] + }, + { + "geoid": "0626000", + "name": "Fremont", + "state": "CA", + "slug": "fremont", + "population": 226442, + "lat": 37.49446, + "lon": -121.94115, + "ingestion": { + "url": "https://local.nixle.com/fremont-police-department-ca/", + "format": "nixle", + "publisher": "Fremont Police Department (CA)", + "evidenceUrl": "https://local.nixle.com/city/ca/fremont/", + "checkedAt": "2026-09-13T19:19:23.950956+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/fremont-police-department-ca/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/fremont/" + }, + { + "kind": "department-page", + "url": "https://www.fremontpolice.gov/", + "reviewed": true, + "evidenceUrl": "https://www.fremontpolice.gov/" + }, + { + "kind": "x", + "url": "https://x.com/fremontpd", + "reviewed": false, + "evidenceUrl": "https://www.fremont.gov/about/news-media/social-media-center" + }, + { + "kind": "newsroom", + "url": "https://www.fremontpolice.gov/about-us/about-fremont-police/spotlight-and-news", + "reviewed": false, + "evidenceUrl": "https://www.fremontpolice.gov/about-us/about-fremont-police/spotlight-and-news" + }, + { + "kind": "newsroom", + "url": "https://www.fremontpolice.gov/about-us/about-fremont-police/spotlight-and-news/news-list", + "reviewed": false, + "evidenceUrl": "https://www.fremontpolice.gov/about-us/about-fremont-police/spotlight-and-news/news-list" + } + ] + }, + { + "geoid": "0627000", + "name": "Fresno", + "state": "CA", + "slug": "fresno", + "population": 555549, + "lat": 36.782684, + "lon": -119.793359, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.fresno.gov/police/", + "reviewed": false, + "evidenceUrl": "https://www.fresno.gov/police/" + }, + { + "kind": "department-page", + "url": "https://www.fresno.gov/police/police-contacts/", + "reviewed": false, + "evidenceUrl": "https://www.fresno.gov/police/police-contacts/" + }, + { + "kind": "department-page", + "url": "https://www.fresno.gov/police/records-and-reports/", + "reviewed": false, + "evidenceUrl": "https://www.fresno.gov/police/records-and-reports/" + } + ] + }, + { + "geoid": "0628000", + "name": "Fullerton", + "state": "CA", + "slug": "fullerton", + "population": 138675, + "lat": 33.885716, + "lon": -117.928025, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.cityoffullerton.com/government/departments/police/crime-trends/latest-news", + "reviewed": true, + "evidenceUrl": "https://linktr.ee/fullertonpd" + }, + { + "kind": "department-page", + "url": "https://www.cityoffullerton.com/government/departments/police", + "reviewed": true, + "evidenceUrl": "https://www.cityoffullerton.com/government/departments/police" + }, + { + "kind": "social-directory", + "url": "https://linktr.ee/fullertonpd", + "reviewed": true, + "evidenceUrl": "https://linktr.ee/fullertonpd" + } + ] + }, + { + "geoid": "0629000", + "name": "Garden Grove", + "state": "CA", + "slug": "garden-grove", + "population": 170455, + "lat": 33.778782, + "lon": -117.960472, + "ingestion": null, + "references": [ + { + "kind": "x", + "url": "https://x.com/gardengrovepd", + "reviewed": false, + "evidenceUrl": "https://ggcity.org/public-safety" + }, + { + "kind": "newsroom", + "url": "https://ggcity.org/docs/police-press-release/archive", + "reviewed": false, + "evidenceUrl": "https://ggcity.org/public-safety" + }, + { + "kind": "department-page", + "url": "https://ggcity.org/public-safety", + "reviewed": false, + "evidenceUrl": "https://ggcity.org" + }, + { + "kind": "department-page", + "url": "https://ggcity.org/news", + "reviewed": false, + "evidenceUrl": "https://ggcity.org/public-safety" + }, + { + "kind": "department-page", + "url": "https://ggcity.org/connect", + "reviewed": false, + "evidenceUrl": "https://ggcity.org/public-safety" + }, + { + "kind": "department-page", + "url": "https://ggcity.org/media-kit", + "reviewed": false, + "evidenceUrl": "https://ggcity.org/public-safety" + } + ] + }, + { + "geoid": "0628168", + "name": "Gardena", + "state": "CA", + "slug": "gardena", + "population": 58460, + "lat": 33.894417, + "lon": -118.307522, + "ingestion": null, + "references": [ + { + "kind": "x", + "url": "https://x.com/gpdchief", + "reviewed": false, + "evidenceUrl": "https://cityofgardena.org/social-media/" + }, + { + "kind": "department-page", + "url": "https://cityofgardena.org/", + "reviewed": false, + "evidenceUrl": "https://cityofgardena.org/" + }, + { + "kind": "department-page", + "url": "https://cityofgardena.org/local-news/", + "reviewed": false, + "evidenceUrl": "https://cityofgardena.org/" + }, + { + "kind": "department-page", + "url": "https://cityofgardena.org/social-media/", + "reviewed": false, + "evidenceUrl": "https://cityofgardena.org/" + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/gardena_police/", + "reviewed": false, + "evidenceUrl": "https://cityofgardena.org/social-media/" + } + ] + }, + { + "geoid": "0629504", + "name": "Gilroy", + "state": "CA", + "slug": "gilroy", + "population": 60764, + "lat": 37.006407, + "lon": -121.585321, + "ingestion": { + "url": "https://local.nixle.com/gilroy-police-department/", + "format": "nixle", + "publisher": "Gilroy Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/gilroy/", + "checkedAt": "2026-09-13T19:19:24.727165+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/gilroy-police-department/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/gilroy/" + }, + { + "kind": "incident-log", + "url": "http://gilroy.citizenrims.com/", + "reviewed": false, + "evidenceUrl": "https://www.cityofgilroy.org/197/Transparency" + }, + { + "kind": "incident-log", + "url": "https://gilroy.citizenrims.com/form?formId=35", + "reviewed": false, + "evidenceUrl": "https://www.cityofgilroy.org/653/Police-Forms" + }, + { + "kind": "department-page", + "url": "https://www.cityofgilroy.org/653/Police-Forms", + "reviewed": false, + "evidenceUrl": "https://www.cityofgilroy.org/151/Police-Department" + }, + { + "kind": "department-page", + "url": "https://www.cityofgilroy.org/151/Police-Department", + "reviewed": false, + "evidenceUrl": "https://www.cityofgilroy.org/" + }, + { + "kind": "department-page", + "url": "https://www.cityofgilroy.org/DocumentCenter/View/5498/Police-Records---Application-for-Release-of-Information-Police-Report-Request?bidId=", + "reviewed": false, + "evidenceUrl": "https://www.cityofgilroy.org/" + } + ] + }, + { + "geoid": "0630000", + "name": "Glendale", + "state": "CA", + "slug": "glendale", + "population": 187160, + "lat": 34.181393, + "lon": -118.24583, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.glendaleca.gov/government/departments/police-department/news-media-relations", + "reviewed": false, + "evidenceUrl": "https://www.glendaleca.gov/government/departments/police-department/news-media-relations" + }, + { + "kind": "department-page", + "url": "https://www.glendaleca.gov/government/departments/police-department", + "reviewed": false, + "evidenceUrl": "https://www.glendaleca.gov/government/departments/police-department" + }, + { + "kind": "department-page", + "url": "https://www.glendaleca.gov/government/departments/police-department/transparency", + "reviewed": false, + "evidenceUrl": "https://www.glendaleca.gov/government/departments/police-department/transparency" + } + ] + }, + { + "geoid": "0631960", + "name": "Hanford", + "state": "CA", + "slug": "hanford", + "population": 62229, + "lat": 36.328141, + "lon": -119.654773, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.ci.hanford.ca.us/1198/Police", + "reviewed": false, + "evidenceUrl": "https://www.ci.hanford.ca.us/1198/Police" + }, + { + "kind": "department-page", + "url": "https://www.ci.hanford.ca.us/m/directory/department?did=51", + "reviewed": false, + "evidenceUrl": "https://www.ci.hanford.ca.us/m/directory/department?did=51" + } + ] + }, + { + "geoid": "0632548", + "name": "Hawthorne", + "state": "CA", + "slug": "hawthorne", + "population": 82741, + "lat": 33.914775, + "lon": -118.348083, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.cityofhawthorne.org/departments/police-department", + "reviewed": false, + "evidenceUrl": "https://www.cityofhawthorne.org/departments/police-department" + }, + { + "kind": "department-page", + "url": "https://locator.lacounty.gov/lac/Location/3068923/city-of-hawthorne-police-department", + "reviewed": false, + "evidenceUrl": "https://locator.lacounty.gov/lac/Location/3068923/city-of-hawthorne-police-department" + }, + { + "kind": "nextdoor", + "url": "https://nextdoor.com/agency-detail/ca/hawthorne/hawthorne-police/", + "reviewed": false, + "evidenceUrl": "https://nextdoor.com/agency-detail/ca/hawthorne/hawthorne-police/" + } + ] + }, + { + "geoid": "0633000", + "name": "Hayward", + "state": "CA", + "slug": "hayward", + "population": 157113, + "lat": 37.626826, + "lon": -122.104015, + "ingestion": null, + "references": [ + { + "kind": "x", + "url": "https://x.com/haywardpd", + "reviewed": false, + "evidenceUrl": "https://hayward-ca.gov/police-department" + }, + { + "kind": "newsroom", + "url": "https://hayward-ca.gov/discover/news/sep26/press-release-safe-drives-save-lives", + "reviewed": false, + "evidenceUrl": "https://hayward-ca.gov/police-department" + }, + { + "kind": "newsroom", + "url": "https://hayward-ca.gov/discover/news/aug26/press-release-fatal-collision-harder-rd-and-soto-rd", + "reviewed": false, + "evidenceUrl": "https://hayward-ca.gov/discover/news/2" + }, + { + "kind": "newsroom", + "url": "https://hayward-ca.gov/discover/news/aug26/press-release-homicide-investigation-300-block-winton-ave", + "reviewed": false, + "evidenceUrl": "https://hayward-ca.gov/discover/news/2" + }, + { + "kind": "department-page", + "url": "https://hayward-ca.gov/police-department", + "reviewed": false, + "evidenceUrl": "https://hayward-ca.gov/" + }, + { + "kind": "department-page", + "url": "https://hayward-ca.gov/discover/news/1", + "reviewed": false, + "evidenceUrl": "https://hayward-ca.gov/police-department" + } + ] + }, + { + "geoid": "0633182", + "name": "Hemet", + "state": "CA", + "slug": "hemet", + "population": 93649, + "lat": 33.734068, + "lon": -116.996808, + "ingestion": { + "url": "https://hemetpd.com/feed/", + "format": "rss", + "publisher": "Hemet Police Department", + "evidenceUrl": "https://www.hemetca.gov/DocumentCenter/View/12232/General-Plan-Progress-Report-2025", + "checkedAt": "2026-09-13T19:22:30.700425+00:00", + "review": "City general plan references hemetpd.com; RSS has current police announcements." + }, + "references": [ + { + "url": "https://hemetpd.com/feed/", + "kind": "rss", + "reviewed": true, + "evidenceUrl": "https://www.hemetca.gov/DocumentCenter/View/12232/General-Plan-Progress-Report-2025" + }, + { + "kind": "newsroom", + "url": "https://hemetpd.com/", + "reviewed": true, + "evidenceUrl": "https://hemetpd.com/" + } + ] + }, + { + "geoid": "0633434", + "name": "Hesperia", + "state": "CA", + "slug": "hesperia", + "population": 102605, + "lat": 34.397038, + "lon": -117.315198, + "ingestion": { + "url": "https://local.nixle.com/sbsd---hesperia-police-department/", + "format": "nixle", + "publisher": "SBSD - Hesperia Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/hesperia/", + "checkedAt": "2026-09-13T19:19:25.523116+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/sbsd---hesperia-police-department/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/hesperia/" + }, + { + "kind": "department-page", + "url": "https://www.hesperiaca.gov/306/Police", + "reviewed": false, + "evidenceUrl": "https://www.hesperiaca.gov/306/Police" + }, + { + "kind": "department-page", + "url": "https://www.hesperiaca.gov/325/Crime-Map", + "reviewed": false, + "evidenceUrl": "https://www.hesperiaca.gov/325/Crime-Map" + }, + { + "kind": "department-page", + "url": "https://hesperiaca.gov/directory.aspx?did=7", + "reviewed": false, + "evidenceUrl": "https://hesperiaca.gov/directory.aspx?did=7" + } + ] + }, + { + "geoid": "0633588", + "name": "Highland", + "state": "CA", + "slug": "highland", + "population": 57614, + "lat": 34.113473, + "lon": -117.165729, + "ingestion": { + "url": "https://local.nixle.com/sbsd---highland-police-department/", + "format": "nixle", + "publisher": "SBSD - Highland Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/highland/", + "checkedAt": "2026-09-13T19:19:26.069527+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/sbsd---highland-police-department/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/highland/" + }, + { + "kind": "department-page", + "url": "https://wp.sbcounty.gov/sheriff/wp-content/uploads/sites/17/2024-Annual-Crime-Report.pdf", + "reviewed": false, + "evidenceUrl": "https://wp.sbcounty.gov/sheriff/wp-content/uploads/sites/17/2024-Annual-Crime-Report.pdf" + }, + { + "kind": "department-page", + "url": "https://www.highlandca.gov/m/directory/department?did=24", + "reviewed": false, + "evidenceUrl": "https://www.highlandca.gov/m/directory/department?did=24" + }, + { + "kind": "department-page", + "url": "https://oag.ca.gov/system/files/media/ab1191-crime-gun-report-2025.pdf", + "reviewed": false, + "evidenceUrl": "https://oag.ca.gov/system/files/media/ab1191-crime-gun-report-2025.pdf" + } + ] + }, + { + "geoid": "0636000", + "name": "Huntington Beach", + "state": "CA", + "slug": "huntington-beach", + "population": 191451, + "lat": 33.698007, + "lon": -118.003834, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.ocsheriff.gov/occrimestoppers", + "reviewed": false, + "evidenceUrl": "https://www.ocsheriff.gov/occrimestoppers" + }, + { + "kind": "department-page", + "url": "https://gis.huntingtonbeachca.gov/arcgis/rest/services/WebPolice/MapServer", + "reviewed": false, + "evidenceUrl": "https://gis.huntingtonbeachca.gov/arcgis/rest/services/WebPolice/MapServer" + }, + { + "kind": "department-page", + "url": "https://irvinepd.gov/2026/06/25/residential-burglary-crew-arrested-2/", + "reviewed": false, + "evidenceUrl": "https://irvinepd.gov/2026/06/25/residential-burglary-crew-arrested-2/" + } + ] + }, + { + "geoid": "0636056", + "name": "Huntington Park", + "state": "CA", + "slug": "huntington-park", + "population": 51544, + "lat": 33.979248, + "lon": -118.217438, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://hppolice.org/2022/08/08/dui-checkpoint-press-release/", + "reviewed": false, + "evidenceUrl": "https://hppolice.org/" + }, + { + "kind": "newsroom", + "url": "https://hppolice.org/2022/05/31/press-release-historic-lieutenant-promotion/", + "reviewed": false, + "evidenceUrl": "https://hppolice.org/category/news/" + }, + { + "kind": "department-page", + "url": "https://hppolice.org/", + "reviewed": false, + "evidenceUrl": "https://hpca.gov/" + }, + { + "kind": "department-page", + "url": "https://hppolice.org/category/news/", + "reviewed": false, + "evidenceUrl": "https://hppolice.org/" + }, + { + "kind": "department-page", + "url": "https://hppolice.org/crime-prevention/", + "reviewed": false, + "evidenceUrl": "https://hppolice.org/" + }, + { + "kind": "department-page", + "url": "https://hpca.gov/600/Police-Department", + "reviewed": false, + "evidenceUrl": "https://hpca.gov/" + } + ] + }, + { + "geoid": "0636448", + "name": "Indio", + "state": "CA", + "slug": "indio", + "population": 94269, + "lat": 33.731639, + "lon": -116.235971, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://data-openjustice.doj.ca.gov/sites/default/files/dataset/2025-07/Crimes-Clear-Arson%20Context_06162025.pdf", + "reviewed": false, + "evidenceUrl": "https://data-openjustice.doj.ca.gov/sites/default/files/dataset/2025-07/Crimes-Clear-Arson%20Context_06162025.pdf" + } + ] + }, + { + "geoid": "0636546", + "name": "Inglewood", + "state": "CA", + "slug": "inglewood", + "population": 101662, + "lat": 33.956068, + "lon": -118.344274, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.cityofinglewood.org/1649/Police", + "reviewed": false, + "evidenceUrl": "https://www.cityofinglewood.org/1649/Police" + }, + { + "kind": "department-page", + "url": "https://locator.lacounty.gov/lac/Location/3052997/inglewood-police-department", + "reviewed": false, + "evidenceUrl": "https://locator.lacounty.gov/lac/Location/3052997/inglewood-police-department" + }, + { + "kind": "department-page", + "url": "https://www.cityofinglewood.org/659/Crime-Statistics", + "reviewed": false, + "evidenceUrl": "https://www.cityofinglewood.org/659/Crime-Statistics" + } + ] + }, + { + "geoid": "0636770", + "name": "Irvine", + "state": "CA", + "slug": "irvine", + "population": 318764, + "lat": 33.678399, + "lon": -117.771254, + "ingestion": null, + "references": [ + { + "kind": "x", + "url": "https://x.com/ocsheriff", + "reviewed": false, + "evidenceUrl": "https://www.ocsheriff.gov/" + }, + { + "kind": "x", + "url": "https://x.com/irvinepolice", + "reviewed": false, + "evidenceUrl": "https://irvinepd.gov/" + }, + { + "kind": "incident-log", + "url": "http://ws.ocsheriff.gov/Blotter/", + "reviewed": false, + "evidenceUrl": "https://www.ocsheriff.gov/" + }, + { + "kind": "newsroom", + "url": "https://www.ocsheriff.gov/news/fatal-traffic-collision-lake-forest-driver-arrested-dui-1", + "reviewed": false, + "evidenceUrl": "https://www.ocsheriff.gov/news" + }, + { + "kind": "newsroom", + "url": "https://www.ocsheriff.gov/news/fatal-traffic-collision-lake-forest-driver-arrested-dui-0", + "reviewed": false, + "evidenceUrl": "https://www.ocsheriff.gov/news" + }, + { + "kind": "newsroom", + "url": "https://www.ocsheriff.gov/news/fatal-traffic-collision-mission-viejo-two-drivers-arrested", + "reviewed": false, + "evidenceUrl": "https://www.ocsheriff.gov/news" + } + ] + }, + { + "geoid": "0637692", + "name": "Jurupa Valley", + "state": "CA", + "slug": "jurupa-valley", + "population": 107311, + "lat": 34.002591, + "lon": -117.467612, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.bscc.ca.gov/wp-content/uploads/78-Riverside-County-Jurupa-Valley-Sheriff-Station.pdf", + "reviewed": false, + "evidenceUrl": "https://www.bscc.ca.gov/wp-content/uploads/78-Riverside-County-Jurupa-Valley-Sheriff-Station.pdf" + } + ] + }, + { + "geoid": "0639290", + "name": "La Habra", + "state": "CA", + "slug": "la-habra", + "population": 60908, + "lat": 33.927927, + "lon": -117.951554, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://lahabraca.gov/227/Police-Department", + "reviewed": false, + "evidenceUrl": "https://lahabraca.gov/" + }, + { + "kind": "department-page", + "url": "https://lahabraca.gov/m/newsflash?cat=5", + "reviewed": false, + "evidenceUrl": "https://lahabraca.gov/227/Police-Department" + }, + { + "kind": "department-page", + "url": "https://lahabraca.gov/m/newsflash/home/detail/694", + "reviewed": false, + "evidenceUrl": "https://lahabraca.gov/227/Police-Department" + }, + { + "kind": "crime-map", + "url": "https://communitycrimemap.com/", + "reviewed": false, + "evidenceUrl": "https://lahabraca.gov/227/Police-Department" + } + ] + }, + { + "geoid": "0640004", + "name": "La Mesa", + "state": "CA", + "slug": "la-mesa", + "population": 59914, + "lat": 32.769495, + "lon": -117.021923, + "ingestion": null, + "references": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/city-of-la-mesa", + "reviewed": false, + "evidenceUrl": "https://cityoflamesa.gov/" + } + ] + }, + { + "geoid": "0639248", + "name": "Laguna Niguel", + "state": "CA", + "slug": "laguna-niguel", + "population": 64107, + "lat": 33.528654, + "lon": -117.701253, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.ocsheriff.gov/patrol-areas", + "reviewed": false, + "evidenceUrl": "https://www.ocsheriff.gov/patrol-areas" + }, + { + "kind": "department-page", + "url": "https://www.ocsheriff.gov/patrol-areas/laguna-niguel", + "reviewed": false, + "evidenceUrl": "https://www.ocsheriff.gov/patrol-areas/laguna-niguel" + }, + { + "kind": "department-page", + "url": "https://www.ocsheriff.gov/location/laguna-niguel-police-services", + "reviewed": false, + "evidenceUrl": "https://www.ocsheriff.gov/location/laguna-niguel-police-services" + } + ] + }, + { + "geoid": "0639486", + "name": "Lake Elsinore", + "state": "CA", + "slug": "lake-elsinore", + "population": 75067, + "lat": 33.685956, + "lon": -117.335404, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.lake-elsinore.org/309/Police", + "reviewed": false, + "evidenceUrl": "https://www.lake-elsinore.org/172/Public-Safety" + }, + { + "kind": "department-page", + "url": "https://www.lake-elsinore.org/172/Public-Safety", + "reviewed": false, + "evidenceUrl": "https://www.lake-elsinore.org/" + }, + { + "kind": "department-page", + "url": "https://www.lake-elsinore.org/313/Crime-Free-Multi-Housing-Program", + "reviewed": false, + "evidenceUrl": "https://www.lake-elsinore.org/172/Public-Safety" + } + ] + }, + { + "geoid": "0639496", + "name": "Lake Forest", + "state": "CA", + "slug": "lake-forest", + "population": 86333, + "lat": 33.654946, + "lon": -117.675848, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.ocsheriff.gov/node", + "reviewed": false, + "evidenceUrl": "https://www.ocsheriff.gov/node" + }, + { + "kind": "department-page", + "url": "https://ocsheriff.gov/patrol-areas/lake-forest", + "reviewed": false, + "evidenceUrl": "https://ocsheriff.gov/patrol-areas/lake-forest" + }, + { + "kind": "department-page", + "url": "https://city-lakeforest.com/298/Police-Services.html", + "reviewed": false, + "evidenceUrl": "https://city-lakeforest.com/298/Police-Services.html" + } + ] + }, + { + "geoid": "0639892", + "name": "Lakewood", + "state": "CA", + "slug": "lakewood", + "population": 78010, + "lat": 33.847135, + "lon": -118.121894, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.lakewoodca.gov/Residents/Public-Safety", + "reviewed": false, + "evidenceUrl": "https://www.lakewoodca.gov/Home" + }, + { + "kind": "department-page", + "url": "https://www.lakewoodca.gov/Residents/Public-Safety/Homelessness", + "reviewed": false, + "evidenceUrl": "https://www.lakewoodca.gov/Home" + }, + { + "kind": "department-page", + "url": "https://www.lakewoodca.gov/About/City-news", + "reviewed": false, + "evidenceUrl": "https://www.lakewoodca.gov/Residents/Public-Safety" + }, + { + "kind": "department-page", + "url": "https://www.lakewoodca.gov/About/City-news/eMagazine-Subscription", + "reviewed": false, + "evidenceUrl": "https://www.lakewoodca.gov/Residents/Public-Safety" + } + ] + }, + { + "geoid": "0640130", + "name": "Lancaster", + "state": "CA", + "slug": "lancaster", + "population": 170084, + "lat": 34.693558, + "lon": -118.175305, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://police.cityoflancasterpa.gov/news/", + "reviewed": false, + "evidenceUrl": "https://police.cityoflancasterpa.gov/news/" + }, + { + "kind": "department-page", + "url": "https://www.cityoflancasterca.org/our-city/departments-services/public-safety", + "reviewed": false, + "evidenceUrl": "https://www.cityoflancasterca.org/our-city/departments-services/public-safety" + } + ] + }, + { + "geoid": "0641474", + "name": "Lincoln", + "state": "CA", + "slug": "lincoln", + "population": 57367, + "lat": 38.874464, + "lon": -121.292886, + "ingestion": null, + "references": [ + { + "kind": "x", + "url": "https://x.com/lincolnpolice", + "reviewed": false, + "evidenceUrl": "https://www.lincolnca.gov/our-government/social-media/" + }, + { + "kind": "incident-log", + "url": "https://lincolnca.citizenrims.com/map", + "reviewed": false, + "evidenceUrl": "https://www.lincolnca.gov/living-here/police-and-fire/" + }, + { + "kind": "incident-log", + "url": "https://lincolnca.citizenrims.com/form?formId=128", + "reviewed": false, + "evidenceUrl": "https://www.lincolnca.gov/living-here/police-and-fire/" + }, + { + "kind": "incident-log", + "url": "https://lincolnca.citizenrims.com/form?formId=129", + "reviewed": false, + "evidenceUrl": "https://www.lincolnca.gov/living-here/police-and-fire/" + }, + { + "kind": "newsroom", + "url": "https://www.lincolnca.gov/news/posts/lincoln-police-arrest-suspect-following-stabbing-investigation-news-release/", + "reviewed": false, + "evidenceUrl": "https://www.lincolnca.gov/news" + }, + { + "kind": "newsroom", + "url": "https://www.lincolnca.gov/news/posts/homicide-investigation-and-arrest-news-release/", + "reviewed": false, + "evidenceUrl": "https://www.lincolnca.gov/news" + } + ] + }, + { + "geoid": "0641992", + "name": "Livermore", + "state": "CA", + "slug": "livermore", + "population": 83457, + "lat": 37.686977, + "lon": -121.759781, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://police.livermoreca.gov/community/news-press-releases", + "reviewed": true, + "evidenceUrl": "https://police.livermoreca.gov/community/news-press-releases" + }, + { + "kind": "department-page", + "url": "https://police.livermoreca.gov/", + "reviewed": false, + "evidenceUrl": "https://police.livermoreca.gov/" + }, + { + "kind": "department-page", + "url": "https://police.livermoreca.gov/contact", + "reviewed": false, + "evidenceUrl": "https://police.livermoreca.gov/contact" + }, + { + "kind": "department-page", + "url": "https://police.livermoreca.gov/about-us", + "reviewed": false, + "evidenceUrl": "https://police.livermoreca.gov/about-us" + } + ] + }, + { + "geoid": "0642202", + "name": "Lodi", + "state": "CA", + "slug": "lodi", + "population": 69100, + "lat": 38.12161, + "lon": -121.290765, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.lodi.gov/215/Police", + "reviewed": false, + "evidenceUrl": "https://www.lodi.gov/215/Police" + }, + { + "kind": "department-page", + "url": "https://www.lodi.gov/886/Chief-of-Police", + "reviewed": false, + "evidenceUrl": "https://www.lodi.gov/886/Chief-of-Police" + }, + { + "kind": "department-page", + "url": "https://www.lodi.gov/215/Police?from=AppAgg.com", + "reviewed": false, + "evidenceUrl": "https://www.lodi.gov/215/Police?from=AppAgg.com" + } + ] + }, + { + "geoid": "0643000", + "name": "Long Beach", + "state": "CA", + "slug": "long-beach", + "population": 450469, + "lat": 33.780791, + "lon": -118.16818, + "ingestion": null, + "references": [ + { + "kind": "x", + "url": "https://x.com/lbpd", + "reviewed": false, + "evidenceUrl": "https://longbeach.gov/police/" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-9-2026/", + "reviewed": false, + "evidenceUrl": "https://longbeach.gov/news-archive/?cid=6697" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-8-2026/", + "reviewed": false, + "evidenceUrl": "https://longbeach.gov/news-archive/?cid=6697" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-6-2026/", + "reviewed": false, + "evidenceUrl": "https://longbeach.gov/news-archive/?cid=6697" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-7-2026/", + "reviewed": false, + "evidenceUrl": "https://longbeach.gov/news-archive/?cid=6697" + }, + { + "kind": "incident-log", + "url": "https://longbeach.gov/police/news/lbpd-blotter-aug-5-2026/", + "reviewed": false, + "evidenceUrl": "https://longbeach.gov/news-archive/?cid=6697" + } + ] + }, + { + "geoid": "0644000", + "name": "Los Angeles", + "state": "CA", + "slug": "los-angeles", + "population": 3869089, + "lat": 34.019394, + "lon": -118.410825, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.lapdonline.org/newsroom/", + "reviewed": true, + "evidenceUrl": "https://www.lapdonline.org/newsroom/" + } + ] + }, + { + "geoid": "0644574", + "name": "Lynwood", + "state": "CA", + "slug": "lynwood", + "population": 63512, + "lat": 33.923959, + "lon": -118.201655, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://lynwoodca.gov/m/newsflash", + "reviewed": false, + "evidenceUrl": "https://lynwoodca.gov/m/newsflash/home/detail/351" + }, + { + "kind": "department-page", + "url": "https://lynwoodca.gov/m/newsflash/home/detail/351", + "reviewed": false, + "evidenceUrl": "https://lynwoodca.gov/" + } + ] + }, + { + "geoid": "0645022", + "name": "Madera", + "state": "CA", + "slug": "madera", + "population": 69017, + "lat": 36.966193, + "lon": -120.085855, + "ingestion": null, + "references": [ + { + "kind": "nixle", + "url": "https://local.nixle.com/madera-police-department/", + "reviewed": false, + "evidenceUrl": "https://local.nixle.com/city/ca/madera/" + }, + { + "kind": "department-page", + "url": "https://www.madera.gov/emergency-protective-services/police-department/", + "reviewed": false, + "evidenceUrl": "https://www.madera.gov/" + } + ] + }, + { + "geoid": "0645484", + "name": "Manteca", + "state": "CA", + "slug": "manteca", + "population": 96693, + "lat": 37.792839, + "lon": -121.226076, + "ingestion": { + "url": "https://local.nixle.com/manteca-police-department/", + "format": "nixle", + "publisher": "Manteca Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/manteca/", + "checkedAt": "2026-09-13T19:19:29.844334+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/manteca-police-department/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/manteca/" + }, + { + "kind": "department-page", + "url": "https://oag.ca.gov/fingerprints/locations/manteca-police-department", + "reviewed": false, + "evidenceUrl": "https://oag.ca.gov/fingerprints/locations/manteca-police-department" + } + ] + }, + { + "geoid": "0646842", + "name": "Menifee", + "state": "CA", + "slug": "menifee", + "population": 118592, + "lat": 33.689858, + "lon": -117.184383, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.cityofmenifee.us/Archive/ViewFile/Item/2998", + "reviewed": false, + "evidenceUrl": "https://www.cityofmenifee.us/Archive/ViewFile/Item/2998" + } + ] + }, + { + "geoid": "0646898", + "name": "Merced", + "state": "CA", + "slug": "merced", + "population": 99724, + "lat": 37.31138, + "lon": -120.470408, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.cityofmerced.gov/public-safety/police", + "reviewed": false, + "evidenceUrl": "https://www.cityofmerced.gov/public-safety/police" + }, + { + "kind": "department-page", + "url": "https://www.cityofmerced.gov/public-safety/police/transparency-hub", + "reviewed": false, + "evidenceUrl": "https://www.cityofmerced.gov/public-safety/police/transparency-hub" + }, + { + "kind": "department-page", + "url": "https://www.cityofmerced.gov/public-safety/police/crimemapping-com", + "reviewed": false, + "evidenceUrl": "https://www.cityofmerced.gov/public-safety/police/crimemapping-com" + } + ] + }, + { + "geoid": "0647766", + "name": "Milpitas", + "state": "CA", + "slug": "milpitas", + "population": 78596, + "lat": 37.433136, + "lon": -121.890934, + "ingestion": null, + "references": [ + { + "kind": "x", + "url": "https://x.com/milpitaspd", + "reviewed": false, + "evidenceUrl": "https://www.milpitas.gov/1101/Police" + }, + { + "kind": "newsroom", + "url": "https://www.milpitas.gov/372/Press-Releases", + "reviewed": false, + "evidenceUrl": "https://www.milpitas.gov/1101/Police" + }, + { + "kind": "department-page", + "url": "https://www.milpitas.gov/1101/Police", + "reviewed": false, + "evidenceUrl": "curated department URL" + }, + { + "kind": "department-page", + "url": "https://www.milpitas.gov/1098/Transparency-Portal", + "reviewed": false, + "evidenceUrl": "https://www.milpitas.gov/372/Press-Releases" + }, + { + "kind": "department-page", + "url": "https://www.milpitas.gov/162/Crime-Prevention-Safety", + "reviewed": false, + "evidenceUrl": "https://www.milpitas.gov/1101/Police" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/MilpitasPD", + "reviewed": false, + "evidenceUrl": "https://www.milpitas.gov/1101/Police" + } + ] + }, + { + "geoid": "0648256", + "name": "Mission Viejo", + "state": "CA", + "slug": "mission-viejo", + "population": 90484, + "lat": 33.609335, + "lon": -117.656471, + "ingestion": null, + "references": [ + { + "kind": "incident-log", + "url": "https://www.missionviejo.gov/departments/police-services/alert-bulletin-resources/crime-alertsnews", + "reviewed": false, + "evidenceUrl": "https://www.missionviejo.gov/departments/police-services/alert-bulletin-resources/crime-alertsnews" + }, + { + "kind": "department-page", + "url": "https://www.missionviejo.gov/departments/police-services", + "reviewed": false, + "evidenceUrl": "https://www.missionviejo.gov/departments/police-services" + }, + { + "kind": "department-page", + "url": "https://www.missionviejo.gov/category/crime-alerts", + "reviewed": false, + "evidenceUrl": "https://www.missionviejo.gov/category/crime-alerts" + } + ] + }, + { + "geoid": "0648354", + "name": "Modesto", + "state": "CA", + "slug": "modesto", + "population": 219652, + "lat": 37.637533, + "lon": -121.003049, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://permits.modestogov.com/223/Police-Department", + "reviewed": false, + "evidenceUrl": "https://permits.modestogov.com/223/Police-Department" + }, + { + "kind": "department-page", + "url": "https://www.modestogov.com/1169/File-a-Non-Emergency-Police-Report", + "reviewed": false, + "evidenceUrl": "https://www.modestogov.com/1169/File-a-Non-Emergency-Police-Report" + }, + { + "kind": "department-page", + "url": "https://www.modestogov.com/229/Crime-Map", + "reviewed": false, + "evidenceUrl": "https://www.modestogov.com/229/Crime-Map" + } + ] + }, + { + "geoid": "0648816", + "name": "Montebello", + "state": "CA", + "slug": "montebello", + "population": 60693, + "lat": 34.015444, + "lon": -118.111012, + "ingestion": null, + "references": [ + { + "kind": "x", + "url": "https://x.com/montebellopd", + "reviewed": false, + "evidenceUrl": "https://www.montebelloca.gov/departments/police" + }, + { + "kind": "newsroom", + "url": "https://www.montebelloca.gov/departments/public_affairs___information_technology/press_releases", + "reviewed": false, + "evidenceUrl": "https://www.montebelloca.gov/departments/police" + }, + { + "kind": "department-page", + "url": "https://www.montebelloca.gov/departments/police", + "reviewed": false, + "evidenceUrl": "https://www.montebelloca.gov/" + }, + { + "kind": "department-page", + "url": "https://www.montebelloca.gov/departments/police/news", + "reviewed": false, + "evidenceUrl": "https://www.montebelloca.gov/departments/police" + }, + { + "kind": "department-page", + "url": "https://www.montebelloca.gov/departments/police/connect", + "reviewed": false, + "evidenceUrl": "https://www.montebelloca.gov/departments/police" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/montebellopd", + "reviewed": false, + "evidenceUrl": "https://www.montebelloca.gov/departments/police" + } + ] + }, + { + "geoid": "0648914", + "name": "Monterey Park", + "state": "CA", + "slug": "monterey-park", + "population": 57457, + "lat": 34.04838, + "lon": -118.133165, + "ingestion": null, + "references": [ + { + "kind": "x", + "url": "https://x.com/montereyparkpd", + "reviewed": false, + "evidenceUrl": "http://www.montereypark.ca.gov/79/Stay-Connected" + }, + { + "kind": "department-page", + "url": "http://www.montereypark.ca.gov/m/newsflash", + "reviewed": false, + "evidenceUrl": "http://www.montereypark.ca.gov/m/newsflash/home/detail/1409" + }, + { + "kind": "department-page", + "url": "http://www.montereypark.ca.gov/79/Stay-Connected", + "reviewed": false, + "evidenceUrl": "http://www.montereypark.ca.gov/m/newsflash/home/detail/1409" + }, + { + "kind": "department-page", + "url": "http://www.montereypark.ca.gov/576/Cascades-Newspaper", + "reviewed": false, + "evidenceUrl": "http://www.montereypark.ca.gov/m/newsflash/home/detail/1409" + }, + { + "kind": "department-page", + "url": "http://www.montereypark.ca.gov/m/newsflash/home/detail/1409", + "reviewed": false, + "evidenceUrl": "http://www.montereypark.ca.gov/" + }, + { + "kind": "department-page", + "url": "http://www.montereypark.ca.gov/m/newsflash/home/detail/1408", + "reviewed": false, + "evidenceUrl": "http://www.montereypark.ca.gov/" + } + ] + }, + { + "geoid": "0649270", + "name": "Moreno Valley", + "state": "CA", + "slug": "moreno-valley", + "population": 214263, + "lat": 33.923253, + "lon": -117.205685, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.riversidesheriff.org/m/newsflash?sortBy=1&searchTerms=&cat=", + "reviewed": false, + "evidenceUrl": "https://www.riversidesheriff.org/FormCenter/Crime-6/Online-Reporting-50" + }, + { + "kind": "department-page", + "url": "https://moval.gov/departments/police/index.html", + "reviewed": false, + "evidenceUrl": "https://moval.gov/" + }, + { + "kind": "department-page", + "url": "https://www.riversidesheriff.org/663/Transparency", + "reviewed": false, + "evidenceUrl": "https://www.riversidesheriff.org/FormCenter/Crime-6/Online-Reporting-50" + }, + { + "kind": "department-page", + "url": "https://moval.gov/departments/police/report-crime.html", + "reviewed": false, + "evidenceUrl": "https://moval.gov/departments/police/index.html" + }, + { + "kind": "department-page", + "url": "https://moval.gov/departments/police/report-602-trespass.html", + "reviewed": false, + "evidenceUrl": "https://moval.gov/" + }, + { + "kind": "department-page", + "url": "https://www.riversidesheriff.org/FormCenter/Crime-6/Online-Reporting-50", + "reviewed": false, + "evidenceUrl": "https://moval.gov/" + } + ] + }, + { + "geoid": "0649670", + "name": "Mountain View", + "state": "CA", + "slug": "mountain-view", + "population": 85438, + "lat": 37.399686, + "lon": -122.079269, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.mountainview.gov/our-city/departments/police/news/-arch-1/-fsiteid-1/-locale-en", + "reviewed": true, + "evidenceUrl": "https://www.mountainview.gov/our-city/departments/police/news/-arch-1/-fsiteid-1/-locale-en" + }, + { + "kind": "newsroom", + "url": "https://www.mountainview.gov/our-city/departments/police/news?locale=en", + "reviewed": false, + "evidenceUrl": "https://www.mountainview.gov/our-city/departments/police/news?locale=en" + }, + { + "kind": "department-page", + "url": "https://www.mountainview.gov/our-city/departments/police?locale=en", + "reviewed": false, + "evidenceUrl": "https://www.mountainview.gov/our-city/departments/police?locale=en" + } + ] + }, + { + "geoid": "0650076", + "name": "Murrieta", + "state": "CA", + "slug": "murrieta", + "population": 114124, + "lat": 33.573214, + "lon": -117.191007, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.murrietaca.gov/557/Murrieta-Police-Press-Releases", + "reviewed": false, + "evidenceUrl": "https://www.murrietaca.gov/557/Murrieta-Police-Press-Releases" + }, + { + "kind": "department-page", + "url": "https://mainstreet.murrietaca.gov/1409/Police", + "reviewed": false, + "evidenceUrl": "https://mainstreet.murrietaca.gov/1409/Police" + }, + { + "kind": "department-page", + "url": "https://www.murrietaca.gov/759/Police-Activity-Reports", + "reviewed": false, + "evidenceUrl": "https://www.murrietaca.gov/759/Police-Activity-Reports" + } + ] + }, + { + "geoid": "0650258", + "name": "Napa", + "state": "CA", + "slug": "napa", + "population": 76562, + "lat": 38.297872, + "lon": -122.300741, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.napacounty.gov/1292/Sheriff", + "reviewed": false, + "evidenceUrl": "https://www.napacounty.gov/1292/Sheriff" + }, + { + "kind": "department-page", + "url": "https://www.napacounty.gov/1579/Public-Safety", + "reviewed": false, + "evidenceUrl": "https://www.napacounty.gov/1579/Public-Safety" + }, + { + "kind": "department-page", + "url": "https://www.cityofnapa.org/472/Office-of-the-Chief-of-Police", + "reviewed": false, + "evidenceUrl": "https://www.cityofnapa.org/472/Office-of-the-Chief-of-Police" + } + ] + }, + { + "geoid": "0650398", + "name": "National City", + "state": "CA", + "slug": "national-city", + "population": 57807, + "lat": 32.665217, + "lon": -117.098784, + "ingestion": { + "url": "https://local.nixle.com/national-city-police-department/", + "format": "nixle", + "publisher": "National City Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/national-city/", + "checkedAt": "2026-09-13T19:19:30.595688+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/national-city-police-department/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/national-city/" + }, + { + "kind": "newsroom", + "url": "https://www.nationalcityca.gov/government/police/press-releases", + "reviewed": false, + "evidenceUrl": "https://www.nationalcityca.gov/government/police/press-releases" + }, + { + "kind": "department-page", + "url": "https://www.nationalcityca.gov/government/police", + "reviewed": false, + "evidenceUrl": "https://www.nationalcityca.gov/government/police" + }, + { + "kind": "department-page", + "url": "https://www.nationalcityca.gov/government/police/directory", + "reviewed": false, + "evidenceUrl": "https://www.nationalcityca.gov/government/police/directory" + } + ] + }, + { + "geoid": "0651182", + "name": "Newport Beach", + "state": "CA", + "slug": "newport-beach", + "population": 81977, + "lat": 33.626595, + "lon": -117.865392, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.nbpd.org/what-s-new/press-releases", + "reviewed": true, + "evidenceUrl": "https://www.nbpd.org/what-s-new/press-releases" + } + ] + }, + { + "geoid": "0652526", + "name": "Norwalk", + "state": "CA", + "slug": "norwalk", + "population": 97104, + "lat": 33.9076, + "lon": -118.083453, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://longbeach.gov/press-release-archive/?cid=6697", + "reviewed": false, + "evidenceUrl": "https://longbeach.gov/press-release-archive/?cid=6697" + }, + { + "kind": "newsroom", + "url": "https://source.www.longbeach.gov/press-release-archive/?cid=6697", + "reviewed": false, + "evidenceUrl": "https://source.www.longbeach.gov/press-release-archive/?cid=6697" + }, + { + "kind": "department-page", + "url": "https://www.norwalkct.gov/139/Police-Department", + "reviewed": false, + "evidenceUrl": "https://www.norwalkct.gov/139/Police-Department" + } + ] + }, + { + "geoid": "0652582", + "name": "Novato", + "state": "CA", + "slug": "novato", + "population": 51947, + "lat": 38.085087, + "lon": -122.548272, + "ingestion": { + "url": "https://local.nixle.com/novato-police-ca/", + "format": "nixle", + "publisher": "Novato Police, CA", + "evidenceUrl": "https://local.nixle.com/city/ca/novato/", + "checkedAt": "2026-09-13T19:19:31.345058+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/novato-police-ca/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/novato/" + }, + { + "kind": "department-page", + "url": "https://www.novato.gov/government/police-department", + "reviewed": false, + "evidenceUrl": "https://www.novato.gov/government/police-department" + }, + { + "kind": "department-page", + "url": "https://www.novato.gov/government/police-department?locale=es", + "reviewed": false, + "evidenceUrl": "https://www.novato.gov/government/police-department?locale=es" + }, + { + "kind": "department-page", + "url": "https://www.novato.gov/government/police-department/crime-map", + "reviewed": false, + "evidenceUrl": "https://www.novato.gov/government/police-department/crime-map" + } + ] + }, + { + "geoid": "0653000", + "name": "Oakland", + "state": "CA", + "slug": "oakland", + "population": 440838, + "lat": 37.769846, + "lon": -122.22569, + "ingestion": { + "url": "https://local.nixle.com/oakland-police-department-ca/", + "format": "nixle", + "publisher": "Oakland Police Department CA", + "evidenceUrl": "https://local.nixle.com/city/ca/oakland/", + "checkedAt": "2026-09-13T19:19:32.125369+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/oakland-police-department-ca/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/oakland/" + }, + { + "kind": "incident-log", + "url": "https://www.oaklandca.gov/Public-Safety-Streets/Police/Police-Services-Priorities/OPD-Daily-Log", + "reviewed": false, + "evidenceUrl": "https://www.oaklandca.gov/Public-Safety-Streets/Police" + }, + { + "kind": "incident-log", + "url": "https://www.oaklandca.gov/Public-Safety-Streets/Report-a-Crime/Report-a-Crime-in-Person-or-Phone", + "reviewed": false, + "evidenceUrl": "https://www.oaklandca.gov/Public-Safety-Streets" + }, + { + "kind": "newsroom", + "url": "https://www.oaklandca.gov/News-Releases?dlv_OC+CL+City+News+Listing=%28dd_OC+News+Categories%3DPolice%29", + "reviewed": false, + "evidenceUrl": "https://www.oaklandca.gov/Public-Safety-Streets/Police" + }, + { + "kind": "newsroom", + "url": "https://www.oaklandca.gov/Government/News-Updates/News", + "reviewed": false, + "evidenceUrl": "https://www.oaklandca.gov/Government/News-Updates" + }, + { + "kind": "newsroom", + "url": "https://www.oaklandca.gov/Government/Departments/Newsroom", + "reviewed": false, + "evidenceUrl": "https://www.oaklandca.gov/Public-Safety-Streets" + } + ] + }, + { + "geoid": "0653322", + "name": "Oceanside", + "state": "CA", + "slug": "oceanside", + "population": 170483, + "lat": 33.224601, + "lon": -117.306291, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.oceansidepolice.com/about-opd/press-releases", + "reviewed": true, + "evidenceUrl": "https://www.oceansidepolice.com/about-opd/press-releases" + } + ] + }, + { + "geoid": "0653896", + "name": "Ontario", + "state": "CA", + "slug": "ontario", + "population": 187013, + "lat": 34.037042, + "lon": -117.605956, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.ontarioca.gov/government/police", + "reviewed": false, + "evidenceUrl": "https://www.ontarioca.gov/government/police" + }, + { + "kind": "department-page", + "url": "https://www.ontarioca.gov/government/police/about-us/contact-us", + "reviewed": false, + "evidenceUrl": "https://www.ontarioca.gov/government/police/about-us/contact-us" + }, + { + "kind": "department-page", + "url": "https://www.ontarioca.gov/government/police/online-police-reporting", + "reviewed": false, + "evidenceUrl": "https://www.ontarioca.gov/government/police/online-police-reporting" + } + ] + }, + { + "geoid": "0653980", + "name": "Orange", + "state": "CA", + "slug": "orange", + "population": 138365, + "lat": 33.786971, + "lon": -117.861265, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.cityoforange.org/our-city/departments/police/records-bureau", + "reviewed": false, + "evidenceUrl": "https://www.cityoforange.org/our-city/departments/police/records-bureau" + }, + { + "kind": "department-page", + "url": "https://www.cityoforange.org/our-city/departments/police/public-information", + "reviewed": false, + "evidenceUrl": "https://www.cityoforange.org/our-city/departments/police/public-information" + }, + { + "kind": "department-page", + "url": "https://www.cityoforange.org/our-city/departments/police/file-an-online-police-report", + "reviewed": false, + "evidenceUrl": "https://www.cityoforange.org/our-city/departments/police/file-an-online-police-report" + } + ] + }, + { + "geoid": "0654652", + "name": "Oxnard", + "state": "CA", + "slug": "oxnard", + "population": 199651, + "lat": 34.199436, + "lon": -119.207515, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.oxnard.gov/police-department/pd-news", + "reviewed": false, + "evidenceUrl": "https://www.oxnard.gov/police-department/pd-news" + }, + { + "kind": "department-page", + "url": "https://www.oxnard.gov/police-department", + "reviewed": false, + "evidenceUrl": "https://www.oxnard.gov/police-department" + } + ] + }, + { + "geoid": "0655184", + "name": "Palm Desert", + "state": "CA", + "slug": "palm-desert", + "population": 53259, + "lat": 33.737635, + "lon": -116.364145, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.palmdesert.gov/community/public-safety", + "reviewed": false, + "evidenceUrl": "https://www.palmdesert.gov/community/public-safety" + } + ] + }, + { + "geoid": "0655156", + "name": "Palmdale", + "state": "CA", + "slug": "palmdale", + "population": 161845, + "lat": 34.591038, + "lon": -118.105403, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.cityofpalmdaleca.gov/m/newsflash/home/detail/1859", + "reviewed": false, + "evidenceUrl": "https://www.cityofpalmdaleca.gov/m/newsflash/home/detail/1859" + }, + { + "kind": "department-page", + "url": "https://file.lacounty.gov/lasd/cms1_154628.pdf", + "reviewed": false, + "evidenceUrl": "https://file.lacounty.gov/lasd/cms1_154628.pdf" + } + ] + }, + { + "geoid": "0655282", + "name": "Palo Alto", + "state": "CA", + "slug": "palo-alto", + "population": 67609, + "lat": 37.39652, + "lon": -122.143088, + "ingestion": { + "url": "https://local.nixle.com/palo-alto-police-department/", + "format": "nixle", + "publisher": "Palo Alto Police Department", + "evidenceUrl": "https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections", + "checkedAt": "2026-09-13T19:03:12.637970+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/palo-alto-police-department/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections" + }, + { + "kind": "x", + "url": "https://x.com/paloaltopolice", + "reviewed": false, + "evidenceUrl": "https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections" + }, + { + "kind": "newsroom", + "url": "https://www.paloalto.gov/Departments/Police/Public-Information-Portal/News-Releases", + "reviewed": false, + "evidenceUrl": "https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections" + }, + { + "kind": "newsroom", + "url": "https://www.paloalto.gov/City-Hall/News-Press-Releases", + "reviewed": false, + "evidenceUrl": "https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections" + }, + { + "kind": "department-page", + "url": "https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections", + "reviewed": false, + "evidenceUrl": "curated department URL" + }, + { + "kind": "department-page", + "url": "https://www.paloalto.gov/News-Articles", + "reviewed": false, + "evidenceUrl": "https://www.paloalto.gov/Departments/Police/Public-Information-Portal/Social-Media-Connections" + } + ] + }, + { + "geoid": "0655618", + "name": "Paramount", + "state": "CA", + "slug": "paramount", + "population": 50755, + "lat": 33.898883, + "lon": -118.166629, + "ingestion": null, + "references": [ + { + "kind": "incident-log", + "url": "https://www.longbeach.gov/police/news/lbpd-blotter-june-19-2026/", + "reviewed": false, + "evidenceUrl": "https://www.longbeach.gov/police/news/lbpd-blotter-june-19-2026/" + }, + { + "kind": "newsroom", + "url": "https://longbeach.gov/police/press-releases/traffic-fatality---paramount-boulevard-and-56th-street/", + "reviewed": false, + "evidenceUrl": "https://longbeach.gov/police/press-releases/traffic-fatality---paramount-boulevard-and-56th-street/" + }, + { + "kind": "department-page", + "url": "https://www.paramountcity.gov/government/departments/public-safety/", + "reviewed": false, + "evidenceUrl": "https://www.paramountcity.gov/government/departments/public-safety/" + } + ] + }, + { + "geoid": "0656000", + "name": "Pasadena", + "state": "CA", + "slug": "pasadena", + "population": 135804, + "lat": 34.160602, + "lon": -118.137954, + "ingestion": { + "url": "https://www.cityofpasadena.net/police/news/feed/", + "format": "rss", + "publisher": "Pasadena Police Department", + "evidenceUrl": "https://www.cityofpasadena.net/police/news/", + "checkedAt": "2026-09-13T19:03:13.380550+00:00", + "review": "Official police publisher; public RSS contains current police announcements." + }, + "references": [ + { + "url": "https://www.cityofpasadena.net/police/news/feed/", + "kind": "rss", + "reviewed": true, + "evidenceUrl": "https://www.cityofpasadena.net/police/news/" + }, + { + "kind": "x", + "url": "https://x.com/pasadenapd", + "reviewed": false, + "evidenceUrl": "https://www.cityofpasadena.net/police/" + }, + { + "kind": "incident-log", + "url": "https://www.cityofpasadena.net/police/crime/report-a-crime/", + "reviewed": false, + "evidenceUrl": "https://www.cityofpasadena.net/police/" + }, + { + "kind": "newsroom", + "url": "https://www.cityofpasadena.net/police/news/", + "reviewed": false, + "evidenceUrl": "https://www.cityofpasadena.net/police/" + }, + { + "kind": "department-page", + "url": "https://www.cityofpasadena.net/police/", + "reviewed": false, + "evidenceUrl": "https://www.cityofpasadena.net/" + }, + { + "kind": "department-page", + "url": "https://www.cityofpasadena.net/event/public-safety-committee/", + "reviewed": false, + "evidenceUrl": "https://www.cityofpasadena.net/" + } + ] + }, + { + "geoid": "0656700", + "name": "Perris", + "state": "CA", + "slug": "perris", + "population": 83237, + "lat": 33.789849, + "lon": -117.222171, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.cityofperris.org/departments/public-safety", + "reviewed": false, + "evidenceUrl": "https://www.cityofperris.org/departments/public-safety" + }, + { + "kind": "department-page", + "url": "https://www.cityofperris.org/departments/public-safety/police", + "reviewed": false, + "evidenceUrl": "https://www.cityofperris.org/departments/public-safety/police" + } + ] + }, + { + "geoid": "0656784", + "name": "Petaluma", + "state": "CA", + "slug": "petaluma", + "population": 59688, + "lat": 38.242251, + "lon": -122.628769, + "ingestion": { + "url": "https://local.nixle.com/petaluma-police-department/", + "format": "nixle", + "publisher": "Petaluma Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/petaluma/", + "checkedAt": "2026-09-13T19:19:33.043055+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/petaluma-police-department/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/petaluma/" + }, + { + "kind": "nextdoor", + "url": "https://nextdoor.com/agency-detail/ca/petaluma/petaluma-police-department/", + "reviewed": false, + "evidenceUrl": "https://nextdoor.com/agency-detail/ca/petaluma/petaluma-police-department/" + }, + { + "kind": "nextdoor", + "url": "https://api.us.nextdoor.com/agency-detail/ca/petaluma/petaluma-police-department/", + "reviewed": false, + "evidenceUrl": "https://api.us.nextdoor.com/agency-detail/ca/petaluma/petaluma-police-department/" + } + ] + }, + { + "geoid": "0656924", + "name": "Pico Rivera", + "state": "CA", + "slug": "pico-rivera", + "population": 58915, + "lat": 33.989524, + "lon": -118.089295, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://origin.www.longbeach.gov/police/press-releases/at-risk-missing---mcgiffert/", + "reviewed": false, + "evidenceUrl": "https://origin.www.longbeach.gov/police/press-releases/at-risk-missing---mcgiffert/" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/lasd---pico-rivera-station-los-angeles-county-sheriff/", + "reviewed": false, + "evidenceUrl": "https://local.nixle.com/city/ca/pico-rivera/" + } + ] + }, + { + "geoid": "0657456", + "name": "Pittsburg", + "state": "CA", + "slug": "pittsburg", + "population": 77542, + "lat": 38.01769, + "lon": -121.900395, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.pittsburgca.gov/services/police/contact-police-news-events", + "reviewed": false, + "evidenceUrl": "https://www.pittsburgca.gov/services/police/contact-police-news-events" + }, + { + "kind": "department-page", + "url": "https://www.pittsburgca.gov/services/police/online-crime-reporting", + "reviewed": false, + "evidenceUrl": "https://www.pittsburgca.gov/services/police/online-crime-reporting" + }, + { + "kind": "department-page", + "url": "https://www.pittsburgca.gov/services/police/support-services-bureau/records-division", + "reviewed": false, + "evidenceUrl": "https://www.pittsburgca.gov/services/police/support-services-bureau/records-division" + } + ] + }, + { + "geoid": "0657526", + "name": "Placentia", + "state": "CA", + "slug": "placentia", + "population": 54911, + "lat": 33.881158, + "lon": -117.854783, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.placentia.org/17/Police", + "reviewed": false, + "evidenceUrl": "https://www.placentia.org/" + }, + { + "kind": "department-page", + "url": "https://www.ocsheriff.gov/occrimestoppers", + "reviewed": false, + "evidenceUrl": "https://www.placentia.org/17/Police" + }, + { + "kind": "department-page", + "url": "https://www.placentia.org/592/Transparency", + "reviewed": false, + "evidenceUrl": "https://www.placentia.org/17/Police" + }, + { + "kind": "department-page", + "url": "https://www.placentia.org/938/Critical-Incidents", + "reviewed": false, + "evidenceUrl": "https://www.placentia.org/17/Police" + }, + { + "kind": "facebook", + "url": "http://www.facebook.com/placentiapd", + "reviewed": false, + "evidenceUrl": "https://www.placentia.org/17/Police" + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/placentiapd", + "reviewed": false, + "evidenceUrl": "https://www.placentia.org/17/Police" + } + ] + }, + { + "geoid": "0657792", + "name": "Pleasanton", + "state": "CA", + "slug": "pleasanton", + "population": 74556, + "lat": 37.667185, + "lon": -121.88123, + "ingestion": { + "url": "https://local.nixle.com/pleasanton-police-department/", + "format": "nixle", + "publisher": "Pleasanton Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/pleasanton/", + "checkedAt": "2026-09-13T19:19:34.560058+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/pleasanton-police-department/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/pleasanton/" + }, + { + "kind": "x", + "url": "https://x.com/pleasantonpd", + "reviewed": false, + "evidenceUrl": "https://www.cityofpleasantonca.gov/our-government/police/" + }, + { + "kind": "incident-log", + "url": "https://www.cityofpleasantonca.gov/our-government/police/crime-mapping-blotter/", + "reviewed": false, + "evidenceUrl": "https://www.cityofpleasantonca.gov/our-government/police/" + }, + { + "kind": "department-page", + "url": "https://www.cityofpleasantonca.gov/our-government/police/", + "reviewed": false, + "evidenceUrl": "https://www.cityofpleasantonca.gov/" + }, + { + "kind": "department-page", + "url": "https://www.cityofpleasantonca.gov/our-government/police/contact-us/", + "reviewed": false, + "evidenceUrl": "https://www.cityofpleasantonca.gov/" + }, + { + "kind": "department-page", + "url": "https://www.cityofpleasantonca.gov/news/", + "reviewed": false, + "evidenceUrl": "https://www.cityofpleasantonca.gov/our-government/police/" + } + ] + }, + { + "geoid": "0658072", + "name": "Pomona", + "state": "CA", + "slug": "pomona", + "population": 147807, + "lat": 34.058494, + "lon": -117.761091, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.pomonaca.gov/government/departments/police-department?locale=en", + "reviewed": false, + "evidenceUrl": "https://www.pomonaca.gov/government/departments/police-department?locale=en" + }, + { + "kind": "department-page", + "url": "https://www.pomonaca.gov/government/departments/police-department?locale=en"=", + "reviewed": false, + "evidenceUrl": "https://www.pomonaca.gov/government/departments/police-department?locale=en"=" + }, + { + "kind": "department-page", + "url": "https://locator.lacounty.gov/lac/Location/3175457/city-of-pomona-police-department", + "reviewed": false, + "evidenceUrl": "https://locator.lacounty.gov/lac/Location/3175457/city-of-pomona-police-department" + } + ] + }, + { + "geoid": "0658240", + "name": "Porterville", + "state": "CA", + "slug": "porterville", + "population": 63088, + "lat": 36.063542, + "lon": -119.0336, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.ci.porterville.ca.us/departments/police/index.php", + "reviewed": false, + "evidenceUrl": "https://www.ci.porterville.ca.us/" + }, + { + "kind": "department-page", + "url": "https://www.ci.porterville.ca.us/departments/police/about_us.php", + "reviewed": false, + "evidenceUrl": "https://www.ci.porterville.ca.us/" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/portervillepd", + "reviewed": false, + "evidenceUrl": "https://www.ci.porterville.ca.us/departments/police/index.php" + } + ] + }, + { + "geoid": "0659444", + "name": "Rancho Cordova", + "state": "CA", + "slug": "rancho-cordova", + "population": 87554, + "lat": 38.577079, + "lon": -121.236187, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.ranchocordovapd.com/", + "reviewed": true, + "evidenceUrl": "https://www.ranchocordovapd.com/" + } + ] + }, + { + "geoid": "0659451", + "name": "Rancho Cucamonga", + "state": "CA", + "slug": "rancho-cucamonga", + "population": 177856, + "lat": 34.130306, + "lon": -117.566067, + "ingestion": { + "url": "https://local.nixle.com/sbsd---rancho-cucamonga-police-department/", + "format": "nixle", + "publisher": "SBSD - Rancho Cucamonga Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/rancho-cucamonga/", + "checkedAt": "2026-09-13T19:19:35.321167+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/sbsd---rancho-cucamonga-police-department/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/rancho-cucamonga/" + }, + { + "kind": "x", + "url": "https://x.com/ranchopd", + "reviewed": false, + "evidenceUrl": "https://www.cityofrc.us/RCPD" + }, + { + "kind": "department-page", + "url": "https://www.cityofrc.us/public-safety", + "reviewed": false, + "evidenceUrl": "https://www.cityofrc.us/" + }, + { + "kind": "department-page", + "url": "https://www.cityofrc.us/public-safety/police/pay-citation", + "reviewed": false, + "evidenceUrl": "https://www.cityofrc.us/" + }, + { + "kind": "department-page", + "url": "https://www.cityofrc.us/RCPD", + "reviewed": false, + "evidenceUrl": "https://www.cityofrc.us/public-safety" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/RanchoPD/", + "reviewed": false, + "evidenceUrl": "https://www.cityofrc.us/RCPD" + } + ] + }, + { + "geoid": "0659920", + "name": "Redding", + "state": "CA", + "slug": "redding", + "population": 94092, + "lat": 40.570277, + "lon": -122.366766, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://files.cityofredding.gov/government/departments/police/index.php", + "reviewed": false, + "evidenceUrl": "https://files.cityofredding.gov/government/departments/police/index.php" + }, + { + "kind": "department-page", + "url": "https://files.cityofredding.gov/government/departments/police/crime_info/crime_statistics.php", + "reviewed": false, + "evidenceUrl": "https://files.cityofredding.gov/government/departments/police/crime_info/crime_statistics.php" + }, + { + "kind": "department-page", + "url": "https://files.cityofredding.gov/Document%20Center/Departments/Police/Policies%20%26%20Reference%20Library/Policy%20Manual/General%20Operations/316_Public_Alerts.pdf", + "reviewed": false, + "evidenceUrl": "https://files.cityofredding.gov/Document%20Center/Departments/Police/Policies%20%26%20Reference%20Library/Policy%20Manual/General%20Operations/316_Public_Alerts.pdf" + } + ] + }, + { + "geoid": "0659962", + "name": "Redlands", + "state": "CA", + "slug": "redlands", + "population": 74128, + "lat": 34.053506, + "lon": -117.170476, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.redlands.gov/newsroom/", + "reviewed": false, + "evidenceUrl": "https://www.redlands.gov/police-appointments/" + }, + { + "kind": "newsroom", + "url": "https://www.redlands.gov/news-events/newsroom/", + "reviewed": false, + "evidenceUrl": "https://www.redlands.gov/news-events/" + }, + { + "kind": "department-page", + "url": "https://www.redlands.gov/public-safety/", + "reviewed": false, + "evidenceUrl": "https://www.redlands.gov/" + }, + { + "kind": "department-page", + "url": "https://www.redlands.gov/police-appointments/", + "reviewed": false, + "evidenceUrl": "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" + }, + { + "kind": "department-page", + "url": "https://www.redlands.gov/news-events/", + "reviewed": false, + "evidenceUrl": "https://www.redlands.gov/police-appointments/" + }, + { + "kind": "department-page", + "url": "https://www.redlands.gov/social-media/", + "reviewed": false, + "evidenceUrl": "https://www.redlands.gov/police-appointments/" + } + ] + }, + { + "geoid": "0660018", + "name": "Redondo Beach", + "state": "CA", + "slug": "redondo-beach", + "population": 67281, + "lat": 33.849538, + "lon": -118.400755, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://locator.lacounty.gov/lac/Location/3068962/city-of-redondo-beach-police-department", + "reviewed": false, + "evidenceUrl": "https://locator.lacounty.gov/lac/Location/3068962/city-of-redondo-beach-police-department" + }, + { + "kind": "department-page", + "url": "https://www.redondo.org/Police%20Pictures/PD%20PDF/Transparency/RBPD%20Policy%20Manual%20September%202024.pdf", + "reviewed": false, + "evidenceUrl": "https://www.redondo.org/Police%20Pictures/PD%20PDF/Transparency/RBPD%20Policy%20Manual%20September%202024.pdf" + } + ] + }, + { + "geoid": "0660102", + "name": "Redwood City", + "state": "CA", + "slug": "redwood-city", + "population": 82178, + "lat": 37.515274, + "lon": -122.213672, + "ingestion": { + "url": "https://local.nixle.com/redwood-city-police-department/", + "format": "nixle", + "publisher": "Redwood City Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/redwood-city/", + "checkedAt": "2026-09-13T19:19:36.030761+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/redwood-city-police-department/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/redwood-city/" + }, + { + "kind": "department-page", + "url": "https://www.redwoodcity.org/departments/police-department", + "reviewed": false, + "evidenceUrl": "https://www.redwoodcity.org/departments/police-department" + }, + { + "kind": "department-page", + "url": "https://www.redwoodcity.org/departments/police-department/connect-with-us", + "reviewed": false, + "evidenceUrl": "https://www.redwoodcity.org/departments/police-department/connect-with-us" + }, + { + "kind": "department-page", + "url": "https://www.redwoodcity.org/departments/police-department/about-us/community-policing", + "reviewed": false, + "evidenceUrl": "https://www.redwoodcity.org/departments/police-department/about-us/community-policing" + } + ] + }, + { + "geoid": "0660466", + "name": "Rialto", + "state": "CA", + "slug": "rialto", + "population": 106554, + "lat": 34.117427, + "lon": -117.389211, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.rialtoca.gov/m/directory/department?did=53", + "reviewed": false, + "evidenceUrl": "https://www.rialtoca.gov/m/directory/department?did=53" + } + ] + }, + { + "geoid": "0660620", + "name": "Richmond", + "state": "CA", + "slug": "richmond", + "population": 114861, + "lat": 37.952278, + "lon": -122.360609, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.richmondca.gov/4693/Press-Releases", + "reviewed": false, + "evidenceUrl": "https://www.richmondca.gov/82/Police-Department" + }, + { + "kind": "newsroom", + "url": "https://www.richmondca.gov/4720/News-and-Press-Releases", + "reviewed": false, + "evidenceUrl": "https://www.richmondca.gov/82/Police-Department" + }, + { + "kind": "department-page", + "url": "https://www.richmondca.gov/82/Police-Department", + "reviewed": false, + "evidenceUrl": "https://www.richmondca.gov/" + }, + { + "kind": "department-page", + "url": "https://www.richmondca.gov/4689/Crime-Data", + "reviewed": false, + "evidenceUrl": "https://www.richmondca.gov/82/Police-Department" + }, + { + "kind": "department-page", + "url": "https://www.richmondca.gov/4582/KCRT-Media", + "reviewed": false, + "evidenceUrl": "https://www.richmondca.gov/82/Police-Department" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/richmondpolicecali/", + "reviewed": false, + "evidenceUrl": "https://www.richmondca.gov/82/Police-Department" + } + ] + }, + { + "geoid": "0662000", + "name": "Riverside", + "state": "CA", + "slug": "riverside", + "population": 323057, + "lat": 33.938143, + "lon": -117.393168, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://riversideca.gov/rpd/rpd/rpd/", + "reviewed": false, + "evidenceUrl": "https://riversideca.gov/rpd/rpd/rpd/" + }, + { + "kind": "department-page", + "url": "https://www.riversideca.gov/rpd/about-contact", + "reviewed": false, + "evidenceUrl": "https://www.riversideca.gov/rpd/about-contact" + }, + { + "kind": "department-page", + "url": "https://riversideca.gov/Explore/2018/Explore_WinSpr_DIGITAL_Linked.pdf", + "reviewed": false, + "evidenceUrl": "https://riversideca.gov/Explore/2018/Explore_WinSpr_DIGITAL_Linked.pdf" + } + ] + }, + { + "geoid": "0662364", + "name": "Rocklin", + "state": "CA", + "slug": "rocklin", + "population": 76821, + "lat": 38.806868, + "lon": -121.249696, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.rocklin.ca.us/news/police-department-news", + "reviewed": false, + "evidenceUrl": "https://www.rocklin.ca.us/news/police-department-news" + }, + { + "kind": "newsroom", + "url": "https://www.rocklin.ca.us/overview/pd-news-and-crime-reports", + "reviewed": false, + "evidenceUrl": "https://www.rocklin.ca.us/overview/pd-news-and-crime-reports" + }, + { + "kind": "department-page", + "url": "https://www.rocklin.ca.us/locations-link/police-department", + "reviewed": false, + "evidenceUrl": "https://www.rocklin.ca.us/locations-link/police-department" + } + ] + }, + { + "geoid": "0662938", + "name": "Roseville", + "state": "CA", + "slug": "roseville", + "population": 167302, + "lat": 38.770296, + "lon": -121.319634, + "ingestion": null, + "references": [ + { + "kind": "x", + "url": "https://x.com/rsvl_police", + "reviewed": false, + "evidenceUrl": "https://www.roseville.ca.gov/police/index.php" + }, + { + "kind": "incident-log", + "url": "https://www.roseville.ca.gov/police/police/resources/crime_log_reports.php", + "reviewed": false, + "evidenceUrl": "https://www.roseville.ca.gov/police/index.php" + }, + { + "kind": "department-page", + "url": "https://www.roseville.ca.gov/police/index.php", + "reviewed": false, + "evidenceUrl": "https://www.roseville.ca.gov/" + }, + { + "kind": "department-page", + "url": "https://www.roseville.ca.gov/police/animal_control/index.php", + "reviewed": false, + "evidenceUrl": "https://www.roseville.ca.gov/" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/RosevilleCaliforniaPolice/", + "reviewed": false, + "evidenceUrl": "https://www.roseville.ca.gov/police/index.php" + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/company/roseville-police-department/", + "reviewed": false, + "evidenceUrl": "https://www.roseville.ca.gov/police/index.php" + } + ] + }, + { + "geoid": "0664000", + "name": "Sacramento", + "state": "CA", + "slug": "sacramento", + "population": 536449, + "lat": 38.567694, + "lon": -121.468161, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.cityofsacramento.gov/mayor-council/district-1/d1-community-meetings", + "reviewed": false, + "evidenceUrl": "https://www.cityofsacramento.gov/opsa" + }, + { + "kind": "department-page", + "url": "https://www.cityofsacramento.gov/opsa", + "reviewed": false, + "evidenceUrl": "https://www.cityofsacramento.gov/" + }, + { + "kind": "department-page", + "url": "https://www.cityofsacramento.gov/ccs/esd/film-media", + "reviewed": false, + "evidenceUrl": "https://www.cityofsacramento.gov/opsa" + } + ] + }, + { + "geoid": "0664224", + "name": "Salinas", + "state": "CA", + "slug": "salinas", + "population": 159134, + "lat": 36.690217, + "lon": -121.633793, + "ingestion": { + "url": "https://police.salinas.gov/feed/", + "format": "rss", + "publisher": "Salinas Police Department", + "evidenceUrl": "https://police.salinas.gov/", + "checkedAt": "2026-09-13T19:03:14.043058+00:00", + "review": "Official police publisher; public RSS contains current police announcements." + }, + "references": [ + { + "url": "https://police.salinas.gov/feed/", + "kind": "rss", + "reviewed": true, + "evidenceUrl": "https://police.salinas.gov/" + }, + { + "kind": "x", + "url": "https://x.com/salinaspd", + "reviewed": false, + "evidenceUrl": "https://police.salinas.gov/" + }, + { + "kind": "incident-log", + "url": "https://police.salinas.gov/hate-crime-reporting/", + "reviewed": false, + "evidenceUrl": "https://police.salinas.gov/" + }, + { + "kind": "newsroom", + "url": "https://www.salinas.gov/Newsroom", + "reviewed": false, + "evidenceUrl": "https://www.salinas.gov/City-Hall/Boards-and-Commissions/Police-Community-Advisory-Committee" + }, + { + "kind": "newsroom", + "url": "https://www.salinas.gov/Newsroom/News-Articles", + "reviewed": false, + "evidenceUrl": "https://www.salinas.gov/City-Hall/Boards-and-Commissions/Police-Community-Advisory-Committee" + }, + { + "kind": "newsroom", + "url": "https://www.salinas.gov/Newsroom/Press-Releases", + "reviewed": false, + "evidenceUrl": "https://www.salinas.gov/City-Hall/Boards-and-Commissions/Police-Community-Advisory-Committee" + } + ] + }, + { + "geoid": "0665000", + "name": "San Bernardino", + "state": "CA", + "slug": "san-bernardino", + "population": 222044, + "lat": 34.14114, + "lon": -117.294635, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.sanbernardino.gov/police", + "reviewed": false, + "evidenceUrl": "https://www.sanbernardino.gov/police" + }, + { + "kind": "department-page", + "url": "https://sanbernardino.gov/FormCenter/Police-Department-10", + "reviewed": false, + "evidenceUrl": "https://sanbernardino.gov/FormCenter/Police-Department-10" + }, + { + "kind": "department-page", + "url": "https://www.sanbernardino.gov/600/Crime-Statistics", + "reviewed": false, + "evidenceUrl": "https://www.sanbernardino.gov/600/Crime-Statistics" + } + ] + }, + { + "geoid": "0665042", + "name": "San Buenaventura (Ventura)", + "state": "CA", + "slug": "san-buenaventura-ventura", + "population": 109914, + "lat": 34.26778, + "lon": -119.254206, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.cityofventura.ca.gov/Blog.aspx?CID=5", + "reviewed": true, + "evidenceUrl": "https://www.cityofventura.ca.gov/Blog.aspx?CID=5" + } + ] + }, + { + "geoid": "0665084", + "name": "San Clemente", + "state": "CA", + "slug": "san-clemente", + "population": 62226, + "lat": 33.449143, + "lon": -117.61312, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://ocsheriff.gov/patrol-areas/san-clemente", + "reviewed": false, + "evidenceUrl": "https://ocsheriff.gov/patrol-areas/san-clemente" + }, + { + "kind": "department-page", + "url": "https://www.sanclemente.gov/301/Police-Services-OCSD", + "reviewed": false, + "evidenceUrl": "https://www.sanclemente.gov/301/Police-Services-OCSD" + }, + { + "kind": "department-page", + "url": "https://www.sanclemente.gov/239/Public-Safety-Services", + "reviewed": false, + "evidenceUrl": "https://www.sanclemente.gov/239/Public-Safety-Services" + } + ] + }, + { + "geoid": "0666000", + "name": "San Diego", + "state": "CA", + "slug": "san-diego", + "population": 1406106, + "lat": 32.830391, + "lon": -117.120923, + "ingestion": null, + "references": [ + { + "kind": "x", + "url": "https://x.com/sandiegopd", + "reviewed": false, + "evidenceUrl": "https://www.sandiego.gov/police" + }, + { + "kind": "newsroom", + "url": "https://www.sandiego.gov/police/news-center", + "reviewed": false, + "evidenceUrl": "https://www.sandiego.gov/police" + }, + { + "kind": "newsroom", + "url": "https://www.sandiego.gov/police/news-center/cold-cases", + "reviewed": false, + "evidenceUrl": "https://www.sandiego.gov/police/news-center" + }, + { + "kind": "newsroom", + "url": "https://www.sandiego.gov/police/news-center/news-releases", + "reviewed": false, + "evidenceUrl": "https://www.sandiego.gov/police" + }, + { + "kind": "newsroom", + "url": "https://www.sandiego.gov/police/news-center/public-records-act-request", + "reviewed": false, + "evidenceUrl": "https://www.sandiego.gov/police/news-center" + }, + { + "kind": "department-page", + "url": "https://www.sandiego.gov/police", + "reviewed": false, + "evidenceUrl": "https://www.sandiego.gov/" + } + ] + }, + { + "geoid": "0667000", + "name": "San Francisco", + "state": "CA", + "slug": "san-francisco", + "population": 826079, + "lat": 37.727239, + "lon": -123.032229, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.ssfca.gov/Departments/Police-Department/Divisions/Services", + "reviewed": false, + "evidenceUrl": "https://www.ssfca.gov/Departments/Police-Department/Divisions/Services" + }, + { + "kind": "department-page", + "url": "https://media.api.sf.gov/documents/PoliceCommission101624-_Commission_Crime_Trends_Notes_10.16.24.pdf", + "reviewed": false, + "evidenceUrl": "https://media.api.sf.gov/documents/PoliceCommission101624-_Commission_Crime_Trends_Notes_10.16.24.pdf" + }, + { + "kind": "department-page", + "url": "https://media.api.sf.gov/documents/Commission_Crime_Trends_Notes_09.11.24.pdf", + "reviewed": false, + "evidenceUrl": "https://media.api.sf.gov/documents/Commission_Crime_Trends_Notes_09.11.24.pdf" + } + ] + }, + { + "geoid": "0667112", + "name": "San Jacinto", + "state": "CA", + "slug": "san-jacinto", + "population": 56014, + "lat": 33.798864, + "lon": -116.995914, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.sanjacintoca.gov/community/press_releases", + "reviewed": false, + "evidenceUrl": "https://www.sanjacintoca.gov/city_departments/public-safety" + }, + { + "kind": "department-page", + "url": "https://www.sanjacintoca.gov/city_departments/public-safety", + "reviewed": false, + "evidenceUrl": "https://www.sanjacintoca.gov/" + }, + { + "kind": "department-page", + "url": "https://www.sanjacintoca.gov/city_departments/public-safety/police-department", + "reviewed": false, + "evidenceUrl": "https://www.sanjacintoca.gov/" + }, + { + "kind": "department-page", + "url": "https://www.sanjacintoca.gov/city_departments/city-managers-office/social_media", + "reviewed": false, + "evidenceUrl": "https://www.sanjacintoca.gov/city_departments/public-safety" + } + ] + }, + { + "geoid": "0668000", + "name": "San Jose", + "state": "CA", + "slug": "san-jose", + "population": 989814, + "lat": 37.296011, + "lon": -121.814552, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.sjpd.org/about-us/inside-sjpd/press-releases", + "reviewed": true, + "evidenceUrl": "https://www.sjpd.org/about-us/organization/office-of-the-chief-of-police/media-relations-pio" + }, + { + "kind": "x", + "url": "https://x.com/sjpd_pio", + "reviewed": false, + "evidenceUrl": "https://info.sjpd.org/records/pc-13650_library/Unit%20Guidelines/Media%20Relations%20Unit%20Guidelines%20UPDATE%201-4-2024_Redacted.pdf" + } + ] + }, + { + "geoid": "0668084", + "name": "San Leandro", + "state": "CA", + "slug": "san-leandro", + "population": 85353, + "lat": 37.703368, + "lon": -122.163036, + "ingestion": { + "url": "https://local.nixle.com/san-leandro-police-department/", + "format": "nixle", + "publisher": "San Leandro Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/san-leandro/", + "checkedAt": "2026-09-13T19:19:38.241109+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/san-leandro-police-department/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/san-leandro/" + }, + { + "kind": "department-page", + "url": "https://www.sanleandro.org/police", + "reviewed": false, + "evidenceUrl": "https://www.sanleandro.org/police" + }, + { + "kind": "department-page", + "url": "https://www.sanleandro.org/448/Crime-Stats", + "reviewed": false, + "evidenceUrl": "https://www.sanleandro.org/448/Crime-Stats" + }, + { + "kind": "department-page", + "url": "https://www.sanleandro.org/449/Crime-Stats", + "reviewed": false, + "evidenceUrl": "https://www.sanleandro.org/449/Crime-Stats" + } + ] + }, + { + "geoid": "0668154", + "name": "San Luis Obispo", + "state": "CA", + "slug": "san-luis-obispo", + "population": 50636, + "lat": 35.266195, + "lon": -120.668438, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.slocounty.ca.gov/departments/sheriff-coroner/public-information", + "reviewed": false, + "evidenceUrl": "https://www.slocounty.ca.gov/departments/sheriff-coroner/public-information" + }, + { + "kind": "department-page", + "url": "https://www.slocounty.ca.gov/departments/sheriff-coroner/public-information/services", + "reviewed": false, + "evidenceUrl": "https://www.slocounty.ca.gov/departments/sheriff-coroner/public-information/services" + } + ] + }, + { + "geoid": "0668196", + "name": "San Marcos", + "state": "CA", + "slug": "san-marcos", + "population": 94908, + "lat": 33.132567, + "lon": -117.169892, + "ingestion": null, + "references": [ + { + "kind": "incident-log", + "url": "https://sanmarcosca.prelive.opencities.com/city/Resident-Services/Stay-Safe/Sheriff?transfer=58b85bbe-e588-4e25-a04e-b6a57a46cadc", + "reviewed": false, + "evidenceUrl": "https://www.sanmarcosca.gov/Resident-Services/Stay-Safe/Sheriff" + }, + { + "kind": "department-page", + "url": "https://www.sanmarcosca.gov/Resident-Services/Stay-Safe/Sheriff", + "reviewed": false, + "evidenceUrl": "https://www.sanmarcosca.gov/Home" + } + ] + }, + { + "geoid": "0668252", + "name": "San Mateo", + "state": "CA", + "slug": "san-mateo", + "population": 103337, + "lat": 37.56031, + "lon": -122.3106, + "ingestion": { + "url": "https://local.nixle.com/san-mateo-ca-police-department/", + "format": "nixle", + "publisher": "San Mateo, CA Police Department", + "evidenceUrl": "https://www.cityofsanmateo.org/2729/Social-Media-Mobile-Apps", + "checkedAt": "2026-09-13T19:03:15.256613+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/san-mateo-ca-police-department/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://www.cityofsanmateo.org/2729/Social-Media-Mobile-Apps" + }, + { + "kind": "x", + "url": "https://x.com/sanmateopd", + "reviewed": false, + "evidenceUrl": "https://www.cityofsanmateo.org/2729/Social-Media-Mobile-Apps" + }, + { + "kind": "incident-log", + "url": "https://www.cityofsanmateo.org/1183/Report-a-Crime-Online", + "reviewed": false, + "evidenceUrl": "https://www.cityofsanmateo.org/3639/Public-Safety-Information-Services" + }, + { + "kind": "newsroom", + "url": "https://www.cityofsanmateo.org/4086", + "reviewed": false, + "evidenceUrl": "https://www.cityofsanmateo.org/3639/Public-Safety-Information-Services" + }, + { + "kind": "newsroom", + "url": "https://www.cityofsanmateo.org/4086/Newsroom", + "reviewed": false, + "evidenceUrl": "https://www.cityofsanmateo.org/2729/Social-Media-Mobile-Apps" + }, + { + "kind": "newsroom", + "url": "https://www.cityofsanmateo.org/4029/Press-Releases", + "reviewed": false, + "evidenceUrl": "https://www.cityofsanmateo.org/273/Police" + } + ] + }, + { + "geoid": "0668364", + "name": "San Rafael", + "state": "CA", + "slug": "san-rafael", + "population": 59410, + "lat": 37.981003, + "lon": -122.50693, + "ingestion": { + "url": "https://local.nixle.com/san-rafael-police-department/", + "format": "nixle", + "publisher": "San Rafael Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/san-rafael/", + "checkedAt": "2026-09-13T19:19:38.997997+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/san-rafael-police-department/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/san-rafael/" + }, + { + "kind": "x", + "url": "https://x.com/sanrafaelpolice", + "reviewed": false, + "evidenceUrl": "https://www.cityofsanrafael.org/city-social-media-accounts/" + }, + { + "kind": "department-page", + "url": "https://www.cityofsanrafael.org/event/spanish-community-police-academy-2026-09-16/", + "reviewed": false, + "evidenceUrl": "https://www.cityofsanrafael.org/" + }, + { + "kind": "department-page", + "url": "https://www.cityofsanrafael.org/news/", + "reviewed": false, + "evidenceUrl": "https://www.cityofsanrafael.org/event/spanish-community-police-academy-2026-09-16/" + }, + { + "kind": "department-page", + "url": "https://www.cityofsanrafael.org/city-social-media-accounts/", + "reviewed": false, + "evidenceUrl": "https://www.cityofsanrafael.org/event/spanish-community-police-academy-2026-09-16/" + }, + { + "kind": "department-page", + "url": "https://www.cityofsanrafael.org/wp-content/plugins/elasticpress/dist/css/general-styles.css?ver=66295efe92a630617c00", + "reviewed": false, + "evidenceUrl": "https://www.cityofsanrafael.org/event/spanish-community-police-academy-2026-09-16/" + } + ] + }, + { + "geoid": "0668378", + "name": "San Ramon", + "state": "CA", + "slug": "san-ramon", + "population": 86209, + "lat": 37.765258, + "lon": -121.931987, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.sanramon.ca.gov/our_city/departments_and_divisions/police/police_news/press_releases", + "reviewed": false, + "evidenceUrl": "https://www.sanramon.ca.gov/cms/one.aspx?pageId=12572486" + }, + { + "kind": "newsroom", + "url": "https://www.sanramon.ca.gov/cms/One.aspx?portalId=10826130&pageId=14395745", + "reviewed": false, + "evidenceUrl": "https://www.sanramon.ca.gov/cms/one.aspx?pageId=12572486" + }, + { + "kind": "department-page", + "url": "https://www.sanramon.ca.gov/how_do_i_/submit/police_report", + "reviewed": false, + "evidenceUrl": "https://www.sanramon.ca.gov/" + }, + { + "kind": "department-page", + "url": "https://www.sanramon.ca.gov/news/what_s_new", + "reviewed": false, + "evidenceUrl": "https://www.sanramon.ca.gov/cms/one.aspx?pageId=12572486" + }, + { + "kind": "department-page", + "url": "https://www.sanramon.ca.gov/cms/one.aspx?pageId=12572486", + "reviewed": false, + "evidenceUrl": "https://www.sanramon.ca.gov/" + }, + { + "kind": "department-page", + "url": "https://www.sanramon.ca.gov/our_city/departments_and_divisions/city_manager/economic_development", + "reviewed": false, + "evidenceUrl": "https://www.sanramon.ca.gov/cms/one.aspx?pageId=12572486" + } + ] + }, + { + "geoid": "0669000", + "name": "Santa Ana", + "state": "CA", + "slug": "santa-ana", + "population": 315586, + "lat": 33.736332, + "lon": -117.8829, + "ingestion": null, + "references": [ + { + "kind": "incident-log", + "url": "https://santa-ana.gov/training-bulletins/", + "reviewed": false, + "evidenceUrl": "https://santa-ana.gov/e-police-reporting/" + }, + { + "kind": "incident-log", + "url": "https://santa-ana.gov/hate-crime-reports/", + "reviewed": false, + "evidenceUrl": "https://santa-ana.gov/e-police-reporting/" + }, + { + "kind": "incident-log", + "url": "https://santa-ana.gov/uniform-crime-reporting-statistics/", + "reviewed": false, + "evidenceUrl": "https://santa-ana.gov/e-police-reporting/" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/santa-ana-police-department/", + "reviewed": false, + "evidenceUrl": "https://local.nixle.com/city/ca/santa-ana/" + }, + { + "kind": "department-page", + "url": "https://santa-ana.gov/e-police-reporting/", + "reviewed": false, + "evidenceUrl": "https://santa-ana.gov/" + }, + { + "kind": "department-page", + "url": "https://santa-ana.gov/police-open-government-and-transparency-initiative/", + "reviewed": false, + "evidenceUrl": "https://santa-ana.gov/e-police-reporting/" + } + ] + }, + { + "geoid": "0669070", + "name": "Santa Barbara", + "state": "CA", + "slug": "santa-barbara", + "population": 86422, + "lat": 34.403592, + "lon": -119.713714, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://santabarbaraca.gov/government/city-hall/news/media-releases", + "reviewed": false, + "evidenceUrl": "https://santabarbaraca.gov/government/city-hall/news" + }, + { + "kind": "newsroom", + "url": "https://santabarbaraca.gov/press-releases/introducing-sb-connect-city-just-click-away-new-app-eng/spa", + "reviewed": false, + "evidenceUrl": "https://santabarbaraca.gov/services/sb-connect" + }, + { + "kind": "nixle", + "url": "https://local.nixle.com/santa-barbara-police-department/", + "reviewed": false, + "evidenceUrl": "https://local.nixle.com/city/ca/santa-barbara/" + }, + { + "kind": "department-page", + "url": "https://santabarbaraca.gov/government/departments/santa-barbara-police-department", + "reviewed": false, + "evidenceUrl": "https://santabarbaraca.gov/" + }, + { + "kind": "department-page", + "url": "https://santabarbaraca.gov/services/sb-connect", + "reviewed": false, + "evidenceUrl": "https://santabarbaraca.gov/government/departments/santa-barbara-police-department" + }, + { + "kind": "department-page", + "url": "https://santabarbaraca.gov/government/city-hall/news", + "reviewed": false, + "evidenceUrl": "https://santabarbaraca.gov/government/departments/santa-barbara-police-department" + } + ] + }, + { + "geoid": "0669084", + "name": "Santa Clara", + "state": "CA", + "slug": "santa-clara", + "population": 133446, + "lat": 37.364621, + "lon": -121.967973, + "ingestion": { + "url": "https://local.nixle.com/santa-clara-police-department/", + "format": "nixle", + "publisher": "Santa Clara Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/santa-clara/", + "checkedAt": "2026-09-13T19:19:41.195739+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/santa-clara-police-department/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/santa-clara/" + }, + { + "kind": "incident-log", + "url": "https://www.santaclaraca.gov/our-city/departments-g-z/police-department/crime/arrest-log", + "reviewed": true, + "evidenceUrl": "https://www.santaclaraca.gov/our-city/departments-g-z/police-department/crime/arrest-log" + }, + { + "kind": "x", + "url": "https://x.com/santaclarapd", + "reviewed": false, + "evidenceUrl": "https://www.santaclaraca.gov/home/showpublisheddocument/88189/639080556114870000" + }, + { + "kind": "department-page", + "url": "https://www.santaclaraca.gov/our-city/departments-g-z/police-department", + "reviewed": false, + "evidenceUrl": "https://www.santaclaraca.gov/our-city/departments-g-z/police-department" + }, + { + "kind": "department-page", + "url": "https://www.santaclaraca.gov/Home/Components/RFP/RFP/1687/", + "reviewed": false, + "evidenceUrl": "https://www.santaclaraca.gov/Home/Components/RFP/RFP/1687/" + } + ] + }, + { + "geoid": "0669088", + "name": "Santa Clarita", + "state": "CA", + "slug": "santa-clarita", + "population": 228430, + "lat": 34.416504, + "lon": -118.500693, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://santaclarita.gov/blog/2025/09/20/new-virtual-deputy-services-enhances-public-safety-in-santa-clarita/", + "reviewed": false, + "evidenceUrl": "https://santaclarita.gov/blog/2025/09/20/new-virtual-deputy-services-enhances-public-safety-in-santa-clarita/" + }, + { + "kind": "department-page", + "url": "https://santaclarita.gov/blog/2025/08/14/city-of-santa-clarita-announces-brandon-barclay-as-new-chief-of-police/", + "reviewed": false, + "evidenceUrl": "https://santaclarita.gov/blog/2025/08/14/city-of-santa-clarita-announces-brandon-barclay-as-new-chief-of-police/" + } + ] + }, + { + "geoid": "0669112", + "name": "Santa Cruz", + "state": "CA", + "slug": "santa-cruz", + "population": 61797, + "lat": 36.974385, + "lon": -122.035268, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.santacruzca.gov/Government/City-Departments/Police/News-Alerts/SCPD-Press-Releases", + "reviewed": false, + "evidenceUrl": "https://www.santacruzca.gov/Government/City-Departments/Police" + }, + { + "kind": "newsroom", + "url": "https://www.santacruzca.gov/City-News-Press-Releases/New-page-17", + "reviewed": false, + "evidenceUrl": "https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases" + }, + { + "kind": "newsroom", + "url": "https://www.santacruzca.gov/City-News-Press-Releases/New-page-16", + "reviewed": false, + "evidenceUrl": "https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases" + }, + { + "kind": "newsroom", + "url": "https://www.santacruzca.gov/City-News-Press-Releases/New-page-15", + "reviewed": false, + "evidenceUrl": "https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases" + }, + { + "kind": "newsroom", + "url": "https://www.santacruzca.gov/City-News-Press-Releases/New-page-14", + "reviewed": false, + "evidenceUrl": "https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases" + }, + { + "kind": "newsroom", + "url": "https://www.santacruzca.gov/Government/City-Newsroom-Press-Releases", + "reviewed": false, + "evidenceUrl": "https://www.santacruzca.gov/Government/City-Departments/Police" + } + ] + }, + { + "geoid": "0669196", + "name": "Santa Maria", + "state": "CA", + "slug": "santa-maria", + "population": 111390, + "lat": 34.933076, + "lon": -120.443559, + "ingestion": { + "url": "https://local.nixle.com/santa-maria-police-department/", + "format": "nixle", + "publisher": "Santa Maria Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/santa-maria/", + "checkedAt": "2026-09-13T19:19:42.716791+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/santa-maria-police-department/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/santa-maria/" + }, + { + "kind": "department-page", + "url": "https://www.oag.ca.gov/fingerprints/locations/santa-maria-police-department", + "reviewed": false, + "evidenceUrl": "https://www.oag.ca.gov/fingerprints/locations/santa-maria-police-department" + } + ] + }, + { + "geoid": "0670000", + "name": "Santa Monica", + "state": "CA", + "slug": "santa-monica", + "population": 90082, + "lat": 34.010911, + "lon": -118.498245, + "ingestion": null, + "references": [ + { + "kind": "x", + "url": "https://x.com/santamonicapd", + "reviewed": false, + "evidenceUrl": "https://www.santamonica.gov/departments/police" + }, + { + "kind": "incident-log", + "url": "https://www.santamonicapd.org/crimereport/", + "reviewed": false, + "evidenceUrl": "https://www.santamonica.gov/departments/police" + }, + { + "kind": "incident-log", + "url": "https://www.santamonica.gov/topic-explainers/crime-reports-and-statistics", + "reviewed": false, + "evidenceUrl": "https://www.santamonica.gov/departments/police" + }, + { + "kind": "newsroom", + "url": "https://www.santamonica.gov/press/2026/09/02/smpd-holding-dui-checkpoint-september-4-2026", + "reviewed": false, + "evidenceUrl": "https://www.santamonica.gov/departments/police" + }, + { + "kind": "newsroom", + "url": "https://www.santamonica.gov/press/2026/09/04/smpd-investigating-shots-fired-incident-on-bay-street", + "reviewed": false, + "evidenceUrl": "https://www.santamonica.gov/departments/police" + }, + { + "kind": "newsroom", + "url": "https://www.santamonica.gov/press/2026/09/12/critical-incident-video-released-following-august-22-2026-officer-involved-shooting", + "reviewed": false, + "evidenceUrl": "https://www.santamonica.gov/departments/police" + } + ] + }, + { + "geoid": "0670098", + "name": "Santa Rosa", + "state": "CA", + "slug": "santa-rosa", + "population": 179437, + "lat": 38.445824, + "lon": -122.706181, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.srcity.org/3929/Police", + "reviewed": false, + "evidenceUrl": "https://www.srcity.org/3929/Police" + }, + { + "kind": "department-page", + "url": "https://www.srcity.org/3328/Police-Reports", + "reviewed": false, + "evidenceUrl": "https://www.srcity.org/3328/Police-Reports" + }, + { + "kind": "department-page", + "url": "https://www.bscc.ca.gov/wp-content/uploads/97-Santa-Rosa-Police.pdf", + "reviewed": false, + "evidenceUrl": "https://www.bscc.ca.gov/wp-content/uploads/97-Santa-Rosa-Police.pdf" + } + ] + }, + { + "geoid": "0670224", + "name": "Santee", + "state": "CA", + "slug": "santee", + "population": 58205, + "lat": 32.85499, + "lon": -116.986056, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list", + "reviewed": false, + "evidenceUrl": "https://www.sdsheriff.gov/bureaus/media-relations/news-list" + }, + { + "kind": "newsroom", + "url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-selcat-36/-npage-2", + "reviewed": false, + "evidenceUrl": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-selcat-36/-npage-2" + }, + { + "kind": "newsroom", + "url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-selectview-1/-arch-1", + "reviewed": false, + "evidenceUrl": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-selectview-1/-arch-1" + } + ] + }, + { + "geoid": "0672016", + "name": "Simi Valley", + "state": "CA", + "slug": "simi-valley", + "population": 124861, + "lat": 34.266887, + "lon": -118.748458, + "ingestion": { + "url": "https://local.nixle.com/simi-valley-police-department/", + "format": "nixle", + "publisher": "Simi Valley Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/simi-valley/", + "checkedAt": "2026-09-13T19:19:43.269924+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/simi-valley-police-department/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/simi-valley/" + }, + { + "kind": "newsroom", + "url": "https://www.oag.ca.gov/news/press-releases/california-department-justice-investigating-simi-valley-police-department", + "reviewed": false, + "evidenceUrl": "https://www.oag.ca.gov/news/press-releases/california-department-justice-investigating-simi-valley-police-department" + }, + { + "kind": "department-page", + "url": "https://www.simivalley.org/departments/police-department", + "reviewed": false, + "evidenceUrl": "https://www.simivalley.org/departments/police-department" + }, + { + "kind": "department-page", + "url": "https://www.simivalley.org/departments/police-department/resources", + "reviewed": false, + "evidenceUrl": "https://www.simivalley.org/departments/police-department/resources" + } + ] + }, + { + "geoid": "0673080", + "name": "South Gate", + "state": "CA", + "slug": "south-gate", + "population": 90071, + "lat": 33.944159, + "lon": -118.192761, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://southgatepd.com/news", + "reviewed": false, + "evidenceUrl": "https://southgatepd.com/" + }, + { + "kind": "department-page", + "url": "https://www.cityofsouthgate.org/City-Services/Public-Safety", + "reviewed": false, + "evidenceUrl": "https://www.cityofsouthgate.org/Home" + }, + { + "kind": "department-page", + "url": "https://southgatepd.com/", + "reviewed": false, + "evidenceUrl": "https://www.cityofsouthgate.org/Home" + }, + { + "kind": "department-page", + "url": "https://southgatepd.com/news-and-information/", + "reviewed": false, + "evidenceUrl": "https://southgatepd.com/" + }, + { + "kind": "department-page", + "url": "https://www.cityofsouthgate.org/Engage-South-Gate/E-Newsletter", + "reviewed": false, + "evidenceUrl": "https://www.cityofsouthgate.org/City-Services/Public-Safety" + }, + { + "kind": "department-page", + "url": "https://www.cityofsouthgate.org/Engage-South-Gate/Social-Media", + "reviewed": false, + "evidenceUrl": "https://www.cityofsouthgate.org/City-Services/Public-Safety" + } + ] + }, + { + "geoid": "0673262", + "name": "South San Francisco", + "state": "CA", + "slug": "south-san-francisco", + "population": 64941, + "lat": 37.655104, + "lon": -122.376234, + "ingestion": null, + "references": [ + { + "kind": "incident-log", + "url": "https://www.smcsheriff.com/online-crime-reporting", + "reviewed": false, + "evidenceUrl": "https://www.smcgov.org/hsa/community-information-handbook" + }, + { + "kind": "incident-log", + "url": "https://southsanfranciscopd.citizenrims.com", + "reviewed": false, + "evidenceUrl": "https://www.ssfca.gov/Departments/Police-Department/FAQs" + }, + { + "kind": "newsroom", + "url": "https://www.smcgov.org/newsroom", + "reviewed": false, + "evidenceUrl": "https://www.smcgov.org/hsa/community-information-handbook" + }, + { + "kind": "newsroom", + "url": "https://www.smcgov.org/ceo/newsroom", + "reviewed": false, + "evidenceUrl": "https://www.smcgov.org/hsa/community-information-handbook" + }, + { + "kind": "newsroom", + "url": "https://www.ssfca.gov/News/Clariti-2026", + "reviewed": false, + "evidenceUrl": "https://www.ssfca.gov/Our-City/Living/Resident-News" + }, + { + "kind": "newsroom", + "url": "https://www.ssfca.gov/News/NNO2026Recap", + "reviewed": false, + "evidenceUrl": "https://www.ssfca.gov/Our-City/Living/Resident-News" + } + ] + }, + { + "geoid": "0675000", + "name": "Stockton", + "state": "CA", + "slug": "stockton", + "population": 324597, + "lat": 37.976553, + "lon": -121.308598, + "ingestion": { + "url": "https://local.nixle.com/stockton-police-department-ca/", + "format": "nixle", + "publisher": "Stockton Police Department, CA", + "evidenceUrl": "https://local.nixle.com/city/ca/stockton/", + "checkedAt": "2026-09-13T19:19:43.978293+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/stockton-police-department-ca/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/stockton/" + }, + { + "kind": "newsroom", + "url": "https://oag.ca.gov/news/press-releases/attorney-general-bonta-and-stockton-police-department-announce-34-arrests-seizes", + "reviewed": false, + "evidenceUrl": "https://oag.ca.gov/news/press-releases/attorney-general-bonta-and-stockton-police-department-announce-34-arrests-seizes" + } + ] + }, + { + "geoid": "0677000", + "name": "Sunnyvale", + "state": "CA", + "slug": "sunnyvale", + "population": 156577, + "lat": 37.385797, + "lon": -122.026316, + "ingestion": { + "url": "https://local.nixle.com/sunnyvale-department-of-public-safety/", + "format": "nixle", + "publisher": "Sunnyvale Department of Public Safety", + "evidenceUrl": "https://local.nixle.com/city/ca/sunnyvale/", + "checkedAt": "2026-09-13T19:19:44.697291+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/sunnyvale-department-of-public-safety/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/sunnyvale/" + }, + { + "kind": "social-directory", + "url": "https://www.sunnyvale.ca.gov/your-government/about/social-media-center", + "reviewed": true, + "evidenceUrl": "https://www.sunnyvale.ca.gov/your-government/about/social-media-center" + }, + { + "kind": "department-page", + "url": "https://www.sunnyvale.ca.gov/your-government/departments/public-safety", + "reviewed": false, + "evidenceUrl": "https://www.sunnyvale.ca.gov/your-government/departments/public-safety" + }, + { + "kind": "department-page", + "url": "https://www.sunnyvale.ca.gov/your-government/departments/public-safety/public-safety-services", + "reviewed": false, + "evidenceUrl": "https://www.sunnyvale.ca.gov/your-government/departments/public-safety/public-safety-services" + }, + { + "kind": "department-page", + "url": "https://www.sunnyvale.ca.gov/your-government/departments/public-safety/public-safety-services/crime-statistics", + "reviewed": false, + "evidenceUrl": "https://www.sunnyvale.ca.gov/your-government/departments/public-safety/public-safety-services/crime-statistics" + } + ] + }, + { + "geoid": "0678120", + "name": "Temecula", + "state": "CA", + "slug": "temecula", + "population": 114865, + "lat": 33.493073, + "lon": -117.131734, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.temeculaca.gov/196/Police", + "reviewed": false, + "evidenceUrl": "https://www.temeculaca.gov/196/Police" + }, + { + "kind": "department-page", + "url": "https://temeculaca.gov/228/Temecula-Police-Stations", + "reviewed": false, + "evidenceUrl": "https://temeculaca.gov/228/Temecula-Police-Stations" + }, + { + "kind": "department-page", + "url": "https://temeculaca.gov/publicsafety", + "reviewed": false, + "evidenceUrl": "https://temeculaca.gov/publicsafety" + } + ] + }, + { + "geoid": "0678582", + "name": "Thousand Oaks", + "state": "CA", + "slug": "thousand-oaks", + "population": 122230, + "lat": 34.19329, + "lon": -118.874235, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://toaks.gov/index.php?section=news&prrid=161", + "reviewed": false, + "evidenceUrl": "https://toaks.gov/index.php?section=news" + }, + { + "kind": "newsroom", + "url": "https://toaks.gov/index.php?section=news&prrid=157", + "reviewed": false, + "evidenceUrl": "https://toaks.gov/index.php?section=news" + }, + { + "kind": "department-page", + "url": "https://toaks.gov/publicsafety", + "reviewed": false, + "evidenceUrl": "https://toaks.gov/" + }, + { + "kind": "department-page", + "url": "https://toaks.gov/media/css/effect.css", + "reviewed": false, + "evidenceUrl": "https://toaks.gov/publicsafety" + }, + { + "kind": "department-page", + "url": "https://toaks.gov/index.php?section=news", + "reviewed": false, + "evidenceUrl": "https://toaks.gov/publicsafety" + }, + { + "kind": "department-page", + "url": "https://toaks.gov/media/css/animations.css", + "reviewed": false, + "evidenceUrl": "https://toaks.gov/publicsafety" + } + ] + }, + { + "geoid": "0680000", + "name": "Torrance", + "state": "CA", + "slug": "torrance", + "population": 138391, + "lat": 33.830453, + "lon": -118.356618, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.torranceca.gov/Government/Newsroom/Torrance-Police-Department-Conducting-DUI-Patrols-91226", + "reviewed": false, + "evidenceUrl": "https://www.torranceca.gov/Government/Newsroom" + }, + { + "kind": "newsroom", + "url": "https://www.torranceca.gov/Government/Newsroom/Police-Department-and-ABC-Cites-Clerks-for-Selling-Alcohol-to-Minors", + "reviewed": false, + "evidenceUrl": "https://www.torranceca.gov/Government/Newsroom" + }, + { + "kind": "newsroom", + "url": "https://www.torranceca.gov/Government/Newsroom", + "reviewed": false, + "evidenceUrl": "https://www.torranceca.gov/Government/Departments-Offices/Departments-Offices/Police/Records/Request-Public-Police-Records" + }, + { + "kind": "newsroom", + "url": "https://www.torranceca.gov/Government/Newsroom/New-Mural", + "reviewed": false, + "evidenceUrl": "https://www.torranceca.gov/Government/Newsroom" + }, + { + "kind": "newsroom", + "url": "https://www.torranceca.gov/Government/Newsroom/Save-Drives-Save-Lives", + "reviewed": false, + "evidenceUrl": "https://www.torranceca.gov/Government/Newsroom" + }, + { + "kind": "newsroom", + "url": "https://www.torranceca.gov/Government/Newsroom/Dangers-of-Distracted-Driving", + "reviewed": false, + "evidenceUrl": "https://www.torranceca.gov/Government/Newsroom" + } + ] + }, + { + "geoid": "0680238", + "name": "Tracy", + "state": "CA", + "slug": "tracy", + "population": 101901, + "lat": 37.727396, + "lon": -121.452195, + "ingestion": { + "url": "https://tracypd.com/feed", + "format": "rss", + "publisher": "Tracy Police Department", + "evidenceUrl": "https://tracypd.com/", + "checkedAt": "2026-09-13T19:03:17.149087+00:00", + "review": "Official police publisher; public RSS contains current police announcements." + }, + "references": [ + { + "url": "https://tracypd.com/feed", + "kind": "rss", + "reviewed": true, + "evidenceUrl": "https://tracypd.com/" + }, + { + "kind": "x", + "url": "https://x.com/tracypd", + "reviewed": false, + "evidenceUrl": "https://tracypd.com/" + }, + { + "kind": "newsroom", + "url": "https://tracypd.com/news", + "reviewed": false, + "evidenceUrl": "https://tracypd.com/" + }, + { + "kind": "newsroom", + "url": "https://tracypd.com/category/news-releases", + "reviewed": false, + "evidenceUrl": "https://tracypd.com/" + }, + { + "kind": "department-page", + "url": "https://tracypd.com/", + "reviewed": false, + "evidenceUrl": "https://www.cityoftracy.org/Home" + }, + { + "kind": "department-page", + "url": "https://tracypd.com/crime-mapping", + "reviewed": false, + "evidenceUrl": "https://tracypd.com/" + } + ] + }, + { + "geoid": "0680644", + "name": "Tulare", + "state": "CA", + "slug": "tulare", + "population": 73907, + "lat": 36.200246, + "lon": -119.339775, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://oag.ca.gov/news/press-releases/california-department-justice-investigating-tulare-county-sheriff%E2%80%99s-department", + "reviewed": false, + "evidenceUrl": "https://oag.ca.gov/news/press-releases/california-department-justice-investigating-tulare-county-sheriff%E2%80%99s-department" + }, + { + "kind": "department-page", + "url": "https://www.tulare.ca.gov/government/departments/police", + "reviewed": false, + "evidenceUrl": "https://www.tulare.ca.gov/government/departments/police" + }, + { + "kind": "department-page", + "url": "https://www.tulare.ca.gov/government/departments/police/crime-tips", + "reviewed": false, + "evidenceUrl": "https://www.tulare.ca.gov/government/departments/police/crime-tips" + } + ] + }, + { + "geoid": "0680812", + "name": "Turlock", + "state": "CA", + "slug": "turlock", + "population": 72864, + "lat": 37.505524, + "lon": -120.859269, + "ingestion": { + "url": "https://local.nixle.com/turlock-police-department-ca/", + "format": "nixle", + "publisher": "Turlock Police Department, CA", + "evidenceUrl": "https://turlockca.gov/aboutturlock/socialmedia/", + "checkedAt": "2026-09-13T19:03:18.782038+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/turlock-police-department-ca/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://turlockca.gov/aboutturlock/socialmedia/" + }, + { + "kind": "x", + "url": "https://x.com/turlockpolice", + "reviewed": false, + "evidenceUrl": "https://turlockca.gov/policedepartment/" + }, + { + "kind": "incident-log", + "url": "https://turlockca.gov/policedepartment/crime/reportacrime", + "reviewed": false, + "evidenceUrl": "https://turlockca.gov/policedepartment/crime/" + }, + { + "kind": "newsroom", + "url": "https://turlockca.gov/stayinformed/pressreleases", + "reviewed": false, + "evidenceUrl": "https://turlockca.gov/policedepartment/" + }, + { + "kind": "department-page", + "url": "https://turlockca.gov/policedepartment/", + "reviewed": false, + "evidenceUrl": "https://turlockca.gov/" + }, + { + "kind": "department-page", + "url": "https://turlockca.gov/policedepartment/crime/", + "reviewed": false, + "evidenceUrl": "https://turlockca.gov/policedepartment/" + } + ] + }, + { + "geoid": "0680854", + "name": "Tustin", + "state": "CA", + "slug": "tustin", + "population": 77843, + "lat": 33.730927, + "lon": -117.810596, + "ingestion": { + "url": "https://local.nixle.com/tustin-ca-police-department/", + "format": "nixle", + "publisher": "Tustin, CA Police Department", + "evidenceUrl": "https://www.tustinca.org/176/Crime-Trends", + "checkedAt": "2026-09-13T19:03:19.297447+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/tustin-ca-police-department/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://www.tustinca.org/176/Crime-Trends" + }, + { + "kind": "newsroom", + "url": "https://www.tustinca.org/CivicAlerts.aspx?CID=10", + "reviewed": false, + "evidenceUrl": "https://www.tustinca.org/176/Crime-Trends" + }, + { + "kind": "department-page", + "url": "https://www.tustinca.org/1321/Police", + "reviewed": false, + "evidenceUrl": "https://www.tustinca.org/" + }, + { + "kind": "department-page", + "url": "https://www.tustinca.org/176/Crime-Trends", + "reviewed": false, + "evidenceUrl": "https://www.tustinca.org/1321/Police" + }, + { + "kind": "department-page", + "url": "https://www.tustinca.org/371/Crime-Prevention", + "reviewed": false, + "evidenceUrl": "https://www.tustinca.org/1321/Police" + }, + { + "kind": "department-page", + "url": "https://www.tustinca.org/m/newsflash/home/detail/618", + "reviewed": false, + "evidenceUrl": "https://www.tustinca.org/1321/Police" + } + ] + }, + { + "geoid": "0681204", + "name": "Union City", + "state": "CA", + "slug": "union-city", + "population": 65282, + "lat": 37.602759, + "lon": -122.01884, + "ingestion": { + "url": "https://local.nixle.com/union-city-police-department-ca/", + "format": "nixle", + "publisher": "Union City Police Department, CA", + "evidenceUrl": "https://local.nixle.com/city/ca/union-city/", + "checkedAt": "2026-09-13T19:19:45.450035+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/union-city-police-department-ca/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/union-city/" + }, + { + "kind": "incident-log", + "url": "https://www.unioncityca.gov/625/Crime-Blotter", + "reviewed": false, + "evidenceUrl": "https://www.unioncityca.gov/625/Crime-Blotter" + }, + { + "kind": "department-page", + "url": "https://www.unioncityca.gov/677/Police", + "reviewed": false, + "evidenceUrl": "https://www.unioncityca.gov/677/Police" + }, + { + "kind": "department-page", + "url": "https://www.unioncityca.gov/545/Crime-in-My-Neighborhood", + "reviewed": false, + "evidenceUrl": "https://www.unioncityca.gov/545/Crime-in-My-Neighborhood" + } + ] + }, + { + "geoid": "0681344", + "name": "Upland", + "state": "CA", + "slug": "upland", + "population": 79446, + "lat": 34.116073, + "lon": -117.659922, + "ingestion": null, + "references": [ + { + "kind": "incident-log", + "url": "https://uplandca.gov/police/police/about_upd/monthly_hate_crime_report.php", + "reviewed": false, + "evidenceUrl": "https://uplandca.gov/police/index.php" + }, + { + "kind": "newsroom", + "url": "https://uplandca.gov/police/press_releases/index.php", + "reviewed": false, + "evidenceUrl": "https://uplandca.gov/police/index.php" + }, + { + "kind": "newsroom", + "url": "https://uplandca.gov/police/servicescommunity/police/services/press_releases/index.php", + "reviewed": false, + "evidenceUrl": "https://uplandca.gov/police/servicescommunity/police/services/code_enforcement.php" + }, + { + "kind": "newsroom", + "url": "https://uplandca.gov/information_technology/press_releases/index.php", + "reviewed": false, + "evidenceUrl": "https://uplandca.gov/information_technology/social_media.php" + }, + { + "kind": "department-page", + "url": "https://uplandca.gov/police/index.php", + "reviewed": false, + "evidenceUrl": "https://uplandca.gov/" + }, + { + "kind": "department-page", + "url": "https://uplandca.gov/police/divisions.php", + "reviewed": false, + "evidenceUrl": "https://uplandca.gov/" + } + ] + }, + { + "geoid": "0681554", + "name": "Vacaville", + "state": "CA", + "slug": "vacaville", + "population": 103850, + "lat": 38.358621, + "lon": -121.968601, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.cityofvacaville.gov/government/police-department?locale=en", + "reviewed": false, + "evidenceUrl": "https://www.cityofvacaville.gov/government/police-department?locale=en" + }, + { + "kind": "department-page", + "url": "https://www.cityofvacaville.gov/government/police-department?locale=en_us", + "reviewed": false, + "evidenceUrl": "https://www.cityofvacaville.gov/government/police-department?locale=en_us" + }, + { + "kind": "department-page", + "url": "https://www.cityofvacaville.gov/government/police-department/crime-reports-prevention", + "reviewed": false, + "evidenceUrl": "https://www.cityofvacaville.gov/government/police-department/crime-reports-prevention" + } + ] + }, + { + "geoid": "0681666", + "name": "Vallejo", + "state": "CA", + "slug": "vallejo", + "population": 123287, + "lat": 38.106909, + "lon": -122.262339, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.vallejopd.net/public_information/news/press_releases", + "reviewed": true, + "evidenceUrl": "https://www.vallejopd.net/public_information/news/press_releases" + } + ] + }, + { + "geoid": "0682590", + "name": "Victorville", + "state": "CA", + "slug": "victorville", + "population": 141395, + "lat": 34.527735, + "lon": -117.353579, + "ingestion": { + "url": "https://local.nixle.com/sbsd---victorville-police-department/", + "format": "nixle", + "publisher": "SBSD - Victorville Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/victorville/", + "checkedAt": "2026-09-13T19:19:46.154934+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/sbsd---victorville-police-department/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/victorville/" + }, + { + "kind": "newsroom", + "url": "https://us.openforms.com/Form/f45fa8c2-6cc9-444e-8928-479a9719e437", + "reviewed": false, + "evidenceUrl": "https://www.victorvilleca.gov/Government/Media-Relations" + }, + { + "kind": "department-page", + "url": "https://www.victorvilleca.gov/Government/City-Departments/Police", + "reviewed": false, + "evidenceUrl": "https://www.victorvilleca.gov/Home" + }, + { + "kind": "department-page", + "url": "https://www.victorvilleca.gov/Resident/News", + "reviewed": false, + "evidenceUrl": "https://www.victorvilleca.gov/Government/City-Departments/Police" + }, + { + "kind": "department-page", + "url": "https://www.victorvilleca.gov/Stay-Connected", + "reviewed": false, + "evidenceUrl": "https://www.victorvilleca.gov/Government/City-Departments/Police" + }, + { + "kind": "department-page", + "url": "https://www.victorvilleca.gov/Government/Media-Relations", + "reviewed": false, + "evidenceUrl": "https://www.victorvilleca.gov/Government/City-Departments/Police" + } + ] + }, + { + "geoid": "0682954", + "name": "Visalia", + "state": "CA", + "slug": "visalia", + "population": 146541, + "lat": 36.32921, + "lon": -119.326984, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.visalia.gov/depts/police/contact_information/contact_numbers/default.asp", + "reviewed": false, + "evidenceUrl": "https://www.visalia.gov/depts/police/contact_information/contact_numbers/default.asp" + }, + { + "kind": "department-page", + "url": "https://www.visalia.gov/446/Crime-Maps", + "reviewed": false, + "evidenceUrl": "https://www.visalia.gov/446/Crime-Maps" + }, + { + "kind": "department-page", + "url": "https://www.visalia.city/civicax/filebank/blobdload.aspx?BlobID=16179", + "reviewed": false, + "evidenceUrl": "https://www.visalia.city/civicax/filebank/blobdload.aspx?BlobID=16179" + } + ] + }, + { + "geoid": "0682996", + "name": "Vista", + "state": "CA", + "slug": "vista", + "population": 98274, + "lat": 33.189528, + "lon": -117.238582, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-npage-3/-arch-1", + "reviewed": false, + "evidenceUrl": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-npage-3/-arch-1" + }, + { + "kind": "newsroom", + "url": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-selectview-1/-arch-1", + "reviewed": false, + "evidenceUrl": "https://www.sdsheriff.gov/bureaus/media-relations/news-list/-selectview-1/-arch-1" + }, + { + "kind": "department-page", + "url": "https://www.sdsheriff.gov/Home/Components/FacilityDirectory/FacilityDirectory/46/61", + "reviewed": false, + "evidenceUrl": "https://www.sdsheriff.gov/Home/Components/FacilityDirectory/FacilityDirectory/46/61" + } + ] + }, + { + "geoid": "0683346", + "name": "Walnut Creek", + "state": "CA", + "slug": "walnut-creek", + "population": 70012, + "lat": 37.902666, + "lon": -122.040479, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.walnutcreekpdca.gov/data-and-transparency/transparency/news-releases", + "reviewed": false, + "evidenceUrl": "https://www.walnutcreekpdca.gov/data-and-transparency/transparency/news-releases" + }, + { + "kind": "department-page", + "url": "https://www.walnutcreekpdca.gov/home-policenew", + "reviewed": false, + "evidenceUrl": "https://www.walnutcreekpdca.gov/home-policenew" + }, + { + "kind": "department-page", + "url": "https://www.walnutcreekpdca.gov/i-want-to/contact-wcpd", + "reviewed": false, + "evidenceUrl": "https://www.walnutcreekpdca.gov/i-want-to/contact-wcpd" + } + ] + }, + { + "geoid": "0683668", + "name": "Watsonville", + "state": "CA", + "slug": "watsonville", + "population": 50716, + "lat": 36.923587, + "lon": -121.772395, + "ingestion": null, + "references": [ + { + "kind": "incident-log", + "url": "https://watsonville.gov/2196/Arrest-Crime-Logs", + "reviewed": false, + "evidenceUrl": "https://watsonville.gov/291/Online-Reporting" + }, + { + "kind": "department-page", + "url": "https://watsonville.gov/2324/Police", + "reviewed": false, + "evidenceUrl": "https://watsonville.gov/291/Online-Reporting" + }, + { + "kind": "department-page", + "url": "https://watsonville.gov/198/Your-Police", + "reviewed": false, + "evidenceUrl": "https://watsonville.gov/291/Online-Reporting" + }, + { + "kind": "department-page", + "url": "https://watsonville.gov/199/Police-Services", + "reviewed": false, + "evidenceUrl": "https://watsonville.gov/291/Online-Reporting" + }, + { + "kind": "department-page", + "url": "https://watsonville.gov/291/Online-Reporting", + "reviewed": false, + "evidenceUrl": "https://watsonville.gov/" + } + ] + }, + { + "geoid": "0684200", + "name": "West Covina", + "state": "CA", + "slug": "west-covina", + "population": 105301, + "lat": 34.055941, + "lon": -117.909937, + "ingestion": null, + "references": [ + { + "kind": "x", + "url": "https://x.com/westcovinapd", + "reviewed": false, + "evidenceUrl": "https://www.wcpd.org/" + }, + { + "kind": "department-page", + "url": "https://www.wcpd.org/", + "reviewed": false, + "evidenceUrl": "https://www.westcovina.gov/" + }, + { + "kind": "department-page", + "url": "https://www.wcpd.org/news/", + "reviewed": false, + "evidenceUrl": "https://www.wcpd.org/" + }, + { + "kind": "department-page", + "url": "https://www.wcpd.org/crime-stats/", + "reviewed": false, + "evidenceUrl": "https://www.wcpd.org/" + }, + { + "kind": "facebook", + "url": "https://www.facebook.com/WestCovinaPD/", + "reviewed": false, + "evidenceUrl": "https://www.wcpd.org/" + }, + { + "kind": "instagram", + "url": "https://www.instagram.com/westcovinapd/", + "reviewed": false, + "evidenceUrl": "https://www.wcpd.org/" + } + ] + }, + { + "geoid": "0684816", + "name": "West Sacramento", + "state": "CA", + "slug": "west-sacramento", + "population": 56216, + "lat": 38.554368, + "lon": -121.548663, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.cityofwestsacramento.org/government/departments/police/contact-us", + "reviewed": false, + "evidenceUrl": "https://www.cityofwestsacramento.org/government/departments/police/contact-us" + }, + { + "kind": "department-page", + "url": "https://www.cityofwestsacramento.org/government/departments/police?from=AppAgg.com", + "reviewed": false, + "evidenceUrl": "https://www.cityofwestsacramento.org/government/departments/police?from=AppAgg.com" + }, + { + "kind": "department-page", + "url": "https://www.cityofwestsacramento.org/government/departments/police/police-divisions-and-units/office-of-operations/records-section", + "reviewed": false, + "evidenceUrl": "https://www.cityofwestsacramento.org/government/departments/police/police-divisions-and-units/office-of-operations/records-section" + } + ] + }, + { + "geoid": "0684550", + "name": "Westminster", + "state": "CA", + "slug": "westminster", + "population": 88966, + "lat": 33.752292, + "lon": -117.993868, + "ingestion": null, + "references": [ + { + "kind": "newsroom", + "url": "https://www.westminster-ca.gov/departments/police/our-department/press-releases", + "reviewed": false, + "evidenceUrl": "https://www.westminster-ca.gov/departments/police/our-department/press-releases" + }, + { + "kind": "newsroom", + "url": "https://www.westminster-ca.gov/departments/police/our-department/press-releases/-arch-1", + "reviewed": false, + "evidenceUrl": "https://www.westminster-ca.gov/departments/police/our-department/press-releases/-arch-1" + }, + { + "kind": "department-page", + "url": "https://www.westminster-ca.gov/departments/police", + "reviewed": false, + "evidenceUrl": "https://www.westminster-ca.gov/departments/police" + } + ] + }, + { + "geoid": "0685292", + "name": "Whittier", + "state": "CA", + "slug": "whittier", + "population": 85815, + "lat": 33.966827, + "lon": -118.020122, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://locator.lacounty.gov/lac/Location/3175447/city-of-whittier-police-department", + "reviewed": false, + "evidenceUrl": "https://locator.lacounty.gov/lac/Location/3175447/city-of-whittier-police-department" + } + ] + }, + { + "geoid": "0686328", + "name": "Woodland", + "state": "CA", + "slug": "woodland", + "population": 62513, + "lat": 38.67137, + "lon": -121.749025, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.cityofwoodland.gov/394/Woodland-Police-Department", + "reviewed": false, + "evidenceUrl": "https://www.cityofwoodland.gov/394/Woodland-Police-Department" + }, + { + "kind": "department-page", + "url": "https://caselog.cityofwoodland.gov/", + "reviewed": false, + "evidenceUrl": "https://caselog.cityofwoodland.gov/" + }, + { + "kind": "department-page", + "url": "https://cityofwoodland.gov/521/Crime-Mapping", + "reviewed": false, + "evidenceUrl": "https://cityofwoodland.gov/521/Crime-Mapping" + } + ] + }, + { + "geoid": "0686832", + "name": "Yorba Linda", + "state": "CA", + "slug": "yorba-linda", + "population": 65632, + "lat": 33.889038, + "lon": -117.77207, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.yorbalindaca.gov/275/Police", + "reviewed": false, + "evidenceUrl": "https://www.yorbalindaca.gov/275/Police" + }, + { + "kind": "department-page", + "url": "https://www.yorbalindaca.gov/250/Public-Safety", + "reviewed": false, + "evidenceUrl": "https://www.yorbalindaca.gov/" + }, + { + "kind": "department-page", + "url": "https://www.ocsheriff.gov/patrol-areas/yorba-linda", + "reviewed": false, + "evidenceUrl": "https://www.ocsheriff.gov/patrol-areas/yorba-linda" + }, + { + "kind": "department-page", + "url": "https://www.yorbalindaca.gov/411/Crime-Statistics", + "reviewed": false, + "evidenceUrl": "https://www.yorbalindaca.gov/411/Crime-Statistics" + } + ] + }, + { + "geoid": "0686972", + "name": "Yuba City", + "state": "CA", + "slug": "yuba-city", + "population": 69485, + "lat": 39.129842, + "lon": -121.641549, + "ingestion": null, + "references": [ + { + "kind": "department-page", + "url": "https://www.suttersheriff.gov/", + "reviewed": false, + "evidenceUrl": "https://www.suttersheriff.gov/" + }, + { + "kind": "department-page", + "url": "https://www.oag.ca.gov/fingerprints/locations/yuba-city-police-department", + "reviewed": false, + "evidenceUrl": "https://www.oag.ca.gov/fingerprints/locations/yuba-city-police-department" + }, + { + "kind": "department-page", + "url": "https://yuba.gov/departments/sheriff_coroner/divisions/dispatch_communications.php", + "reviewed": false, + "evidenceUrl": "https://yuba.gov/departments/sheriff_coroner/divisions/dispatch_communications.php" + } + ] + }, + { + "geoid": "0687042", + "name": "Yucaipa", + "state": "CA", + "slug": "yucaipa", + "population": 54953, + "lat": 34.03357, + "lon": -117.042887, + "ingestion": { + "url": "https://local.nixle.com/sbsd---yucaipa-police-department/", + "format": "nixle", + "publisher": "SBSD - Yucaipa Police Department", + "evidenceUrl": "https://local.nixle.com/city/ca/yucaipa/", + "checkedAt": "2026-09-13T19:19:46.908258+00:00", + "review": "Certified agency publisher; city-specific police jurisdiction; public archive has recent announcements." + }, + "references": [ + { + "url": "https://local.nixle.com/sbsd---yucaipa-police-department/", + "kind": "nixle", + "reviewed": true, + "evidenceUrl": "https://local.nixle.com/city/ca/yucaipa/" + }, + { + "kind": "department-page", + "url": "https://wp.sbcounty.gov/sheriff/patrol-stations/yucaipa/", + "reviewed": false, + "evidenceUrl": "https://wp.sbcounty.gov/sheriff/patrol-stations/yucaipa/" + }, + { + "kind": "department-page", + "url": "https://bosd3.sbcounty.gov/venue/yucaipa-police-department/", + "reviewed": false, + "evidenceUrl": "https://bosd3.sbcounty.gov/venue/yucaipa-police-department/" + }, + { + "kind": "department-page", + "url": "https://wp.sbcounty.gov/sheriff/wp-content/uploads/sites/17/2024-Annual-Crime-Report.pdf", + "reviewed": false, + "evidenceUrl": "https://wp.sbcounty.gov/sheriff/wp-content/uploads/sites/17/2024-Annual-Crime-Report.pdf" + } + ] + } + ] +} diff --git a/packages/adapters/src/police-updates.js b/packages/adapters/src/police-updates.js new file mode 100644 index 0000000..6f8c0b3 --- /dev/null +++ b/packages/adapters/src/police-updates.js @@ -0,0 +1,206 @@ +import { defineAdapter, stripHtml } from '@nichedb/core/adapter'; +import { robotsAllows } from '@nichedb/core/opensite'; +import { parseFeed } from './newsfeed.js'; +import catalogue from './police-sources-ca.json'; + +export const POLICE_CITIES = catalogue.cities; +export const POLICE_SCOPE = { + state: catalogue.state, + populationYear: catalogue.populationYear, + minimumPopulation: catalogue.minimumPopulation, + populationSource: catalogue.populationSource, +}; +const AGENT = 'NicheDBPoliceSources'; +const text = (value) => + stripHtml(value ?? '') + .replace(/\s+/g, ' ') + .trim(); +const identity = (value) => + text(value) + .toLowerCase() + .replace(/[^a-z0-9]/g, ''); + +/** Relative archive ages are display text, never a substitute for a publication date. */ +export function nixleDate(value) { + const m = text(value).match( + /([A-Za-z]+) (\d{1,2})(?:st|nd|rd|th)?, (\d{4})\s*::\s*(\d{1,2}):(\d{2})\s*([ap])\.?m\.?\s+(PST|PDT)/i, + ); + if (!m) return null; + const hour = Number(m[4]); + if (hour < 1 || hour > 12 || Number(m[5]) > 59) return null; + const clock = String((hour % 12) + (m[6].toLowerCase() === 'p' ? 12 : 0)).padStart(2, '0'); + const date = new Date( + `${m[1]} ${m[2]}, ${m[3]} ${clock}:${m[5]}:00 ${m[7].toUpperCase() === 'PDT' ? '-0700' : '-0800'}`, + ); + return Number.isNaN(date.getTime()) ? null : date.toISOString(); +} + +export function parseNixleArchive(html, source) { + const publisher = html.match(/Messages from (.*?)\s*:\s*Nixle<\/title>/is)?.[1]; + if ( + !publisher || + identity(publisher) !== identity(source.publisher) || + !/id=["']wire["']/.test(html) + ) + throw new Error('Expected the configured Nixle publisher archive'); + const rows = []; + for (const match of html.matchAll(/<li\s+id=["']pub_(\d+)["'][^>]*>([\s\S]*?)<\/li>/g)) { + const title = text(match[2].match(/<p class="headline_agency">([\s\S]*?)<\/p>/)?.[1]) + .replace(/\s*More\s*(?:[»›]|»|»)\s*$/, '') + .trim(); + if (title) + rows.push({ id: match[1], title, url: `https://local.nixle.com/alert/${match[1]}/` }); + } + if (/pub_\d+/.test(html) && !rows.length) throw new Error('Nixle archive markup changed'); + return rows.slice(0, 20); +} + +export async function parseNixleAlert(html, entry, source) { + let body = ''; + let stamp = ''; + let publisherPath = null; + let foundBody = false; + await new HTMLRewriter() + .on('#fullpubhd .certified a', { + element(e) { + publisherPath = e.getAttribute('href'); + }, + }) + .on('#fullpubhd dl.last dd', { + text(t) { + stamp += t.text; + }, + }) + .on('#alert-body', { + element() { + foundBody = true; + }, + text(t) { + body += t.text; + }, + }) + .on('#alert-body p, #alert-body br, #alert-body div', { + element() { + body += ' '; + }, + }) + .transform(new Response(html)) + .text(); + const path = publisherPath + ? new URL(publisherPath, source.url).pathname.replace(/\/$/, '') + : null; + if (!foundBody || path !== new URL(source.url).pathname.replace(/\/$/, '')) + throw new Error(`Unexpected publisher or missing alert body for ${entry.id}`); + return { + externalId: `nixle:${entry.id}`, + title: entry.title, + summary: text(body).slice(0, 600) || null, + url: entry.url, + publishedAt: nixleDate(stamp), + }; +} + +export function policeItem(raw, city) { + const date = raw.publishedAt ? new Date(raw.publishedAt) : null; + const publishedAt = date && !Number.isNaN(date.getTime()) ? date.toISOString() : null; + return { + ...raw, + kind: 'police-update', + title: text(raw.title), + publishedAt, + timeKnown: Boolean(publishedAt), + tags: ['police-update', 'us', city.state.toLowerCase(), city.slug], + data: { + publisher: city.ingestion.publisher, + publisher_url: city.ingestion.url, + country: 'US', + state: city.state, + city: city.name, + jurisdiction: `${city.name}, ${city.state}`, + census_geoid: city.geoid, + population: city.population, + population_year: catalogue.populationYear, + // A news release has no incident coordinates. Geographic queries use + // the city's Census reference point, explicitly labelled in the UI. + coverage: { type: 'Point', coordinates: [city.lon, city.lat] }, + coverage_basis: 'census-jurisdiction-reference-point', + location_precision: 'jurisdiction', + occurred_at: null, + published_at: publishedAt, + archive_headline: raw.title, + }, + }; +} + +export const policeUpdates = defineAdapter({ + name: 'police-updates', + title: 'Local police announcements', + collection: 'crime', + description: + 'Public police RSS and Nixle announcements, starting with California cities over 50,000 residents. Includes crime releases and public safety advisories. City locations identify the publishing jurisdiction; publication times are not incident times. No API key required.', + kinds: ['police-update'], + cadenceMinutes: 60, + configFields: [ + { + key: 'city', + label: 'City', + type: 'select', + required: true, + options: POLICE_CITIES.filter((c) => c.ingestion).map((c) => c.slug), + }, + ], + defaultSources: POLICE_CITIES.filter((c) => c.ingestion).map((c) => ({ + slug: `police-ca-${c.slug}`, + name: `${c.name}, CA: police updates`, + config: { city: c.slug }, + cadenceMinutes: 60, + })), + async pull({ config, http, previous, budget = 10, deadline = Infinity }) { + const city = POLICE_CITIES.find((c) => c.slug === config.city && c.ingestion); + if (!city) throw new Error('Select a city with a reviewed public feed'); + const source = city.ingestion; + const headers = { 'user-agent': `${AGENT}/1.0 (+https://nichedb.dev)` }; + const options = { headers, timeoutMs: 15000 }; + let rules = ''; + // A missing robots file is normal; an access/rate-limit error is not. + const robots = await http.request(new URL('/robots.txt', source.url).href, options); + if (robots.ok) rules = await robots.text(); + else if (robots.status !== 404 && robots.status !== 410) + throw new Error(`Robots check: HTTP ${robots.status}`); + const read = async (url) => { + const u = new URL(url); + if (!robotsAllows(rules, u.pathname + u.search, AGENT)) + throw new Error('Publisher robots policy disallows this path'); + return http.text(url, options); + }; + const body = await read(source.url); + let items; + if (source.format === 'rss') { + if (!/<(?:rss\b|feed\b|rdf:RDF\b)/i.test(body) || /<html\b/i.test(body.slice(0, 500))) + throw new Error('Expected RSS or Atom, received a different page'); + items = parseFeed(body, source.url) + .slice(0, 50) + .map((item) => policeItem(item, city)); + } else { + const entries = parseNixleArchive(body, source); + const prior = previous ? await previous(entries.map((e) => `nixle:${e.id}`)) : new Map(); + // Fetch unseen/changed entries first, then refresh the latest two for + // corrections. Only successful writes enter previous(); failures retry. + const pending = entries.filter( + (e) => prior.get(`nixle:${e.id}`)?.archive_headline !== e.title, + ); + const refresh = entries.slice(0, 2).filter((e) => !pending.includes(e)); + items = []; + const limit = Math.min(20, Math.max(0, budget)); + for (const entry of [...pending, ...refresh].slice(0, limit)) { + if (Date.now() >= deadline) break; + await Bun.sleep(500); + items.push(policeItem(await parseNixleAlert(await read(entry.url), entry, source), city)); + } + } + return { + items, + note: `${items.length} police announcements; location is the city reference point`, + }; + }, +}); diff --git a/packages/core/src/seed.js b/packages/core/src/seed.js index 330226c..76162db 100644 --- a/packages/core/src/seed.js +++ b/packages/core/src/seed.js @@ -115,7 +115,7 @@ export const COLLECTIONS = [ slug: 'crime', name: 'Crime', description: - 'Crime reports as police departments publish them: incident-level records from seven US city open-data portals, street-level crime across England, Wales and Northern Ireland, and the FBI’s state-by-state estimates. Every row carries its country, state or force area, city and neighbourhood, so it can be read by place rather than only as a stream.', + 'Crime incident records, local police announcements, scanner directories and annual estimates. California police announcements use the publishing city’s reference point for geographic filters; their dates are publication times. Incident records retain their reported locations and times.', }, { slug: 'public-money', @@ -625,6 +625,14 @@ export const DEFAULT_FEEDS = [ with: what happened near me, what kind of thing is happening, and how does a whole place compare. The per-city feeds are generated from the adapter's own city list further down rather than written out twice. */ + { + collection: 'crime', + slug: 'police-updates-ca', + name: 'California police updates', + description: + 'Public police announcements from participating California cities over 50,000 residents, checked hourly. City-level locations and publication dates.', + query: { kinds: ['police-update'], tags: ['ca'] }, + }, { collection: 'crime', slug: 'crime-reports', diff --git a/scripts/build-police-catalogue.py b/scripts/build-police-catalogue.py new file mode 100644 index 0000000..9979253 --- /dev/null +++ b/scripts/build-police-catalogue.py @@ -0,0 +1,66 @@ +#!/usr/bin/env python3 +"""Build the small runtime directory from research and explicitly reviewed feeds. + +Discovery candidates never enable ingestion. Add a publisher to +docs/data/police-ingestion-ca.json only after checking identity, city jurisdiction, +public access and freshness, then run this script and the adapter smoke check. +""" +import json +import re +from pathlib import Path + +ROOT = Path(__file__).resolve().parents[1] + + +def main(): + inventory = json.loads((ROOT / "docs/data/police-sources/inventory.json").read_text()) + reviewed = json.loads((ROOT / "docs/data/police-ingestion-ca.json").read_text()) + if inventory["state"] != "CA" or inventory["population_min_exclusive"] != 50000: + raise ValueError("Runtime CA catalogue requires the CA inventory with the 50,000 cutoff") + cities = [] + owners = {source["url"].rstrip("/"): name for name, source in reviewed.items()} + for row in inventory["places"]: + ingestion = reviewed.get(row["name"]) + references = {} + if ingestion: + references[ingestion["url"]] = {"url": ingestion["url"], "kind": ingestion["format"], "reviewed": True, "evidenceUrl": ingestion["evidenceUrl"]} + priority = {"x": 0, "incident-log": 1, "newsroom": 2, "nixle": 3, "department-page": 4, "facebook": 5, "instagram": 6, "nextdoor": 7, "crime-map": 8, "social-directory": 9} + candidates = sorted(row["channels"], key=lambda c: ( + not c.get("verification", "").startswith("reviewed"), + priority.get(c["kind"], 99), + not bool(re.search(r"police|sheriff|\bpd\b|public.safety", c["url"], re.I)), + len(c["url"]), + )) + for channel in candidates: + # This is the city's headquarters planning site, not its police newsroom. + if channel["kind"] not in priority or "newportbeachpolicehq.com" in channel["url"]: + continue + owner = owners.get(channel["url"].rstrip("/")) + if owner and owner != row["name"]: + continue + if len(references) >= 6: + break + references.setdefault(channel["url"], { + "kind": channel["kind"], "url": channel["url"], + "reviewed": channel.get("verification", "").startswith("reviewed"), + "evidenceUrl": channel["evidence_url"], + }) + cities.append({ + "geoid": row["geoid"], "name": row["name"], "state": row["state"], + "slug": re.sub(r"[^a-z0-9]+", "-", row["name"].lower()).strip("-"), + "population": row["population"], "lat": row["lat"], "lon": row["lon"], + "ingestion": ingestion, "references": list(references.values()), + }) + if set(reviewed) - {c["name"] for c in cities}: + raise ValueError("Reviewed feed belongs to a city outside this inventory") + payload = { + "state": "CA", "populationYear": inventory["population_year"], + "minimumPopulation": 50000, "populationSource": inventory["population_source"], + "cities": cities, + } + (ROOT / "packages/adapters/src/police-sources-ca.json").write_text(json.dumps(payload, indent=2) + "\n") + print(f'{len(cities)} cities; {len(reviewed)} reviewed feeds') + + +if __name__ == "__main__": + main() diff --git a/scripts/build-police-source-report.py b/scripts/build-police-source-report.py new file mode 100644 index 0000000..2a8279b --- /dev/null +++ b/scripts/build-police-source-report.py @@ -0,0 +1,186 @@ +#!/usr/bin/env python3 +"""Merge reviewed/indexed sources, audit public feeds, and render the inventory. + +Run after discover-police-sources.py. --validate checks Nixle and police RSS +endpoints and records item counts and dates; it never turns an account link +into a claim that a live feed is available. Indexed search findings are data +in docs/data/police-sources/indexed-searches.json, with their original queries. +""" +import argparse +import concurrent.futures +import importlib.util +import json +import re +import urllib.parse +import xml.etree.ElementTree as ET +from datetime import datetime, timezone +from email.utils import parsedate_to_datetime +from pathlib import Path + +ROOT = Path(__file__).resolve().parents[1] +OUT = ROOT / "docs/data/police-sources" +spec = importlib.util.spec_from_file_location("discovery", ROOT / "scripts/discover-police-sources.py") +discovery = importlib.util.module_from_spec(spec) +spec.loader.exec_module(discovery) + + +def clean_channels(channels): + found = {} + for original in channels: + row = dict(original) + row["url"] = discovery.canonical(row["url"]) + parsed = urllib.parse.urlparse(row["url"]) + host = (parsed.hostname or "").removeprefix("www.") + if row["kind"] == "nixle" and not (host == "local.nixle.com" and re.fullmatch(r"/[a-z0-9-]+/?", parsed.path) and parsed.path.strip("/") not in ("register", "accounts", "zipcode")): + row["kind"] = "announcement" if re.search(r"/alert/\d+", parsed.path) else "alert-directory" + if row["kind"] == "x": + handle = parsed.path.strip("/").split("/")[0] + if handle in ("intent", "share", "search", "hashtag", "home", "login"): + continue + row["url"] = "https://x.com/" + handle + if row["kind"] == "feed-candidate": + context = row["url"] + " " + row.get("link_text", "") + " " + (urllib.parse.urlparse(row.get("evidence_url", "")).hostname or "") + if not discovery.POLICE.search(context): + continue + if row["kind"] == "newsroom": + if re.search(r"/News-Articles/|/Components/News/News/|/DocumentCenter/|\.(?:pdf|docx?)$", parsed.path, re.I): + row["kind"] = "announcement" + if row["kind"] == "feed-candidate" and "ModID=58" in row["url"]: + row["kind"] = "calendar-feed" + if row["kind"] == "feed-candidate" and re.search(r"/rss\.aspx$", parsed.path, re.I): + row["kind"] = "feed-directory" + # Many sites link to the same source once per translation/language. + key = row["url"].lower().replace("http://", "https://").replace("https://www.", "https://").rstrip("/") + if key not in found or row.get("verification", "").startswith(("reviewed", "official-department")): + found[key] = row + return list(found.values()) + + +def validate_channel(row): + audit = {"url": row["url"], "checked_at": datetime.now(timezone.utc).isoformat()} + try: + url, body = discovery.public_get(row["url"]) + audit["final_url"] = url + if row["kind"] == "nixle": + publisher = re.search(r'<title>Messages from (.*?)\s*:\s*Nixle', body, re.I | re.S) + if not publisher or 'id="wire"' not in body: + raise ValueError("not a public Nixle agency archive") + audit["publisher"] = publisher[1] + audit["item_count"] = len(re.findall(r'(.*?)', body, re.S) + audit["newest_label"] = re.sub(r"<[^>]*>", "", newest[1]).strip() if newest else None + audit["access"] = "public-nixle-archive" if audit["item_count"] else "empty-public-nixle-archive" + audit["ingestion"] = "HTML adapter required; publication dates are on individual alerts" + else: + xml = ET.fromstring(body) + if xml.tag not in ("rss", "{http://www.w3.org/2005/Atom}feed", "{http://www.w3.org/1999/02/22-rdf-syntax-ns#}RDF"): + raise ValueError("not RSS/Atom") + items = xml.findall(".//item") or xml.findall("{http://www.w3.org/2005/Atom}entry") + audit["publisher"] = xml.findtext("channel/title") or xml.findtext("{http://www.w3.org/2005/Atom}title") + audit["item_count"] = len(items) + dates = [] + for item in items: + raw = item.findtext("pubDate") or item.findtext("{http://www.w3.org/2005/Atom}published") or item.findtext("{http://www.w3.org/2005/Atom}updated") + if raw: + try: + dates.append(parsedate_to_datetime(raw).isoformat()) + except (ValueError, TypeError): + dates.append(raw) + audit["newest_label"] = max(dates) if dates else None + audit["access"] = "public-feed-with-items" if items else "empty-public-feed" + audit["ingestion"] = "RSS/Atom parser; confirm police scope and classify announcements separately" + except Exception as error: + audit["access"] = "unavailable-to-validator" + audit["error"] = str(error)[:200] + return audit + + +def render(rows, summary): + # Escape '<' to prevent a publisher-controlled string from ending script. + data = json.dumps(rows, separators=(",", ":")).replace("<", "\\u003c") + page = """NicheDB · Police source inventory + +

Police reports & announcement sources

U.S. municipal governments with more than 20,000 residents in Census Vintage 2025. Includes functioning towns and townships; overlapping governments retain separate Census IDs. Source discovery does not establish complete crime coverage or live ingestion.

+

Start with the area in your NicheDB link. The default view shows municipalities whose Census reference point lies within 100 km of 37.243507, −121.942648. These points locate jurisdictions, not incidents.

+ + + +

PlacePopulationSources and evidence
+

“Reviewed” identifies sources checked during this research. Automated links and indexed results remain candidates for checking department identity, jurisdiction, subject matter, and freshness. RSS calendars, empty feeds, single announcements, and alert signup pages are recorded separately. X and other social account URLs are not working ingestion endpoints.

+

Files: channels.csv · inventory.json · summary.json · validation.json

+""" + state = summary.get("state", "CA") + minimum = summary.get("population_min_exclusive", 50000) + page = page.replace("U.S. municipal governments with more than 20,000 residents", f"{state} municipal governments with more than {minimum:,} residents") + page = page.replace("All U.S. governments", "All cities in this state").replace("in the national inventory", "in this state inventory") + return page.replace("DATA", data) + + +def main(): + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("--validate", action="store_true") + parser.add_argument("--state", default="CA") + parser.add_argument("--min-population", type=int, default=50000) + args = parser.parse_args() + inventory = json.loads((OUT / "inventory.json").read_text()) + rows = inventory["places"] + rows = [r for r in rows if (args.state.lower() == "all" or r["state"] == args.state.upper()) and r["population"] > args.min_population] + by_id = {r["id"]: r for r in rows} + searches_path = OUT / "indexed-searches.json" + if searches_path.exists(): + for result in json.loads(searches_path.read_text()): + if result["id"] in by_id: + by_id[result["id"]]["channels"].extend(result["channels"]) + by_id[result["id"]]["indexed_search_query"] = result["query"] + nixle_path = OUT / "nixle-directories.json" + if nixle_path.exists(): + for result in json.loads(nixle_path.read_text()): + if result["id"] in by_id: + by_id[result["id"]]["channels"] = [c for c in by_id[result["id"]]["channels"] if not c.get("verification", "").startswith("certified-publisher-in-city-directory")] + by_id[result["id"]]["channels"].extend(result["channels"]) + overrides = json.loads((ROOT / "docs/data/police-source-overrides.json").read_text()) + for row in rows: + row["channels"].extend(overrides.get(row["state"] + ":" + row["name"], {}).get("channels", [])) + row["channels"] = clean_channels(row["channels"]) + validations_path = OUT / "validation.json" + validations = json.loads(validations_path.read_text()) if validations_path.exists() else {} + scope_urls = {c["url"] for row in rows for c in row["channels"]} + validations = {u: v for u, v in validations.items() if u in scope_urls} + if args.validate: + todo = {c["url"]: c for row in rows for c in row["channels"] if c["kind"] in ("nixle", "feed-candidate") and c["url"] not in validations} + print(f"Checking {len(todo)} public archive/feed URLs", flush=True) + with concurrent.futures.ThreadPoolExecutor(max_workers=8) as executor: + for i, audit in enumerate(executor.map(validate_channel, todo.values()), 1): + validations[audit["url"]] = audit + if i % 20 == 0: + validations_path.write_text(json.dumps(validations, indent=2) + "\n") + print(f"Validated {i}/{len(todo)}", flush=True) + validations_path.write_text(json.dumps(validations, indent=2) + "\n") + for row in rows: + for channel in row["channels"]: + if channel["url"] in validations: + channel["validation"] = validations[channel["url"]] + channel["access"] = channel["validation"]["access"] + useful = [c for c in row["channels"] if c["kind"] not in ("department-page", "feed-directory", "calendar-feed", "alert-directory", "announcement")] + row["status"] = "channels-found" if useful else "department-found" if row["channels"] else "unresolved" + summary = discovery.export(rows, OUT, args.min_population, args.state.upper()) + reviewed = json.loads((ROOT / "docs/data/police-ingestion-ca.json").read_text()) if args.state.upper() == "CA" else {} + summary["reviewed_ingestion_cities"] = sum(r["name"] in reviewed for r in rows) + summary["state"] = args.state.upper() + summary["population_min_exclusive"] = args.min_population + summary["unique_channel_urls"] = len({c["url"] for row in rows for c in row["channels"]}) + summary["local_governments_within_100km"] = sum(row["distance_from_link_km"] is not None and row["distance_from_link_km"] <= 100 for row in rows) + summary["public_archives_or_feeds_with_items"] = sum(v["access"] in ("public-nixle-archive", "public-feed-with-items") for v in validations.values()) + (OUT / "summary.json").write_text(json.dumps(summary, indent=2) + "\n") + (OUT / "index.html").write_text(render(rows, summary)) + print(json.dumps(summary, indent=2)) + + +if __name__ == "__main__": + main() diff --git a/scripts/check-police-feeds.js b/scripts/check-police-feeds.js new file mode 100644 index 0000000..f524b26 --- /dev/null +++ b/scripts/check-police-feeds.js @@ -0,0 +1,45 @@ +/** Live, bounded smoke check: one detail per city, no database writes or paid APIs. + * bun scripts/check-police-feeds.js [city-slug] + */ +import { policeUpdates } from '../packages/adapters/src/police-updates.js'; +import { makeHttp } from '../packages/core/src/http.js'; + +const http = makeHttp({ userAgent: 'NicheDBPoliceSources/1.0 (+https://nichedb.dev)' }); +const checks = []; +for (const source of policeUpdates.defaultSources) { + if (process.argv[2] && source.config.city !== process.argv[2]) continue; + try { + const result = await policeUpdates.pull({ + config: source.config, + http, + budget: 1, + deadline: Date.now() + 60000, + previous: async () => new Map(), + }); + const latest = result.items[0]; + if (!latest?.publishedAt) throw new Error('No dated announcement returned'); + checks.push({ + city: source.config.city, + ok: true, + items: result.items.length, + sampleUrl: latest.url, + publishedAt: latest.publishedAt, + checkedAt: new Date().toISOString(), + }); + console.log(`${source.config.city}: ${result.items.length} items; ${latest.publishedAt}`); + } catch (error) { + checks.push({ + city: source.config.city, + ok: false, + error: error.message, + checkedAt: new Date().toISOString(), + }); + console.error(`${source.config.city}: ${error.message}`); + } + await Bun.sleep(500); +} +await Bun.write( + new URL('../docs/data/police-sources/ingestion-check.json', import.meta.url), + `${JSON.stringify(checks, null, 2)}\n`, +); +if (!checks.length || checks.some((c) => !c.ok)) process.exitCode = 1; diff --git a/scripts/discover-police-nixle.py b/scripts/discover-police-nixle.py new file mode 100644 index 0000000..f7207d7 --- /dev/null +++ b/scripts/discover-police-nixle.py @@ -0,0 +1,75 @@ +#!/usr/bin/env python3 +"""Find certified police publishers in Nixle's public city directories. + +Run after discover-police-sources.py. Shares its robots checks and per-host +throttle; never guesses account handles. Resumes from the recorded results. +County and station publishers remain candidates until their jurisdiction is +reviewed. A city directory also lists nearby agencies: do not assign those to +the city merely because they appear in the directory. +""" +import concurrent.futures +import html +import importlib.util +import json +import re +from datetime import datetime, timezone +from pathlib import Path + +ROOT = Path(__file__).resolve().parents[1] +OUT = ROOT / "docs/data/police-sources" +spec = importlib.util.spec_from_file_location("discovery", ROOT / "scripts/discover-police-sources.py") +discovery = importlib.util.module_from_spec(spec) +spec.loader.exec_module(discovery) + + +def city_publisher(label, city): + label = re.sub(r"^(?:SBSD\s*-\s*|LASD\s*-\s*|City of\s+)", "", label, flags=re.I) + # Chino Hills is not Chino, and Madera County is not Madera city. + return bool(re.match(re.escape(city) + r"(?:,\s*CA)?\s+(?:Police\b|Department of Public Safety\b|Sheriff\b|Station\b)", label, re.I)) + + +def publishers(body, city): + found = {} + for path, label in re.findall(r'

\s*(.*?)', body, re.S): + label = html.unescape(re.sub(r"<[^>]+>", "", label)).strip() + if not city_publisher(label, city): + continue + found[path.rstrip("/")] = label + return found + + +def survey(city): + name = "Ventura" if city["name"] == "San Buenaventura (Ventura)" else city["name"] + slug = re.sub(r"[^a-z0-9]+", "-", name.lower()).strip("-") + url = f'https://local.nixle.com/city/{city["state"].lower()}/{slug}/' + result = {"id": city["id"], "directory": url, "checked_at": datetime.now(timezone.utc).isoformat(), "channels": []} + try: + final, body = discovery.public_get(url) + if "Nixle" not in body: + raise ValueError("not a public city directory") + result["channels"] = [{ + "kind": "nixle", "url": "https://local.nixle.com" + path + "/", "title": label, + "evidence_url": final, "verification": "certified-publisher-in-city-directory; jurisdiction-review-required", + "access": "not-tested", + } for path, label in publishers(body, name).items()] + except Exception as error: + result["error"] = str(error)[:200] + return result + + +def main(): + rows = json.loads((OUT / "inventory.json").read_text())["places"] + path = OUT / "nixle-directories.json" + results = {r["id"]: r for r in json.loads(path.read_text())} if path.exists() else {} + todo = [r for r in rows if r["id"] not in results] + with concurrent.futures.ThreadPoolExecutor(max_workers=4) as executor: + for i, result in enumerate(executor.map(survey, todo), 1): + results[result["id"]] = result + path.write_text(json.dumps(list(results.values()), indent=2) + "\n") + if i % 20 == 0: + print(f'{i}/{len(todo)} directories; {sum(len(r["channels"]) for r in results.values())} publisher candidates', flush=True) + print(f'{len(results)} directories; {sum(len(r["channels"]) for r in results.values())} publisher candidates', flush=True) + + +if __name__ == "__main__": + main() diff --git a/scripts/discover-police-sources.py b/scripts/discover-police-sources.py new file mode 100644 index 0000000..af5d61c --- /dev/null +++ b/scripts/discover-police-sources.py @@ -0,0 +1,350 @@ +#!/usr/bin/env python3 +"""Inventory police reporting channels by state, starting with CA over 50,000. + +Uses Census Vintage 2025 and the official .gov registry. Public links only; +does not sign in to social networks, infer handles, or call paid services. +Run: python3 scripts/discover-police-sources.py [--state CA] [--min-population 50000] +Outputs a resumable JSON inventory and flat CSV, including unresolved places. +""" + +import argparse +import concurrent.futures +import csv +import hashlib +import io +import json +import math +import re +import threading +import time +import unicodedata +import urllib.error +import urllib.parse +import urllib.request +import urllib.robotparser +import zipfile +from datetime import datetime, timezone +from html.parser import HTMLParser +from pathlib import Path + +ROOT = Path(__file__).resolve().parents[1] +OUT = ROOT / "docs/data/police-sources" +CENSUS = "https://www2.census.gov/programs-surveys/popest/datasets/2020-2025/cities/totals/sub-est2025.csv" +GOV = "https://raw.githubusercontent.com/cisagov/dotgov-data/main/current-full.csv" +WIKIDATA = "https://query.wikidata.org/sparql?" + urllib.parse.urlencode({"query": "SELECT ?item ?fips ?website WHERE { ?item wdt:P774 ?fips; wdt:P856 ?website. }", "format": "json"}) +GAZ = "https://www2.census.gov/geo/docs/maps-data/data/gazetteer/2025_Gazetteer/2025_Gaz_{}_national.zip" +UA = "NicheDBPoliceSources/1.0 (+https://nichedb.dev)" +POLICE = re.compile(r"police|sheriff|public[-_ /]?safety|\bdps\b|\bpd\b", re.I) +REPORT = re.compile(r"news|press|media|blotter|bulletin|crime|incident|activity|alert|social|connect|transparency", re.I) +EXCLUDE = re.compile(r"recruit|career|apply|employment|report-a|reporting-a|file-a|records-request|sex-offender|most-wanted", re.I) +SOCIAL = {"x.com": "x", "twitter.com": "x", "facebook.com": "facebook", "instagram.com": "instagram", "nextdoor.com": "nextdoor", "youtube.com": "youtube"} +LOCKS = {} +LOCKS_GUARD = threading.Lock() +ROBOTS = {} + + +def norm(value): + value = unicodedata.normalize("NFKD", value).encode("ascii", "ignore").decode().lower() + return re.sub(r"[^a-z0-9]", "", value) + + +def city_name(name): + return re.sub(r" (?:city|town|village|borough|municipality|township)(?: municipality)?$", "", name) + + +def canonical(url): + parsed = urllib.parse.urlparse(url.strip()) + host = (parsed.hostname or "").lower().removeprefix("www.") + query = [(k, v) for k, v in urllib.parse.parse_qsl(parsed.query, keep_blank_values=True) if not k.lower().startswith(("utm_", "oc_lang", "ref_src", "lang_update"))] + if host in ("twitter.com", "x.com"): + return "https://x.com/" + parsed.path.strip("/").lower() + return urllib.parse.urlunparse(parsed._replace(query=urllib.parse.urlencode(query), fragment="")) + + +def download(url, cache): + cache.mkdir(parents=True, exist_ok=True) + path = cache / hashlib.sha256(url.encode()).hexdigest() + if path.exists(): + return path.read_bytes() + req = urllib.request.Request(url, headers={"User-Agent": UA}) + with urllib.request.urlopen(req, timeout=45) as response: + data = response.read() + path.write_bytes(data) + return data + + +def municipalities(population_csv, gazetteers, minimum_population=50000): + """Whole legal places and functioning towns, never county/place-part rows. + + Places and MCDs can overlap legally; retain their separate Census IDs. + Inactive/statistical MCDs and CDPs are excluded from this municipal scope. + """ + gaz = {} + for data in gazetteers: + for row in csv.DictReader(io.StringIO(data), delimiter="|"): + gaz[row["GEOID"]] = row + rows = [] + for row in csv.DictReader(io.StringIO(population_csv)): + if row["SUMLEV"] not in ("162", "061", "170") or row["FUNCSTAT"] not in ("A", "B", "C"): + continue + population = int(row["POPESTIMATE2025"]) + if population <= minimum_population: + continue + geoid = row["STATE"] + (row["COUNTY"] + row["COUSUB"] if row["SUMLEV"] == "061" else row["CONCIT"] if row["SUMLEV"] == "170" else row["PLACE"]) + point = gaz.get(geoid, {}) + rows.append({ + "id": f'{row["SUMLEV"]}:{geoid}', "geoid": geoid, + "name": city_name(row["NAME"]), "census_name": row["NAME"], + "state": point.get("USPS", ""), "state_name": row["STNAME"], + "state_fips": row["STATE"], "county_fips": row["COUNTY"], + "geography": {"162": "incorporated-place", "061": "minor-civil-division", "170": "consolidated-city"}[row["SUMLEV"]], + "population": population, "population_year": 2025, + "lat": float(point["INTPTLAT"]) if point else None, + "lon": float(point["INTPTLONG"]) if point else None, + }) + states = {r["state_name"]: r["state"] for r in rows if r["state"]} + for row in rows: + row["state"] = row["state"] or states.get(row["state_name"], "") + return sorted(rows, key=lambda r: (r["state"], -r["population"], r["id"])) + + +def government_domains(place, domains): + matches = [] + for row in domains: + if row["Domain type"] != "City" or row["State"] != place["state"] or norm(row["City"]) != norm(place["name"]): + continue + org = row["Organization name"] + " " + row["Suborganization name"] + if re.search(r"court|school|library|housing|utility|utilities|water district|transit|hospital", org, re.I): + continue + if norm(place["name"]) not in norm(org): + continue + matches.append({"url": "https://" + row["Domain name"] + "/", "organization": org.strip(), "evidence": GOV}) + return sorted(matches, key=lambda r: (not bool(POLICE.search(r["organization"])), len(r["url"])))[:3] + + +class Links(HTMLParser): + def __init__(self, html, base): + super().__init__(convert_charrefs=True) + self.base, self.links, self.anchor = base, [], None + self.feed(html) + + def handle_starttag(self, tag, attrs): + attrs = dict(attrs) + if tag not in ("a", "link") or not attrs.get("href"): + return + url = urllib.parse.urljoin(self.base, attrs["href"]) + if urllib.parse.urlparse(url).scheme not in ("http", "https"): + return + url = canonical(url) + entry = {"url": url, "text": attrs.get("title", "") + " " + attrs.get("aria-label", ""), "type": attrs.get("type", "")} + self.links.append(entry) + if tag == "a": + self.anchor = entry + + def handle_endtag(self, tag): + if tag == "a": + self.anchor = None + + def handle_data(self, data): + if self.anchor is not None: + self.anchor["text"] += " " + data.strip() + + +def channel(link, police_page=False): + url = urllib.parse.urlparse(link["url"]) + host = url.hostname.lower().removeprefix("www.").removeprefix("m.") + text = link["text"] + " " + urllib.parse.unquote(url.path) + if host in SOCIAL: + # Sharing buttons, intent URLs and city-wide footer accounts are not + # department accounts. Never manufacture /Police handles. + if re.search(r"/(?:share|sharer|intent|search|login|hashtag|watch)(?:[/.?]|$)", url.path) or len(url.path.strip("/")) < 2: + return None + handle = url.path.strip("/").split("/")[0] + if not (POLICE.search(text) or re.search(r"(?:pd|dps)$", handle, re.I)): + return None + if SOCIAL[host] == "x" and "/status/" in url.path: + return None + return SOCIAL[host] + if host.endswith("citizenrims.com"): + return "incident-log" + if host == "local.nixle.com" and re.fullmatch(r"/[a-z0-9-]+/?", url.path) and url.path.strip("/") not in ("accounts", "zipcode", "register"): + return "nixle" + if host in ("communitycrimemap.com", "www.crimemapping.com", "crimemapping.com"): + return "crime-map" + if police_page and re.search(r"/rss\.aspx$", url.path, re.I): + return "feed-directory" + if police_page and ("rss" in link["type"] or "atom" in link["type"] or re.search(r"/feed/?$|rssfeed\.aspx|rss\.xml|\.rss$", link["url"], re.I)): + return "feed-candidate" + if police_page and re.search(r"blotter|bulletin|crime[-_ /]?(?:log|report)|daily[-_ /]?(?:log|activity)", text, re.I): + return "incident-log" + if police_page and len(link["text"].strip()) < 100 and re.search(r"press[-_ /]?releases|newsroom|media[-_ /]?(?:releases|center)|news[-_ /]?(?:releases|center)", link["text"], re.I) and not re.search(r"\.(?:pdf|docx?)$|/DocumentCenter/|/News-Articles/|/Components/News/News/", url.path, re.I): + return "newsroom" + if police_page and re.search(r"alert|notify|notification", text, re.I) and not EXCLUDE.search(text): + return "alerts" + return None + + +def public_get(url): + host = urllib.parse.urlparse(url).netloc + with LOCKS_GUARD: + lock = LOCKS.setdefault(host, threading.Lock()) + with lock: + if host not in ROBOTS: + robots_url = urllib.parse.urljoin(url, "/robots.txt") + rp = urllib.robotparser.RobotFileParser(robots_url) + try: + with urllib.request.urlopen(urllib.request.Request(robots_url, headers={"User-Agent": UA}), timeout=8) as res: + rp.parse(res.read(256000).decode("utf-8", "replace").splitlines()) + except urllib.error.HTTPError as error: + if error.code in (401, 403, 429) or error.code >= 500: + raise RuntimeError(f"robots unavailable: HTTP {error.code}") from error + rp.parse([]) + except Exception as error: + raise RuntimeError("robots unavailable") from error + ROBOTS[host] = rp + if not ROBOTS[host].can_fetch(UA, url): + raise RuntimeError("robots disallows discovery") + delay = max(0.5, ROBOTS[host].crawl_delay(UA) or 0.5) + if delay > 10: + raise RuntimeError("crawl delay exceeds discovery budget") + time.sleep(delay) + request = urllib.request.Request(url, headers={"User-Agent": UA, "Accept": "text/html,application/rss+xml,*/*"}) + with urllib.request.urlopen(request, timeout=10) as res: + content = res.read(2_000_000).decode(res.headers.get_content_charset() or "utf-8", "replace") + if re.search(r"[^<]*(?:just a moment|access denied|attention required|request rejected)", content, re.I): + raise RuntimeError("access challenge") + return res.url, content + + +def survey(place, domains, overrides, websites): + result = {**place, "checked_at": datetime.now(timezone.utc).isoformat(), "domains": government_domains(place, domains), "channels": [], "errors": [], "pages_checked": 0} + manual = overrides.get(place["state"] + ":" + place["name"], {}) + queue = [(u, 0, True, "curated department URL") for u in manual.get("department_urls", [])] + queue += [(r["url"], 0, bool(POLICE.search(r["organization"] + r["url"])), r["evidence"]) for r in result["domains"]] + # Wikidata supplies discovery leads for .org/.com municipal websites. Keep + # its item as provenance; a lead is not a human-verified department source. + for candidate in websites.get(place["state_fips"] + place["geoid"][-5:], []): + if candidate["url"] not in [q[0] for q in queue]: + queue.append((candidate["url"], 0, False, candidate["evidence_url"])) + result["website_candidates"] = websites.get(place["state_fips"] + place["geoid"][-5:], []) + result["channels"].extend(manual.get("channels", [])) + visited, found = set(), {c["url"] for c in result["channels"]} + while queue and result["pages_checked"] < 7: + url, depth, police_page, evidence = queue.pop(0) + if url in visited: + continue + visited.add(url) + result["pages_checked"] += 1 + try: + final_url, html = public_get(url) + if police_page and final_url not in found: + result["channels"].append({"kind": "department-page", "url": canonical(final_url), "evidence_url": evidence, "verification": "discovered-department-page; review-jurisdiction", "access": "public-html"}) + found.add(final_url) + links = Links(html, final_url).links + follow = [] + for link in links: + kind = channel(link, police_page) + if kind and link["url"] not in found: + result["channels"].append({"kind": kind, "url": link["url"], "evidence_url": final_url, "link_text": link["text"].strip()[:300], "verification": "linked-from-municipal-or-department-page; review-scope", "access": "not-tested"}) + found.add(link["url"]) + text = link["text"] + " " + urllib.parse.unquote(link["url"]) + parsed = urllib.parse.urlparse(link["url"]) + if depth >= 2 or kind in (*SOCIAL.values(), "crime-map", "incident-log", "nixle", "feed-candidate") or EXCLUDE.search(text) or re.search(r"\.(?:pdf|docx?|xlsx?|png|jpg|zip)$", parsed.path, re.I): + continue + same_site = parsed.hostname.removeprefix("www.") == urllib.parse.urlparse(final_url).hostname.removeprefix("www.") + if kind == "feed-directory": + follow.append((link["url"], depth + 1, True, final_url)) + elif POLICE.search(text) and (same_site or POLICE.search(parsed.hostname)): + follow.append((link["url"], depth + 1, True, final_url)) + elif police_page and same_site and REPORT.search(text): + follow.append((link["url"], depth + 1, True, final_url)) + follow.sort(key=lambda q: (not bool(REPORT.search(q[0])) if police_page else False, len(q[0]))) + queue = follow[:3] + queue + except Exception as error: + result["errors"].append({"url": url, "error": str(error)[:180]}) + useful = [c for c in result["channels"] if c["kind"] not in ("department-page", "feed-directory")] + result["status"] = "channels-found" if useful else "department-found" if result["channels"] else "unresolved" + return result + + +def distance_km(lat, lon, origin=(37.243507, -121.942648)): + if lat is None or lon is None: + return None + a, b = map(math.radians, origin) + c, d = math.radians(lat), math.radians(lon) + return 6371.0088 * 2 * math.asin(min(1, math.sqrt(math.sin((c-a)/2)**2 + math.cos(a)*math.cos(c)*math.sin((d-b)/2)**2))) + + +def export(rows, output, minimum_population=50000, state="CA"): + output.mkdir(parents=True, exist_ok=True) + ordered = sorted(rows, key=lambda r: (r["state"], r["name"], r["id"])) + for row in ordered: + distance = distance_km(row["lat"], row["lon"]) + row["distance_from_link_km"] = round(distance, 2) if distance is not None else None + payload = {"population_source": CENSUS, "domain_source": GOV, "population_min_exclusive": minimum_population, "population_year": 2025, "state": state, "scope": "Active incorporated places, minor civil divisions and consolidated cities; overlapping governments retained; CDPs excluded", "generated_at": datetime.now(timezone.utc).isoformat(), "places": ordered} + (output / "inventory.json").write_text(json.dumps(payload, indent=2) + "\n") + with (output / "channels.csv").open("w", newline="") as f: + fields = ["id", "name", "state", "population", "population_year", "geography", "status", "distance_from_link_km", "kind", "url", "evidence_url", "verification", "access"] + writer = csv.DictWriter(f, fieldnames=fields, extrasaction="ignore", lineterminator="\n") + writer.writeheader() + for row in ordered: + for item in row["channels"] or [{}]: + writer.writerow({**row, **item}) + counts = {key: sum(r["status"] == key for r in ordered) for key in ("channels-found", "department-found", "unresolved", "pending")} + counts.update(places=len(ordered), channels=sum(len(r["channels"]) for r in ordered)) + (output / "summary.json").write_text(json.dumps(counts, indent=2) + "\n") + return counts + + +def main(): + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("--state", default="CA", help="Two-letter state, or all; default CA") + parser.add_argument("--min-population", type=int, default=50000) + parser.add_argument("--limit", type=int) + parser.add_argument("--workers", type=int, default=24) + parser.add_argument("--refresh", action="store_true") + parser.add_argument("--retry-unresolved", action="store_true") + parser.add_argument("--output", type=Path, default=OUT) + parser.add_argument("--cache", type=Path, default=Path("/tmp/nichedb-police-source-cache")) + args = parser.parse_args() + census = download(CENSUS, args.cache).decode("cp1252") + gazetteers = [] + for kind in ("place", "cousubs"): + z = zipfile.ZipFile(io.BytesIO(download(GAZ.format(kind), args.cache))) + gazetteers.append(z.read(z.namelist()[0]).decode("utf-8-sig")) + places = municipalities(census, gazetteers, args.min_population) + if args.state.lower() != "all": + places = [r for r in places if r["state"] == args.state.upper()] + domains = list(csv.DictReader(io.StringIO(download(GOV, args.cache).decode("utf-8-sig")))) + websites = {} + for row in json.loads(download(WIKIDATA, args.cache))["results"]["bindings"]: + geoid = re.sub(r"\D", "", row["fips"]["value"]) + url = row["website"]["value"] + if len(geoid) == 7 and urllib.parse.urlparse(url).scheme in ("http", "https"): + websites.setdefault(geoid, []).append({"url": url, "evidence_url": row["item"]["value"].replace("http:", "https:")}) + overrides_path = ROOT / "docs/data/police-source-overrides.json" + overrides = json.loads(overrides_path.read_text()) if overrides_path.exists() else {} + previous_path = args.output / "inventory.json" + previous = {r["id"]: r for r in json.loads(previous_path.read_text())["places"]} if previous_path.exists() and not args.refresh else {} + results = {r["id"]: previous.get(r["id"], {**r, "status": "pending", "channels": [], "errors": []}) for r in places} + todo = [r for r in places if r["id"] not in previous or previous[r["id"]]["status"] == "pending" or (args.retry_unresolved and previous[r["id"]]["status"] == "unresolved")] + todo.sort(key=lambda r: (distance_km(r["lat"], r["lon"]) or 99999, -r["population"])) + if args.limit: + todo = todo[:args.limit] + print(f"{len(places)} eligible governments; surveying {len(todo)}", flush=True) + export(list(results.values()), args.output, args.min_population, args.state.upper()) + with concurrent.futures.ThreadPoolExecutor(max_workers=args.workers) as executor: + futures = {executor.submit(survey, place, domains, overrides, websites): place for place in todo} + for i, future in enumerate(concurrent.futures.as_completed(futures), 1): + place = futures[future] + try: + result = future.result() + except Exception as error: + result = {**results[place["id"]], "status": "unresolved", "errors": [{"error": str(error)}]} + results[place["id"]] = result + if i % 25 == 0 or i == len(todo): + print(f"{i}/{len(todo)} {export(list(results.values()), args.output, args.min_population, args.state.upper())}", flush=True) + + +if __name__ == "__main__": + main() diff --git a/test/geo.test.js b/test/geo.test.js index 2c21707..e511d92 100644 --- a/test/geo.test.js +++ b/test/geo.test.js @@ -3,6 +3,7 @@ import { readdir, readFile } from 'node:fs/promises'; import { PGlite } from '@electric-sql/pglite'; import { citext } from '@electric-sql/pglite/contrib/citext'; import { pg_trgm } from '@electric-sql/pglite/contrib/pg_trgm'; +import { POLICE_CITIES, policeItem } from '../packages/adapters/src/police-updates.js'; import { toItem, validCoverage } from '../packages/adapters/src/scanners.js'; import { geoQueryFields, parseGeoQuery } from '../packages/core/src/geo.js'; @@ -138,6 +139,26 @@ describe('geographic contract', () => { }); describe('database geo filtering', () => { + test('police announcements match the linked California radius by jurisdiction, and stay out of incident-only feeds', async () => { + const city = POLICE_CITIES.find((c) => c.name === 'Palo Alto'); + const update = policeItem({ title: 'Police advisory', publishedAt: '2026-09-01' }, city); + const id = await item(update.data, { kind: update.kind }); + const options = { + collectionId: crime, + lat: 37.243507, + long: -121.942648, + radius: 100, + db: sql, + }; + const rows = await q.recentItems(options); + expect(rows.map((r) => Number(r.id))).toContain(id); + expect(rows.find((r) => Number(r.id) === id).data.location_precision).toBe('jurisdiction'); + const incidentFeed = { collection_id: crime, query: { ...options, kinds: ['crime-report'] } }; + delete incidentFeed.query.db; + expect((await q.feedItems(incidentFeed, { db: sql })).map((r) => Number(r.id))).not.toContain( + id, + ); + }); test('existing coordinate shapes, malformed values and unknown locations', async () => { for (const d of [ near, diff --git a/test/police-source-discovery.test.py b/test/police-source-discovery.test.py new file mode 100644 index 0000000..18b4c1e --- /dev/null +++ b/test/police-source-discovery.test.py @@ -0,0 +1,75 @@ +"""Data-quality checks: python3 test/police-source-discovery.test.py""" +import csv +import importlib.util +import io +import unittest +from pathlib import Path + +ROOT = Path(__file__).resolve().parents[1] +spec = importlib.util.spec_from_file_location("discovery", ROOT / "scripts/discover-police-sources.py") +discovery = importlib.util.module_from_spec(spec) +spec.loader.exec_module(discovery) +spec = importlib.util.spec_from_file_location("report", ROOT / "scripts/build-police-source-report.py") +report = importlib.util.module_from_spec(spec) +spec.loader.exec_module(report) +spec = importlib.util.spec_from_file_location("nixle", ROOT / "scripts/discover-police-nixle.py") +nixle = importlib.util.module_from_spec(spec) +spec.loader.exec_module(nixle) + + +class DiscoveryTest(unittest.TestCase): + def test_nixle_directory_neighbours_do_not_become_city_publishers(self): + self.assertFalse(nixle.city_publisher("SBSD - Chino Hills Police Department", "Chino")) + self.assertFalse(nixle.city_publisher("Madera County Sheriff's Office", "Madera")) + self.assertTrue(nixle.city_publisher("SBSD - Chino Hills Police Department", "Chino Hills")) + self.assertTrue(nixle.city_publisher("City of Davis Police", "Davis")) + self.assertTrue(nixle.city_publisher("San Mateo, CA Police Department", "San Mateo")) + + def test_population_threshold_and_whole_governments(self): + base = {"SUMLEV": "162", "STATE": "06", "COUNTY": "000", "PLACE": "12345", "COUSUB": "00000", "CONCIT": "00000", "FUNCSTAT": "A", "NAME": "Example city", "STNAME": "California", "POPESTIMATE2025": "20001"} + rows = [base, {**base, "PLACE": "12346", "POPESTIMATE2025": "20000"}, {**base, "SUMLEV": "157"}, {**base, "SUMLEV": "050"}, {**base, "FUNCSTAT": "S"}, {**base, "SUMLEV": "061", "COUNTY": "001", "COUSUB": "12347", "NAME": "Example township"}] + text = io.StringIO() + writer = csv.DictWriter(text, fieldnames=base) + writer.writeheader() + writer.writerows(rows) + gaz = "USPS|GEOID|INTPTLAT|INTPTLONG\nCA|0612345|37.25|-121.9\nCA|0600112347|37.3|-121.8\n" + places = discovery.municipalities(text.getvalue(), [gaz], minimum_population=20000) + self.assertEqual({p["id"] for p in places}, {"162:0612345", "061:0600112347"}) + self.assertTrue(all(p["population"] > 20000 for p in places)) + + def test_same_named_places_in_other_states_are_not_domain_matches(self): + place = {"state": "CA", "name": "Campbell"} + row = {"Domain type": "City", "State": "OH", "City": "Campbell", "Organization name": "City of Campbell", "Suborganization name": "", "Domain name": "campbellohio.gov"} + self.assertEqual(discovery.government_domains(place, [row]), []) + + def test_social_share_buttons_and_city_footer_accounts_are_excluded(self): + for url in ("https://twitter.com/intent/tweet?text=Police", "https://facebook.com/sharer/sharer.php?u=Police", "https://x.com/CityOfExample"): + self.assertIsNone(discovery.channel({"url": url, "text": "", "type": ""}, True)) + self.assertEqual(discovery.channel({"url": "https://twitter.com/ExamplePD", "text": "", "type": ""}, True), "x") + + def test_nixle_registration_is_not_a_public_archive(self): + for url in ("https://local.nixle.com/register/", "https://local.nixle.com/accounts/login/", "https://local.nixle.com/zipcode/94530/"): + self.assertIsNone(discovery.channel({"url": url, "text": "", "type": ""}, True)) + self.assertEqual(discovery.channel({"url": "https://local.nixle.com/example-police-department/", "text": "", "type": ""}, True), "nixle") + + def test_translations_and_tracking_dedupe_without_losing_feed_categories(self): + self.assertEqual(discovery.canonical(" https://twitter.com/ExamplePD?ref_src=abc "), "https://x.com/examplepd") + url = discovery.canonical("https://example.gov/RSSFeed.aspx?ModID=1&CID=Police-5&oc_lang=es") + self.assertIn("ModID=1", url) + self.assertIn("CID=Police-5", url) + self.assertNotIn("oc_lang", url) + + def test_calendar_and_generic_city_feeds_are_not_crime_feeds(self): + def row(url): + return {"kind": "feed-candidate", "url": url, "evidence_url": "https://example.gov/rss.aspx", "verification": "candidate"} + channels = report.clean_channels([row("https://example.gov/RSSFeed.aspx?ModID=58&CID=Police-8"), row("https://example.gov/RSSFeed.aspx?ModID=1&CID=Library-9"), row("https://example.gov/RSSFeed.aspx?ModID=1&CID=Police-5")]) + self.assertEqual([c["kind"] for c in channels], ["calendar-feed", "feed-candidate"]) + + def test_report_does_not_allow_data_to_end_the_script(self): + page = report.render([{"name": "</script><script>alert(1)</script>"}], {}) + self.assertNotIn("</script><script>alert(1)", page) + self.assertIn("\\u003c/script>", page) + + +if __name__ == "__main__": + unittest.main() diff --git a/test/police-updates.test.js b/test/police-updates.test.js new file mode 100644 index 0000000..866ae4e --- /dev/null +++ b/test/police-updates.test.js @@ -0,0 +1,135 @@ +import { describe, expect, test } from 'bun:test'; +import { + nixleDate, + POLICE_CITIES, + POLICE_SCOPE, + parseNixleAlert, + parseNixleArchive, + policeItem, + policeUpdates, +} from '../packages/adapters/src/police-updates.js'; +import { normaliseItem } from '../packages/core/src/adapter.js'; + +const city = POLICE_CITIES.find((c) => c.name === 'Palo Alto'); +const source = city.ingestion; +const archive = `<html><title>Messages from Palo Alto Police Department : Nixle +
  1. Traffic advisory +More »

`; +const detail = (date = 'Wednesday June 24th, 2026 :: 04:27 p.m. PDT') => ` + +

Road closure.
Follow the signed detour.

Update: Road reopened.

+

Address/Location: Police headquarters, not the incident.

`; +const entry = { id: '123', title: 'Traffic advisory', url: 'https://local.nixle.com/alert/123/' }; + +describe('police announcements', () => { + test('coverage page exposes the 100k option and distinguishes references from reviewed feeds', async () => { + process.env.DATABASE_URL ??= 'postgres://localhost/unused'; + const { PoliceCoveragePage } = await import('../apps/web/src/views/police-coverage.jsx'); + const html = await PoliceCoveragePage({ minimum: 100000 }).toString(); + expect(html).toContain('76 cities'); + expect(html).toContain('Fremont'); + expect(html).not.toContain('Palo Alto'); + const pending = await PoliceCoveragePage({ search: 'San Jose', pending: true }).toString(); + expect(pending).toContain('Source leads only'); + expect(pending).not.toContain('Reviewed Nixle feed'); + }); + test('Census cutoff is strict; discovery does not activate every city or county publisher', () => { + expect(POLICE_SCOPE.minimumPopulation).toBe(50000); + expect(POLICE_CITIES).toHaveLength(177); + expect(POLICE_CITIES.filter((c) => c.population > 100000)).toHaveLength(76); + expect(POLICE_CITIES.every((c) => c.state === 'CA' && c.population > 50000)).toBe(true); + expect(new Set(POLICE_CITIES.map((c) => c.geoid)).size).toBe(177); + expect(POLICE_CITIES.every((c) => c.references.length > 0)).toBe(true); + expect(POLICE_CITIES.find((c) => c.name === 'Chino').ingestion).toBeNull(); + expect(POLICE_CITIES.find((c) => c.name === 'Chino Hills').ingestion).toBeTruthy(); + expect(POLICE_CITIES.find((c) => c.name === 'Los Angeles').ingestion).toBeNull(); + expect(POLICE_CITIES.find((c) => c.name === 'Burbank').ingestion).toBeNull(); + expect(policeUpdates.defaultSources.every((s) => s.cadenceMinutes === 60)).toBe(true); + expect(policeUpdates.defaultSources.length).toBeLessThan(POLICE_CITIES.length); + }); + test('archive rejects login and another agency; follows real stable alert IDs', () => { + expect(parseNixleArchive(archive, source)).toEqual([entry]); + expect(() => parseNixleArchive('Sign in', source)).toThrow('publisher archive'); + expect(() => + parseNixleArchive(archive.replaceAll('Palo Alto', 'Other City'), source), + ).toThrow(); + }); + test('publication date uses explicit California timezone, never relative age or incident text', () => { + expect(nixleDate('Wednesday June 24th, 2026 :: 04:27 p.m. PDT')).toBe( + '2026-06-24T23:27:00.000Z', + ); + expect(nixleDate('Monday January 5th, 2026 :: 12:01 a.m. PST')).toBe( + '2026-01-05T08:01:00.000Z', + ); + expect(nixleDate('Entered: 2 weeks ago')).toBeNull(); + expect(nixleDate('Monday January 5th, 2026 :: 13:01 p.m. PST')).toBeNull(); + }); + test('nested alert body excludes headquarters address; unknown date stays unknown', async () => { + const raw = await parseNixleAlert(detail(), entry, source); + expect(raw.summary).toContain('Road reopened'); + expect(raw.summary).not.toContain('headquarters'); + expect(raw.publishedAt).toBe('2026-06-24T23:27:00.000Z'); + const item = normaliseItem( + policeItem(await parseNixleAlert(detail('Unknown'), entry, source), city), + ); + expect(item.publishedAt).toBeNull(); + expect(item.timeKnown).toBe(false); + expect(item.kind).toBe('police-update'); + expect(item.data.occurred_at).toBeNull(); + expect(item.data.location_precision).toBe('jurisdiction'); + expect(item.data.coverage).toEqual({ type: 'Point', coordinates: [city.lon, city.lat] }); + await expect( + parseNixleAlert( + detail().replace('/palo-alto-police-department/', '/another-agency/'), + entry, + source, + ), + ).rejects.toThrow('publisher'); + }); + test('fetch failures retry on the next pull; known announcements are bounded correction reads', async () => { + let fail = true; + let details = 0; + const ctx = { + config: { city: city.slug }, + budget: 1, + previous: async () => new Map(), + http: { + request: async () => new Response('User-agent: *\nAllow: /'), + text: async (url) => { + if (!url.includes('/alert/')) return archive; + details++; + if (fail) throw new Error('503'); + return detail(); + }, + }, + }; + await expect(policeUpdates.pull(ctx)).rejects.toThrow('503'); + fail = false; + const result = await policeUpdates.pull(ctx); + expect(result.items[0].externalId).toBe('nixle:123'); + expect(details).toBe(2); + const hash = normaliseItem(result.items[0]).contentHash; + ctx.previous = async () => new Map([['nixle:123', result.items[0].data]]); + const repeat = await policeUpdates.pull(ctx); + expect(normaliseItem(repeat.items[0]).contentHash).toBe(hash); + }); + test('blocked robots and non-feed HTML fail visibly; empty RSS is a valid empty result', async () => { + const rssCity = POLICE_CITIES.find((c) => c.ingestion?.format === 'rss'); + let content = 'Access denied'; + const ctx = { + config: { city: rssCity.slug }, + http: { + request: async () => new Response('', { status: 403 }), + text: async () => content, + }, + }; + await expect(policeUpdates.pull(ctx)).rejects.toThrow('Robots check'); + ctx.http.request = async () => new Response('User-agent: *\nDisallow: /'); + await expect(policeUpdates.pull(ctx)).rejects.toThrow('disallows'); + ctx.http.request = async () => new Response('', { status: 404 }); + await expect(policeUpdates.pull(ctx)).rejects.toThrow('Expected RSS'); + content = 'Police'; + expect((await policeUpdates.pull(ctx)).items).toEqual([]); + }); +});