example-data.com

orgs / #1

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/orgs/1"
)
org = res.json()
{
  "id": 1,
  "name": "Lakin Group",
  "slug": "lakin-group",
  "description": "Devolved 24 hour adapter",
  "industryId": 26,
  "size": "11-50",
  "foundedYear": 2023,
  "websiteUrl": "https://www.lakin-group.com",
  "logoUrl": "https://picsum.photos/seed/org-1/200/200",
  "createdAt": "2023-05-25T21:33:39.272Z",
  "updatedAt": "2024-03-30T21:36:39.738Z"
}
Draftbit