companies
companies
Browse 80 companies records. Explore sample records and fetch JSON over a free REST API for prototypes, tests, and learning.
Overview
Cards
-
Schroeder Inc
Public-key analyzing function
-
Corkery, Wolf and Franey
Persistent well-modulated workforce
-
Mante - Carter
Open-architected immersive neural-net
-
Zulauf LLC
Profit-focused 24 hour intranet
-
Wolff - O'Connell
Robust disintermediate toolset
-
Kunde and Sons
Reverse-engineered discrete intranet
-
Bins, Robel and Rogahn
Managed client-server emulation
-
Strosin - Bergnaum
Fundamental scalable capacity
-
Armstrong, Howe and Wiegand
Visionary modular analyzer
-
Schroeder, Pacocha and Mayert
Optional disintermediate alliance
-
Moore and Sons
Programmable optimal leverage
-
Rath, Ledner and Mitchell
Phased mission-critical monitoring
-
Littel, Mayert and Fritsch
Quality-focused AI-powered concept
-
Yundt, Gerlach and Emard
Streamlined optimal installation
-
Metz, Adams and Friesen
Visionary cloud-native internet solution
-
Powlowski, Senger and Wisoky
Progressive actuating knowledge user
-
Mitchell, Nitzsche and Hammes
Progressive motivating core
-
Schmeler - Muller
Polarised system-worthy policy
-
Donnelly - Kautzer
Fully-configurable asymmetric budgetary management
-
Harvey Group
Optional regional focus group
-
Hand LLC
Optional intangible matrices
-
Turcotte, Nikolaus and Ruecker
Reverse-engineered high-level intranet
-
Kreiger - Pagac
Ergonomic exuding moratorium
-
Upton - Tremblay
Implemented immersive throughput
Compact
-
Schroeder Inc
-
Corkery, Wolf and Franey
-
Mante - Carter
-
Zulauf LLC
-
Wolff - O'Connell
-
Kunde and Sons
-
Bins, Robel and Rogahn
-
Strosin - Bergnaum
-
Armstrong, Howe and Wiegand
-
Schroeder, Pacocha and Mayert
-
Moore and Sons
-
Rath, Ledner and Mitchell
-
Littel, Mayert and Fritsch
-
Yundt, Gerlach and Emard
-
Metz, Adams and Friesen
-
Powlowski, Senger and Wisoky
-
Mitchell, Nitzsche and Hammes
-
Schmeler - Muller
-
Donnelly - Kautzer
-
Harvey Group
-
Hand LLC
-
Turcotte, Nikolaus and Ruecker
-
Kreiger - Pagac
-
Upton - Tremblay
Detailed
Schroeder Inc
- Size
- 48076 employees
- Founded
- 2020
- Location
- FI
Public-key analyzing function
Corkery, Wolf and Franey
- Size
- 15624 employees
- Founded
- 2006
- Location
- AE
Persistent well-modulated workforce
Mante - Carter
- Size
- 37006 employees
- Founded
- 1983
- Location
- AR
Open-architected immersive neural-net
Zulauf LLC
- Size
- 30 employees
- Founded
- 2016
- Location
- PL
Profit-focused 24 hour intranet
Wolff - O'Connell
- Size
- 46927 employees
- Founded
- 1948
- Location
- SA
Robust disintermediate toolset
Kunde and Sons
- Size
- 18423 employees
- Founded
- 1969
- Location
- KE
Reverse-engineered discrete intranet
Showing first 6 of 24 on this page.
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": 1,
"name": "Schroeder Inc",
"slug": "schroeder-inc-1",
"description": "Public-key analyzing function",
"industryId": 5,
"headquartersCountryAlpha2": "FI",
"employeeCount": 48076,
"foundedYear": 2020,
"websiteUrl": "https://example.com/companies/schroeder-inc",
"logoUrl": "https://picsum.photos/seed/company-1/200/200",
"isHiring": true,
"createdAt": "2015-04-14T18:56:49.601Z"
},
{
"id": 2,
"name": "Corkery, Wolf and Franey",
"slug": "corkery-wolf-and-franey-2",
"description": "Persistent well-modulated workforce",
"industryId": 5,
"headquartersCountryAlpha2": "AE",
"employeeCount": 15624,
"foundedYear": 2006,
"websiteUrl": "https://example.com/companies/corkery-wolf-and-franey",
"logoUrl": "https://picsum.photos/seed/company-2/200/200",
"isHiring": true,
"createdAt": "2012-01-14T08:45:37.052Z"
},
{
"id": 3,
"name": "Mante - Carter",
"slug": "mante-carter-3",
"description": "Open-architected immersive neural-net",
"industryId": 12,
"headquartersCountryAlpha2": "AR",
"employeeCount": 37006,
"foundedYear": 1983,
"websiteUrl": "https://example.com/companies/mante-carter",
"logoUrl": "https://picsum.photos/seed/company-3/200/200",
"isHiring": false,
"createdAt": "2025-02-09T15:45:11.161Z"
}
],
"meta": {
"page": 1,
"limit": 25,
"total": 80,
"totalPages": 4
},
"links": {
"self": "/api/v1/companies?page=1",
"first": "/api/v1/companies?page=1",
"last": "/api/v1/companies?page=4",
"next": "/api/v1/companies?page=2",
"prev": null
}
}