example-data.com

orgs / #28

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/orgs/28" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/orgs/28"
);
const org = await res.json();
import type { Org } from "https://example-data.com/types/orgs.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/orgs/28"
);
const org = (await res.json()) as Org;
import requests

res = requests.get(
    "https://example-data.com/api/v1/orgs/28"
)
org = res.json()
{
  "id": 28,
  "name": "Thompson Group",
  "slug": "thompson-group",
  "description": "Sustainable discrete portal",
  "industryId": null,
  "size": "11-50",
  "foundedYear": 1994,
  "websiteUrl": "https://www.thompson-group.com",
  "logoUrl": "https://picsum.photos/seed/org-28/200/200",
  "createdAt": "2024-06-07T07:21:08.498Z",
  "updatedAt": "2025-03-12T00:16:23.362Z"
}
Draftbit