Thompson Group
- Size
- 11-50
- Founded
- 1994
Sustainable discrete portal
Overview
orgs / #28
Sustainable discrete portal
Request
curl example
curl -sS \ "https://example-data.com/api/v1/orgs/28" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/orgs/28" ); 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/28"
);
const org = (await res.json()) as Org; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/orgs/28"
)
org = res.json() Response
{
"id": 28,
"name": "Thompson Group",
"slug": "thompson-group",
"description": "Sustainable discrete portal",
"industryId": null,
"size": "11-50",
"foundedYear": 1994,
"websiteUrl": "https://example.com/orgs/thompson-group",
"logoUrl": "https://picsum.photos/seed/org-28/200/200",
"createdAt": "2024-06-07T07:21:08.498Z",
"updatedAt": "2025-03-12T00:16:23.362Z"
}