GET
/
markets
/
{marketId}
/
companies
/
diversity
curl --request GET \
  --url https://api.forestreet.com/markets/{marketId}/companies/diversity \
  --header 'x-api-key: <api-key>'
{
  "meta": {
      "totalItems": 13,
      "totalUniqueCompanies": 17
  },
  "currentQuery": {
      "marketId": 1
  },
  "data": {
      "Diverse Supplier Development Program (DSDP)": 8,
      "European Supplier Diversity Project (ESDP)": 5,
      "Responsible Business Initiative for Justice and Equality": 4,
      "Certified Benefit Corporation": 2,
      "Historically Black Colleges and Universities": 2,
      "Minority Supplier Development UK (MSDUK)": 2,
      "LGBT Owned Business Enterprise": 1,
      "Minority-owned Business Enterprise": 1,
      "People With Disability": 1,
      "Social Enterprise Mark": 1,
      "U.S. Department of Housing and Urban Development": 1,
      "Woman Led Business Enterprise": 1,
      "Women-owned Business Enterprise": 1
  }
}
This endpoint is deprecated and will be removed in the future. Please use Attributes instead.

Path

marketId
string

The ID of the market which you want to retrieve diversity certifications of. This can be retrieved by searching for markets.

Response

meta
object

Metadata summarizing the data returned.

data
object

A mapping of all certifications to their number of occurrences, sorted by

  • descending number of occurrences, and then
  • alphabetical order of the certification.
{
  "meta": {
      "totalItems": 13,
      "totalUniqueCompanies": 17
  },
  "currentQuery": {
      "marketId": 1
  },
  "data": {
      "Diverse Supplier Development Program (DSDP)": 8,
      "European Supplier Diversity Project (ESDP)": 5,
      "Responsible Business Initiative for Justice and Equality": 4,
      "Certified Benefit Corporation": 2,
      "Historically Black Colleges and Universities": 2,
      "Minority Supplier Development UK (MSDUK)": 2,
      "LGBT Owned Business Enterprise": 1,
      "Minority-owned Business Enterprise": 1,
      "People With Disability": 1,
      "Social Enterprise Mark": 1,
      "U.S. Department of Housing and Urban Development": 1,
      "Woman Led Business Enterprise": 1,
      "Women-owned Business Enterprise": 1
  }
}