Littel, Mayert and Fritsch
- Size
- 33934 employees
- Founded
- 2022
- Location
- ZA
Quality-focused AI-powered concept
Overview
companies / #13
Quality-focused AI-powered concept
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/13" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/13" ); 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/13"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/13"
)
companie = res.json() Response
{
"id": 13,
"name": "Littel, Mayert and Fritsch",
"slug": "littel-mayert-and-fritsch-13",
"description": "Quality-focused AI-powered concept",
"industryId": 9,
"headquartersCountryAlpha2": "ZA",
"employeeCount": 33934,
"foundedYear": 2022,
"websiteUrl": "https://example.com/companies/littel-mayert-and-fritsch",
"logoUrl": "https://picsum.photos/seed/company-13/200/200",
"isHiring": true,
"createdAt": "2015-05-04T12:17:46.679Z"
}