example-data.com

orgs / #30

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/orgs/30"
)
org = res.json()
{
  "id": 30,
  "name": "Gleason - Kertzmann",
  "slug": "gleason-kertzmann",
  "description": "Future-proofed motivating toolset",
  "industryId": 29,
  "size": "1000+",
  "foundedYear": 2023,
  "websiteUrl": "https://www.gleason-kertzmann.com",
  "logoUrl": "https://picsum.photos/seed/org-30/200/200",
  "createdAt": "2026-05-03T07:13:45.431Z",
  "updatedAt": "2026-05-19T17:34:15.514Z"
}
Draftbit