Discover/bcorporation API
live

bcorporation APIbcorporation.net

Search and retrieve public profiles of Certified B Corporations including impact scores, certification dates, industry, and headquarters data via 2 endpoints.

Endpoint health
verified 3h ago
search_companies
get_company
1/2 passing latest checkself-healing
Endpoints
2
Updated
3h ago

What is the bcorporation API?

The bcorporation.net API exposes 2 endpoints for querying the official B Corp directory maintained by B Lab. Use search_companies to find certified companies by name, industry, country, or keyword, and get_company to pull a full profile including B Impact scores across Governance, Workers, Community, and Environment areas, certification dates, operating locations, and company size.

Try it
Page number for pagination (1-based).
Search keyword(s) matched against company name, description, website keywords, location, industry, and sector. Empty string or omitted returns all companies.
Filter by headquarters country name exactly as listed in the directory (e.g. 'United States', 'United Kingdom', 'Netherlands The').
Filter by industry name exactly as listed in the directory (e.g. 'Apparel', 'Food products', 'Software publishing and SaaS platforms').
Number of results per page (1-250).
api.parse.bot/scraper/141970e4-6335-45e3-817f-5e80c18aa6c5/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/141970e4-6335-45e3-817f-5e80c18aa6c5/search_companies?page=1&query=coffee&country=United+States&industry=Apparel&per_page=25' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

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

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

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

uv add parse-sdk
uv run parse init
uv run parse add --marketplace bcorporation-net-api

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

"""Walkthrough: B Corp Directory SDK — search, filter, and inspect certified companies."""
from parse_apis.bcorporation_net_api import BCorp, CompanyNotFound

client = BCorp()

# Search for sustainable food companies in the US
for company in client.companies.search(query="coffee", country="United States", limit=5):
    print(company.name, "|", company.industry, "|", company.latest_verified_score)

# Drill into a specific company for full details including impact scores
result = client.companies.search(query="Patagonia", limit=1).first()
if result:
    detail = result.details()
    print(detail.name, "—", detail.hq_province + ",", detail.hq_country)
    print("Certified:", detail.certification_date, "| Score:", detail.latest_verified_score)
    if detail.impact_area_scores:
        print("  Governance:", detail.impact_area_scores.governance)
        print("  Community:", detail.impact_area_scores.community)
    if detail.previous_scores:
        for ps in detail.previous_scores[:2]:
            print(f"  {ps.year}: {ps.score}")

# Fetch a company directly by slug
try:
    co = client.companies.get(slug="patagonia-inc")
    print(co.name, "| Website:", co.website, "| Size:", co.size)
except CompanyNotFound as exc:
    print(f"Not found: {exc}")

print("exercised: companies.search / details / companies.get")
All endpoints · 2 totalmissing one? ·

Full-text search over the B Corp directory. Matches against company name, description, keywords, location, industry, and sector. Optionally filter by headquarters country or industry. Results are ordered by relevance when a query is provided, or newest-first when browsing all companies. Each result includes certification status, date, overall B Impact score, headquarters location, and operating countries.

Input
ParamTypeDescription
pageintegerPage number for pagination (1-based).
querystringSearch keyword(s) matched against company name, description, website keywords, location, industry, and sector. Empty string or omitted returns all companies.
countrystringFilter by headquarters country name exactly as listed in the directory (e.g. 'United States', 'United Kingdom', 'Netherlands The').
industrystringFilter by industry name exactly as listed in the directory (e.g. 'Apparel', 'Food products', 'Software publishing and SaaS platforms').
per_pageintegerNumber of results per page (1-250).
Response
{
  "type": "object",
  "fields": {
    "page": "integer — current page number",
    "total": "integer — total number of matching companies",
    "per_page": "integer — results per page",
    "companies": "array of company summary objects"
  },
  "sample": {
    "data": {
      "page": 1,
      "total": 58,
      "per_page": 3,
      "companies": [
        {
          "id": "wonderstate-coffee",
          "name": "Wonderstate Coffee",
          "size": "50-249",
          "slug": "wonderstate-coffee",
          "sector": "Agriculture/Growers",
          "hq_city": "Viroqua",
          "industry": "Agricultural Processing",
          "countries": [
            "United States"
          ],
          "hq_country": "United States",
          "description": "Since 2005, Wonderstate Coffee has been dedicated to roasting exceptional, ethically sourced coffee...",
          "hq_province": "Wisconsin",
          "company_logo": null,
          "demographics": [],
          "is_certified": true,
          "certification_date": "2025-09-29",
          "latest_verified_score": "91.5"
        }
      ]
    },
    "status": "success"
  }
}

About the bcorporation API

Endpoints

