companies
companies
Page 4 of 4.
-
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
Kuphal LLC
- Size
- 47296 employees
- Founded
- 2004
- Location
- AR
Enhanced attitude-oriented middleware
Kozey Group
- Size
- 23593 employees
- Founded
- 2010
- Website
- https://www.kozey-group.com
- Location
- MA
Universal logistical neural-net
Sipes Group
- Size
- 6902 employees
- Founded
- 2002
- Website
- https://www.sipes-group.com
- Location
- TR
Synchronised system-worthy open architecture
Hettinger LLC
- Size
- 42712 employees
- Founded
- 2021
- Website
- https://www.hettinger-llc.com
- Location
- MA
Enhanced encompassing synergy
Prohaska - Kuhn
- Size
- 4369 employees
- Founded
- 1946
- Website
- https://www.prohaska-kuhn.com
- Location
- DK
Versatile neutral software
Klocko - Gutmann
- Size
- 46687 employees
- Founded
- 1976
- Website
- https://www.klocko-gutmann.com
- Location
- FR
Networked global adapter
Showing first 6 of 8 on this page.
curl -sS \
"https://example-data.com/api/v1/companies?limit=25"const res = await fetch(
"https://example-data.com/api/v1/companies?limit=25"
);
const { data, meta } = await res.json();import type { Companie, ListEnvelope } from "https://example-data.com/types/companies.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/companies?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Companie>;import requests
res = requests.get(
"https://example-data.com/api/v1/companies",
params={"limit": 25},
)
data = res.json() {
"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://www.kozey-group.com",
"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://www.sipes-group.com",
"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",
"next": null,
"prev": "/api/v1/companies?page=3"
}
}