companies
companies
Page 4 of 4.
Overview
-
Kuphal LLC
Enhanced attitude-oriented middleware
-
Kozey Group
Universal logistical neural-net
-
Sipes Group
Synchronised system-worthy open architecture
-
Hettinger LLC
Enhanced encompassing synergy
-
Prohaska - Kuhn
Versatile neutral software
-
Klocko - Gutmann
Networked global adapter
-
Waelchi - O'Connell
Intuitive tangible open architecture
-
Stark - Nicolas
Seamless explicit knowledge base
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/companies?limit=25"
);
const { data, meta } = 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, ListEnvelope } from "./types/companies";
const res = await fetch(
"https://example-data.com/api/v1/companies?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Company>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 73,
"name": "Kuphal LLC",
"slug": "kuphal-llc-73",
"description": "Enhanced attitude-oriented middleware",
"industryId": 1,
"headquartersCountryAlpha2": "AR",
"employeeCount": 47296,
"foundedYear": 2004,
"websiteUrl": null,
"logoUrl": "https://picsum.photos/seed/company-73/200/200",
"isHiring": false,
"createdAt": "2012-09-10T10:29:12.542Z"
},
{
"id": 74,
"name": "Kozey Group",
"slug": "kozey-group-74",
"description": "Universal logistical neural-net",
"industryId": null,
"headquartersCountryAlpha2": "MA",
"employeeCount": 23593,
"foundedYear": 2010,
"websiteUrl": "https://example.com/companies/kozey-group",
"logoUrl": "https://picsum.photos/seed/company-74/200/200",
"isHiring": false,
"createdAt": "2019-05-08T13:33:13.605Z"
},
{
"id": 75,
"name": "Sipes Group",
"slug": "sipes-group-75",
"description": "Synchronised system-worthy open architecture",
"industryId": 40,
"headquartersCountryAlpha2": "TR",
"employeeCount": 6902,
"foundedYear": 2002,
"websiteUrl": "https://example.com/companies/sipes-group",
"logoUrl": "https://picsum.photos/seed/company-75/200/200",
"isHiring": false,
"createdAt": "2016-10-14T23:24:19.390Z"
}
],
"meta": {
"page": 4,
"limit": 24,
"total": 80,
"totalPages": 4
},
"links": {
"self": "/api/v1/companies?page=4&limit=24",
"first": "/api/v1/companies?page=1&limit=24",
"last": "/api/v1/companies?page=4&limit=24",
"next": null,
"prev": "/api/v1/companies?page=3&limit=24"
}
}