example-data.com

orgs / #12

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/orgs/12"
)
org = res.json()
{
  "id": 12,
  "name": "Swift - Lakin",
  "slug": "swift-lakin",
  "description": "Exclusive actuating architecture",
  "industryId": 39,
  "size": "1-10",
  "foundedYear": 2002,
  "websiteUrl": "https://www.swift-lakin.com",
  "logoUrl": "https://picsum.photos/seed/org-12/200/200",
  "createdAt": "2024-02-10T00:25:10.231Z",
  "updatedAt": "2025-12-29T03:40:30.337Z"
}
Draftbit