The API provides two endpoints covering the full public B Corp directory. search_companies accepts free-text query strings matched against company name, description, website keywords, location, industry, and sector. Results can be narrowed with country (e.g. 'United States', 'United Kingdom') and industry (e.g. 'Apparel', 'Software publishing') filters. Pagination is controlled via page and per_page (1–250 results per page). The response includes a total count and an array of company summary objects — useful for building filtered lists or running bulk exports of certified companies.

Company Profiles

get_company takes a slug (returned in search results, e.g. 'patagonia-inc') and returns the full directory profile. Response fields include name, size (employee count range), sector, industry, hq_city, website, cities, and countries representing all operating locations. Critically, it returns the overall B Impact Score and per-area scores for Governance, Workers, Community, and Environment — the core certification data that B Lab publishes for each company.

Data Scope and Freshness

Coverage is limited to companies that hold active or historical certification through B Lab's assessment process. The directory reflects the public-facing profile data as B Lab maintains it, including certification status and dates. Companies with no listed website return null for the website field. Industry and country filter values must match the directory's exact taxonomy — check values returned in search results before constructing filter queries.

Reliability & maintenanceVerified

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

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

Last verified
3h ago
Latest check
1/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a filterable map of Certified B Corps by country and industry using countries, hq_city, and industry fields
  • Track B Impact Score distributions across sectors by bulk-fetching profiles with get_company
  • Identify newly certified companies by browsing the directory newest-first via search_companies with no query
  • Compare certification dates across competitors in a given industry using the certification fields from get_company
  • Enrich a sustainability database with verified B Corp status, sector classification, and employee size range
  • Generate a dataset of B Corps operating in specific countries using the country filter and countries response field
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

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

Frequently asked questions
Does B Lab offer an official developer API for the B Corp directory?+
B Lab does not publish a documented public developer API for the B Corp directory at bcorporation.net. The directory is accessible through the website's search interface but no API credentials or developer portal are provided.
What does `search_companies` return compared to `get_company`?+
search_companies returns summary objects — enough data to identify and list companies (name, slug, sector, industry, location). get_company returns the full profile including B Impact scores per area (Governance, Workers, Community, Environment), certification dates, all operating cities and countries, employee size range, and the company website URL.
Do the industry and country filter values accept partial matches?+
No — the industry and country parameters in search_companies require exact strings as listed in the directory (e.g. 'Food products' not 'food'). The safest approach is to run a broad search_companies query first, inspect the returned industry and sector values, then use those exact strings as filters.
Does the API expose individual B Impact assessment answers or only the aggregate scores?+
Currently the API returns the overall B Impact Score and per-area scores (Governance, Workers, Community, Environment) as exposed in the public directory profile. Granular question-level assessment responses are not included. You can fork this API on Parse and revise it to add an endpoint targeting more detailed assessment data if that becomes available in the public directory.
Can I retrieve a list of companies that have lost their B Corp certification?+
The API returns certification status and dates as reflected in the public directory, but does not currently provide a dedicated endpoint for filtering decertified or lapsed companies. You can fork this API on Parse and revise it to add filtering logic around certification status fields to surface that subset.
Page content last updated . Spec covers 2 endpoints from bcorporation.net.
Related APIs in B2b DirectorySee all →
bbb.org API
bbb.org API
opencorporates.com API
Access comprehensive company registration data, officer details, and filing histories from OpenCorporates across jurisdictions worldwide to research businesses and their leadership. Search for specific companies or officers, retrieve detailed corporate information, and explore filing records to support due diligence, compliance checks, and business intelligence.
cbinsights.com API
Access CB Insights data including company and investor profiles, funding history, competitor maps, the unicorn list, and research reports.
bizapedia.com API
Search for detailed business profiles and contact information from Bizapedia, including company details, employee data, and communication channels. Access comprehensive business intelligence to research companies and build targeted contact lists.
thecompaniesapi.com API
Enrich your company database with 80+ data points per company, search by industry or company details, and discover email patterns to drive your business intelligence. Find verified company information, get pricing data, and ask contextual questions about any organization to fuel your sales, marketing, or research efforts.
developer.company-information.service.gov.uk API
Search for UK registered companies and retrieve detailed information including company profiles, officer names, and their dates of birth. Access comprehensive corporate records directly from the official Companies House register to verify business details and identify key personnel.
dnb.com API
Search millions of companies in Dun & Bradstreet's global business directory to find detailed company profiles and verify D-U-N-S numbers. Look up key business information like company details and identifiers to support due diligence, sales prospecting, and business intelligence needs.
ycombinator.com API
Access comprehensive data from the Y Combinator ecosystem, including company profiles, founder and partner information, job listings, and the YC library. Filter companies by batch, industry, and hiring status, and explore detailed profiles with social links, team information, and funding metadata.