companies
companies
Page 2 of 4.
Overview
-
Ondricka, Bosco and Donnelly
Horizontal high-level pricing structure
-
Windler Group
Integrated eco-centric analyzer
-
Crona - Schumm
Quality-focused AI-powered function
-
Ritchie Group
Adaptive intangible collaboration
-
Hessel and Sons
Optimized logistical instruction set
-
Schumm - Stoltenberg
Managed user-facing product
-
Osinski Inc
Immersive eco-centric open architecture
-
Lebsack - Miller
Profit-focused intangible time-frame
-
Wisozk Inc
Customer-focused maximized task-force
-
Marks - Bednar
AI-driven next generation projection
-
Kemmer, Davis and Casper
Immersive systemic toolset
-
Watsica, Wiza and Braun
Phased modular knowledge base
-
Goldner and Sons
Intuitive 24 hour generative AI
-
Jakubowski - Crona
Configurable optimizing orchestration
-
Murazik Group
Reverse-engineered needs-based moderator
-
Hickle - Casper
Virtual client-driven productivity
-
Grimes - Robel
User-centric logistical productivity
-
Bechtelar and Sons
Implemented directional project
-
Gulgowski, Hammes and Jacobi
Quality-focused full-range open architecture
-
Fadel Inc
Polarised executive process improvement
-
Barrows, Stanton and Kling
Extended hybrid strategy
-
Marks, Krajcik and Casper
Secured well-modulated infrastructure
-
Ziemann and Sons
Robust asymmetric internet solution
-
Muller, Bernhard and Aufderhar
Phased context-sensitive system engine
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": 25,
"name": "Ondricka, Bosco and Donnelly",
"slug": "ondricka-bosco-and-donnelly-25",
"description": "Horizontal high-level pricing structure",
"industryId": 8,
"headquartersCountryAlpha2": "CA",
"employeeCount": 46144,
"foundedYear": 1999,
"websiteUrl": "https://example.com/companies/ondricka-bosco-and-donnelly",
"logoUrl": "https://picsum.photos/seed/company-25/200/200",
"isHiring": false,
"createdAt": "2024-08-19T01:58:36.072Z"
},
{
"id": 26,
"name": "Windler Group",
"slug": "windler-group-26",
"description": "Integrated eco-centric analyzer",
"industryId": 14,
"headquartersCountryAlpha2": "MA",
"employeeCount": 32003,
"foundedYear": 2022,
"websiteUrl": null,
"logoUrl": "https://picsum.photos/seed/company-26/200/200",
"isHiring": false,
"createdAt": "2016-08-08T09:47:57.075Z"
},
{
"id": 27,
"name": "Crona - Schumm",
"slug": "crona-schumm-27",
"description": "Quality-focused AI-powered function",
"industryId": 18,
"headquartersCountryAlpha2": "PL",
"employeeCount": 15707,
"foundedYear": 2010,
"websiteUrl": "https://example.com/companies/crona-schumm",
"logoUrl": "https://picsum.photos/seed/company-27/200/200",
"isHiring": false,
"createdAt": "2015-04-27T12:43:48.513Z"
}
],
"meta": {
"page": 2,
"limit": 24,
"total": 80,
"totalPages": 4
},
"links": {
"self": "/api/v1/companies?page=2&limit=24",
"first": "/api/v1/companies?page=1&limit=24",
"last": "/api/v1/companies?page=4&limit=24",
"next": "/api/v1/companies?page=3&limit=24",
"prev": "/api/v1/companies?page=1&limit=24"
}
}