example-data.com

orgs / #2

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/orgs/2"
)
org = res.json()
{
  "id": 2,
  "name": "Cremin - Kautzer",
  "slug": "cremin-kautzer",
  "description": "Open-architected mobile process improvement",
  "industryId": 9,
  "size": "11-50",
  "foundedYear": 2021,
  "websiteUrl": "https://www.cremin-kautzer.com",
  "logoUrl": "https://picsum.photos/seed/org-2/200/200",
  "createdAt": "2026-02-21T10:57:45.327Z",
  "updatedAt": "2026-02-23T11:54:26.403Z"
}
Draftbit