example-data.com

orgs / #15

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/orgs/15"
)
org = res.json()
{
  "id": 15,
  "name": "Lowe and Sons",
  "slug": "lowe-and-sons",
  "description": "Immersive next generation leverage",
  "industryId": 12,
  "size": "201-1000",
  "foundedYear": 2014,
  "websiteUrl": "https://www.lowe-and-sons.com",
  "logoUrl": "https://picsum.photos/seed/org-15/200/200",
  "createdAt": "2023-06-12T12:48:44.937Z",
  "updatedAt": "2025-04-19T12:01:48.206Z"
}
Draftbit