example-data.com

orgs / #27

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/orgs/27"
)
org = res.json()
{
  "id": 27,
  "name": "Cormier, Rogahn and Bogisich",
  "slug": "cormier-rogahn-and-bogisich",
  "description": "Expanded fault-tolerant access",
  "industryId": 8,
  "size": "11-50",
  "foundedYear": 2024,
  "websiteUrl": "https://www.cormier-rogahn-and-bogisich.com",
  "logoUrl": "https://picsum.photos/seed/org-27/200/200",
  "createdAt": "2026-02-26T10:30:39.166Z",
  "updatedAt": "2026-04-20T17:01:29.448Z"
}
Draftbit