example-data.com

orgs / #11

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/orgs/11"
)
org = res.json()
{
  "id": 11,
  "name": "Krajcik Group",
  "slug": "krajcik-group",
  "description": "Front-line analyzing data-warehouse",
  "industryId": 13,
  "size": "1-10",
  "foundedYear": 2004,
  "websiteUrl": "https://www.krajcik-group.com",
  "logoUrl": "https://picsum.photos/seed/org-11/200/200",
  "createdAt": "2024-03-31T17:54:41.275Z",
  "updatedAt": "2024-12-05T04:20:02.311Z"
}
Draftbit