example-data.com

orgs / #6

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/orgs/6"
)
org = res.json()
{
  "id": 6,
  "name": "Herzog - Lowe",
  "slug": "herzog-lowe",
  "description": "Future-proofed mission-critical functionalities",
  "industryId": 30,
  "size": "11-50",
  "foundedYear": 2006,
  "websiteUrl": "https://www.herzog-lowe.com",
  "logoUrl": "https://picsum.photos/seed/org-6/200/200",
  "createdAt": "2023-10-26T21:40:49.707Z",
  "updatedAt": "2025-02-02T17:37:49.171Z"
}
Draftbit