example-data.com

orgs / #21

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/orgs/21"
)
org = res.json()
{
  "id": 21,
  "name": "Toy and Sons",
  "slug": "toy-and-sons",
  "description": "Persistent context-sensitive focus group",
  "industryId": 6,
  "size": "201-1000",
  "foundedYear": 2023,
  "websiteUrl": "https://www.toy-and-sons.com",
  "logoUrl": "https://picsum.photos/seed/org-21/200/200",
  "createdAt": "2025-04-12T20:11:28.960Z",
  "updatedAt": "2025-08-08T13:21:56.409Z"
}
Draftbit