Maggio and Sons
- Size
- 1-10
- Founded
- 2000
Optimized coherent paradigm
orgs / #25
Optimized coherent paradigm
curl -sS \
"https://example-data.com/api/v1/orgs/25" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orgs/25"
);
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/25"
);
const org = (await res.json()) as Org;import requests
res = requests.get(
"https://example-data.com/api/v1/orgs/25"
)
org = res.json() {
"id": 25,
"name": "Maggio and Sons",
"slug": "maggio-and-sons",
"description": "Optimized coherent paradigm",
"industryId": 22,
"size": "1-10",
"foundedYear": 2000,
"websiteUrl": null,
"logoUrl": "https://picsum.photos/seed/org-25/200/200",
"createdAt": "2024-01-09T00:25:55.932Z",
"updatedAt": "2024-05-18T11:58:37.174Z"
}