example-data.com
Menu
Browse docs and collections

Overview

companies / #55

Component variants

Related

Referenced by

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 55,
  "name": "O'Kon - Osinski",
  "slug": "o-kon-osinski-55",
  "description": "Managed zero administration architecture",
  "industryId": 25,
  "headquartersCountryAlpha2": "MY",
  "employeeCount": 40486,
  "foundedYear": 1960,
  "websiteUrl": "https://example.com/companies/o-kon-osinski",
  "logoUrl": "https://picsum.photos/seed/company-55/200/200",
  "isHiring": false,
  "createdAt": "2026-05-17T12:59:40.326Z"
}