example-data.com

orgs / #23

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/orgs/23"
)
org = res.json()
{
  "id": 23,
  "name": "Prohaska - Wiza",
  "slug": "prohaska-wiza",
  "description": "Compatible high-level complexity",
  "industryId": null,
  "size": "201-1000",
  "foundedYear": 1999,
  "websiteUrl": "https://www.prohaska-wiza.com",
  "logoUrl": "https://picsum.photos/seed/org-23/200/200",
  "createdAt": "2026-02-16T19:57:21.549Z",
  "updatedAt": "2026-03-05T20:38:21.716Z"
}
Draftbit