Reichel - Kling
- Size
- 201-1000
- Founded
- 1998
Business-focused encompassing internet solution
Overview
orgs / #14
Business-focused encompassing internet solution
Request
curl example
curl -sS \ "https://example-data.com/api/v1/orgs/14" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/orgs/14" ); 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/14"
);
const org = (await res.json()) as Org; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/orgs/14"
)
org = res.json() Response
{
"id": 14,
"name": "Reichel - Kling",
"slug": "reichel-kling",
"description": "Business-focused encompassing internet solution",
"industryId": 26,
"size": "201-1000",
"foundedYear": 1998,
"websiteUrl": "https://example.com/orgs/reichel-kling",
"logoUrl": "https://picsum.photos/seed/org-14/200/200",
"createdAt": "2023-10-17T19:07:24.569Z",
"updatedAt": "2025-07-28T22:15:53.912Z"
}