Johns, Reinger and Toy
- Size
- 11-50
- Founded
- 2021
Versatile client-server budgetary management
orgs / #19
Versatile client-server budgetary management
curl -sS \
"https://example-data.com/api/v1/orgs/19" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/orgs/19"
);
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/19"
);
const org = (await res.json()) as Org;import requests
res = requests.get(
"https://example-data.com/api/v1/orgs/19"
)
org = res.json() {
"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"
}