Moore and Sons
- Size
- 28089 employees
- Founded
- 2010
- Website
- https://www.moore-and-sons.com
- Location
- EG
Programmable optimal leverage
companies / #11
Programmable optimal leverage
curl -sS \
"https://example-data.com/api/v1/companies/11" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/11"
);
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/11"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/11"
)
companie = res.json() {
"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://www.moore-and-sons.com",
"logoUrl": "https://picsum.photos/seed/company-11/200/200",
"isHiring": false,
"createdAt": "2015-02-11T07:27:05.585Z"
}