example-data.com

orgs / #14

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/orgs/14"
)
org = res.json()
{
  "id": 14,
  "name": "Reichel - Kling",
  "slug": "reichel-kling",
  "description": "Business-focused encompassing internet solution",
  "industryId": 26,
  "size": "201-1000",
  "foundedYear": 1998,
  "websiteUrl": "https://www.reichel-kling.com",
  "logoUrl": "https://picsum.photos/seed/org-14/200/200",
  "createdAt": "2023-10-17T19:07:24.569Z",
  "updatedAt": "2025-07-28T22:15:53.912Z"
}
Draftbit