example-data.com

orgs / #10

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/orgs/10"
)
org = res.json()
{
  "id": 10,
  "name": "Kerluke, Wisozk and Ratke",
  "slug": "kerluke-wisozk-and-ratke",
  "description": "Visionary asymmetric application",
  "industryId": 21,
  "size": "51-200",
  "foundedYear": 2010,
  "websiteUrl": "https://www.kerluke-wisozk-and-ratke.com",
  "logoUrl": "https://picsum.photos/seed/org-10/200/200",
  "createdAt": "2026-01-26T08:29:36.780Z",
  "updatedAt": "2026-04-19T23:21:25.981Z"
}
Draftbit