Which employers have NLRB labor activity — a union petition or an unfair-labor-practice ch
Which employers have NLRB labor activity — a union petition or an unfair-labor-practice charge? Search NLRB cases by employer, case type (CA/CB/RC/RM/...), category (ulp vs representation), status, region, state, union, election result, or filing date (since). Returns the employer (entity-resolved where possible), region, union, and — for elections — the tally. Cases as filed (a charge is an allegation, not a judgment); a labor-relations trigger for PEO/HR, benefits, staffing, and outplacement.
1250000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-07
updated
Provider
api.govparse.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x3873d15CF3209c32aaA8d9AA542164E658567129",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1250000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "BdcZbENFdEyEUMqv9pnRMUnn1Yyeyo2dCMbYXbJ3LmaB",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "1250000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"case_category": "representation",
"case_type": "RC",
"company": "Starbucks"
},
"type": "http"
},
"output": {
"example": {
"rows": [
{
"ballot_type": null,
"ballots_counted": null,
"case_category": "representation petition",
"case_number": "27-RC-391415",
"case_type": "RC",
"challenged_ballots": null,
"charging_party_type": null,
"date_filed": "2026-07-24",
"election_result": null,
"eligible_voters": null,
"employer_city": "Denver",
"employer_name": "Colorado Coalition for the Homeless",
"employer_state": "CO",
"employer_zip": "80205",
"entity_id": null,
"num_employees": 120,
"petitioner": "Service Employees International Union, Local 105",
"region_assigned": "Region 27, Denver, Colorado",
"region_code": "27",
"source": "recent_filings",
"status": "Open",
"tally_issued_date": null,
"tally_type": null,
"union_name": "Service Employees International Union, Local 105",
"union_to_certify": null,
"votes_against": null,
"votes_for": null
}
],
"total_matched": 1
},
"type": "json"
}
},
"routeTemplate": "/v1/nlrb/cases/search",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"case_category": {
"description": "ulp | representation | unit (CSV).",
"examples": [
"representation"
],
"type": "string"
},
"case_type": {
"description": "NLRB case type code(s), CSV (CA, CB, RC, RM, RD, UC, ...).",
"examples": [
"RC"
],
"type": "string"
},
"company": {
"description": "Employer name — suffix/punctuation-insensitive.",
"examples": [
"Starbucks"
],
"type": "string"
},
"entity_id": {
"description": "Resolved employer entity UUID (pivots to business360).",
"examples": [
"b7f3e2d1-4a5c-4e6f-8a9b-0c1d2e3f4a5b"
],
"type": "string"
},
"has_election": {
"description": "true = cases with an election tally on record.",
"examples": [
"true"
],
"type": "string"
},
"limit": {
"description": "Max rows (default 25, cap 100).",
"examples": [
25
],
"type": "integer"
},
"offset": {
"description": "Rows to skip.",
"examples": [
0
],
"type": "integer"
},
"region": {
"description": "NLRB region code(s), CSV (two-digit, e.g. 10).",
"examples": [
"10"
],
"type": "string"
},
"result": {
"description": "union | no union (election outcome, CSV).",
"examples": [
"union"
],
"type": "string"
},
"since": {
"description": "Filed on/after this date (YYYY-MM-DD).",
"examples": [
"2026-01-01"
],
"type": "string"
},
"sort": {
"description": "date_filed | tally_issued_date | num_employees :asc|:desc. Default date_filed:desc.",
"examples": [
"date_filed:desc"
],
"type": "string"
},
"state": {
"description": "Employer state code(s), CSV.",
"examples": [
"CA"
],
"type": "string"
},
"status": {
"description": "Open | Closed (CSV).",
"examples": [
"Open"
],
"type": "string"
},
"union": {
"description": "Union / petitioner name fragment.",
"examples": [
"Teamsters"
],
"type": "string"
}
},
"required": [],
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.govparse.io/v1/nlrb/cases/search" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.govparse.io/v1/nlrb/cases/search");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.govparse.io/v1/nlrb/cases/search")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/14587.json, and this resource appears in /discovery/resources and /discovery/search.