example-data.com

companies / #11

Component variants

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"
}
Draftbit