Funk, Renner and Grady
- Size
- 11-50
- Founded
- 2011
Customer-focused systematic flexibility
Overview
orgs / #4
Customer-focused systematic flexibility
Request
curl example
curl -sS \ "https://example-data.com/api/v1/orgs/4" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/orgs/4" ); 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/4"
);
const org = (await res.json()) as Org; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/orgs/4"
)
org = res.json() Response
{
"id": 4,
"name": "Funk, Renner and Grady",
"slug": "funk-renner-and-grady",
"description": "Customer-focused systematic flexibility",
"industryId": 9,
"size": "11-50",
"foundedYear": 2011,
"websiteUrl": "https://example.com/orgs/funk-renner-and-grady",
"logoUrl": "https://picsum.photos/seed/org-4/200/200",
"createdAt": "2025-09-21T12:53:39.748Z",
"updatedAt": "2026-05-09T00:47:11.895Z"
}