example-data.com

orgs / #3

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/orgs/3"
)
org = res.json()
{
  "id": 3,
  "name": "Mayert LLC",
  "slug": "mayert-llc",
  "description": "Profound value-added throughput",
  "industryId": 4,
  "size": "51-200",
  "foundedYear": 2006,
  "websiteUrl": "https://www.mayert-llc.com",
  "logoUrl": "https://picsum.photos/seed/org-3/200/200",
  "createdAt": "2025-07-25T18:31:07.621Z",
  "updatedAt": "2025-08-17T06:55:15.788Z"
}
Draftbit