Rath, Ledner and Mitchell
- Size
- 29 employees
- Founded
- 1957
- Location
- AU
Phased mission-critical monitoring
companies / #12
Phased mission-critical monitoring
curl -sS \
"https://example-data.com/api/v1/companies/12" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/12"
);
const companie = await res.json();import type { Companie } from "https://example-data.com/types/companies.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/companies/12"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/12"
)
companie = res.json() {
"id": 12,
"name": "Rath, Ledner and Mitchell",
"slug": "rath-ledner-and-mitchell-12",
"description": "Phased mission-critical monitoring",
"industryId": 37,
"headquartersCountryAlpha2": "AU",
"employeeCount": 29,
"foundedYear": 1957,
"websiteUrl": "https://www.rath-ledner-and-mitchell.com",
"logoUrl": "https://picsum.photos/seed/company-12/200/200",
"isHiring": true,
"createdAt": "2012-01-16T22:57:53.979Z"
}