Goldner and Sons
- Size
- 37533 employees
- Founded
- 1974
- Location
- NL
Intuitive 24 hour generative AI
Overview
companies / #37
Intuitive 24 hour generative AI
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/37" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/37" ); const company = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/companies.d.ts https://example-data.com/types/companies.d.ts
import type { Company } from "./types/companies";
const res = await fetch(
"https://example-data.com/api/v1/companies/37"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/37"
)
companie = res.json() Response
{
"id": 37,
"name": "Goldner and Sons",
"slug": "goldner-and-sons-37",
"description": "Intuitive 24 hour generative AI",
"industryId": 16,
"headquartersCountryAlpha2": "NL",
"employeeCount": 37533,
"foundedYear": 1974,
"websiteUrl": "https://example.com/companies/goldner-and-sons",
"logoUrl": "https://picsum.photos/seed/company-37/200/200",
"isHiring": true,
"createdAt": "2016-09-13T16:38:59.826Z"
}