example-data.com

orgs / #18

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/orgs/18"
)
org = res.json()
{
  "id": 18,
  "name": "Ratke - Kub",
  "slug": "ratke-kub",
  "description": "Triple-buffered scalable success",
  "industryId": 23,
  "size": "51-200",
  "foundedYear": 2005,
  "websiteUrl": "https://www.ratke-kub.com",
  "logoUrl": "https://picsum.photos/seed/org-18/200/200",
  "createdAt": "2024-01-10T11:43:26.294Z",
  "updatedAt": "2026-05-05T18:28:40.128Z"
}
Draftbit