example-data.com
Menu
Browse docs and collections

Overview

companies / #50

Component variants

Related

References

Referenced by

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/companies/50" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/companies/50"
);
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/50"
);
const company = (await res.json()) as Company;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/companies/50"
)
companie = res.json()

Response

{
  "id": 50,
  "name": "Simonis and Sons",
  "slug": "simonis-and-sons-50",
  "description": "Total needs-based core",
  "industryId": 8,
  "headquartersCountryAlpha2": "MY",
  "employeeCount": 44089,
  "foundedYear": 1998,
  "websiteUrl": "https://example.com/companies/simonis-and-sons",
  "logoUrl": "https://picsum.photos/seed/company-50/200/200",
  "isHiring": true,
  "createdAt": "2011-11-14T02:31:23.086Z"
}