Metz, Adams and Friesen
- Size
- 25708 employees
- Founded
- 1964
- Location
- DE
Visionary cloud-native internet solution
Overview
companies / #15
Visionary cloud-native internet solution
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/15" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/15" ); 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/15"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/15"
)
companie = res.json() Response
{
"id": 15,
"name": "Metz, Adams and Friesen",
"slug": "metz-adams-and-friesen-15",
"description": "Visionary cloud-native internet solution",
"industryId": 26,
"headquartersCountryAlpha2": "DE",
"employeeCount": 25708,
"foundedYear": 1964,
"websiteUrl": "https://example.com/companies/metz-adams-and-friesen",
"logoUrl": "https://picsum.photos/seed/company-15/200/200",
"isHiring": false,
"createdAt": "2018-09-02T18:49:57.197Z"
}