Johns, Reinger and Toy
- Size
- 11-50
- Founded
- 2021
Versatile client-server budgetary management
Overview
orgs / #19
Versatile client-server budgetary management
Request
curl example
curl -sS \ "https://example-data.com/api/v1/orgs/19" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/orgs/19" ); 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/19"
);
const org = (await res.json()) as Org; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/orgs/19"
)
org = res.json() Response
{
"id": 19,
"name": "Johns, Reinger and Toy",
"slug": "johns-reinger-and-toy",
"description": "Versatile client-server budgetary management",
"industryId": 14,
"size": "11-50",
"foundedYear": 2021,
"websiteUrl": null,
"logoUrl": "https://picsum.photos/seed/org-19/200/200",
"createdAt": "2024-09-17T15:56:05.386Z",
"updatedAt": "2025-03-07T07:24:25.370Z"
}