example-data.com

orgs / #29

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/orgs/29"
)
org = res.json()
{
  "id": 29,
  "name": "Corkery - Wunsch",
  "slug": "corkery-wunsch",
  "description": "Robust secondary moratorium",
  "industryId": 33,
  "size": "1-10",
  "foundedYear": 2005,
  "websiteUrl": "https://www.corkery-wunsch.com",
  "logoUrl": "https://picsum.photos/seed/org-29/200/200",
  "createdAt": "2026-01-31T10:22:07.909Z",
  "updatedAt": "2026-05-04T03:18:28.728Z"
}
Draftbit