example-data.com

orgs / #24

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/orgs/24"
)
org = res.json()
{
  "id": 24,
  "name": "Prohaska Inc",
  "slug": "prohaska-inc",
  "description": "Future-proofed bifurcated knowledge user",
  "industryId": 28,
  "size": "1-10",
  "foundedYear": 2011,
  "websiteUrl": "https://www.prohaska-inc.com",
  "logoUrl": "https://picsum.photos/seed/org-24/200/200",
  "createdAt": "2025-10-15T04:46:32.683Z",
  "updatedAt": "2025-11-16T07:17:19.559Z"
}
Draftbit