example-data.com

companies / #13

Component variants

curl -sS \
  "https://example-data.com/api/v1/companies/13" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/companies/13"
);
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/13"
);
const companie = (await res.json()) as Companie;
import requests

res = requests.get(
    "https://example-data.com/api/v1/companies/13"
)
companie = res.json()
{
  "id": 13,
  "name": "Littel, Mayert and Fritsch",
  "slug": "littel-mayert-and-fritsch-13",
  "description": "Quality-focused AI-powered concept",
  "industryId": 9,
  "headquartersCountryAlpha2": "ZA",
  "employeeCount": 33934,
  "foundedYear": 2022,
  "websiteUrl": "https://www.littel-mayert-and-fritsch.com",
  "logoUrl": "https://picsum.photos/seed/company-13/200/200",
  "isHiring": true,
  "createdAt": "2015-05-04T12:17:46.679Z"
}
Draftbit