Maggio and Sons
- Size
- 1-10
- Founded
- 2000
Optimized coherent paradigm
Overview
orgs / #25
Optimized coherent paradigm
Request
curl example
curl -sS \ "https://example-data.com/api/v1/orgs/25" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/orgs/25" ); const org = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/orgs.d.ts https://example-data.com/types/orgs.d.ts
import type { Org } from "./types/orgs";
const res = await fetch(
"https://example-data.com/api/v1/orgs/25"
);
const org = (await res.json()) as Org; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/orgs/25"
)
org = res.json() Response
{
"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"
}