Moore and Sons
- Size
- 28089 employees
- Founded
- 2010
- Location
- EG
Programmable optimal leverage
Overview
companies / #11
Programmable optimal leverage
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/11" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/11" ); 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/11"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/11"
)
companie = res.json() Response
{
"id": 11,
"name": "Moore and Sons",
"slug": "moore-and-sons-11",
"description": "Programmable optimal leverage",
"industryId": 12,
"headquartersCountryAlpha2": "EG",
"employeeCount": 28089,
"foundedYear": 2010,
"websiteUrl": "https://example.com/companies/moore-and-sons",
"logoUrl": "https://picsum.photos/seed/company-11/200/200",
"isHiring": false,
"createdAt": "2015-02-11T07:27:05.585Z"
}