Ondricka, Bosco and Donnelly
- Size
- 46144 employees
- Founded
- 1999
- Location
- CA
Horizontal high-level pricing structure
Overview
companies / #25
Horizontal high-level pricing structure
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/25" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/25" ); const company = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/companies.d.ts https://example-data.com/types/companies.d.ts
import type { Company } from "./types/companies";
const res = await fetch(
"https://example-data.com/api/v1/companies/25"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/25"
)
companie = res.json() Response
{
"id": 25,
"name": "Ondricka, Bosco and Donnelly",
"slug": "ondricka-bosco-and-donnelly-25",
"description": "Horizontal high-level pricing structure",
"industryId": 8,
"headquartersCountryAlpha2": "CA",
"employeeCount": 46144,
"foundedYear": 1999,
"websiteUrl": "https://example.com/companies/ondricka-bosco-and-donnelly",
"logoUrl": "https://picsum.photos/seed/company-25/200/200",
"isHiring": false,
"createdAt": "2024-08-19T01:58:36.072Z"
}