example-data.com

orgs / #17

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/orgs/17"
)
org = res.json()
{
  "id": 17,
  "name": "Flatley Group",
  "slug": "flatley-group",
  "description": "Extended static algorithm",
  "industryId": 26,
  "size": "51-200",
  "foundedYear": 2005,
  "websiteUrl": "https://www.flatley-group.com",
  "logoUrl": "https://picsum.photos/seed/org-17/200/200",
  "createdAt": "2024-05-06T16:06:52.470Z",
  "updatedAt": "2025-10-03T09:31:20.251Z"
}
Draftbit