companies
companies
Browse 80 companies records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.
-
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
-
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
Schroeder Inc
- Size
- 48076 employees
- Founded
- 2020
- Website
- https://www.schroeder-inc.com
- 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
- Website
- https://www.mante-carter.com
- Location
- AR
Open-architected immersive neural-net
Zulauf LLC
- Size
- 30 employees
- Founded
- 2016
- Website
- https://www.zulauf-llc.com
- Location
- PL
Profit-focused 24 hour intranet
Wolff - O'Connell
- Size
- 46927 employees
- Founded
- 1948
- Website
- https://www.wolff-o-connell.com
- 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.
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": 1,
"name": "Schroeder Inc",
"slug": "schroeder-inc-1",
"description": "Public-key analyzing function",
"industryId": 5,
"headquartersCountryAlpha2": "FI",
"employeeCount": 48076,
"foundedYear": 2020,
"websiteUrl": "https://www.schroeder-inc.com",
"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://www.corkery-wolf-and-franey.com",
"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://www.mante-carter.com",
"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
}
}