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