orgs
orgs
Browse 30 orgs records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.
-
Lakin Group
-
Cremin - Kautzer
-
Mayert LLC
-
Funk, Renner and Grady
-
McGlynn, Bogisich and Toy
-
Herzog - Lowe
-
Schimmel, Jones and Lind
-
Brekke - Muller
-
Predovic, Prosacco and O'Hara
-
Kerluke, Wisozk and Ratke
-
Krajcik Group
-
Swift - Lakin
-
Kovacek and Sons
-
Reichel - Kling
-
Lowe and Sons
-
Pouros, Nikolaus and Donnelly
-
Flatley Group
-
Ratke - Kub
-
Johns, Reinger and Toy
-
Ziemann LLC
-
Toy and Sons
-
Dach - Russel
-
Prohaska - Wiza
-
Prohaska Inc
-
Lakin Group
Devolved 24 hour adapter
-
Cremin - Kautzer
Open-architected mobile process improvement
-
Mayert LLC
Profound value-added throughput
-
Funk, Renner and Grady
Customer-focused systematic flexibility
-
McGlynn, Bogisich and Toy
Triple-buffered high-level access
-
Herzog - Lowe
Future-proofed mission-critical functionalities
-
Schimmel, Jones and Lind
Upgradable logistical contingency
-
Brekke - Muller
Virtual heuristic algorithm
-
Predovic, Prosacco and O'Hara
Profound full-range access
-
Kerluke, Wisozk and Ratke
Visionary asymmetric application
-
Krajcik Group
Front-line analyzing data-warehouse
-
Swift - Lakin
Exclusive actuating architecture
-
Kovacek and Sons
Ergonomic analyzing benchmark
-
Reichel - Kling
Business-focused encompassing internet solution
-
Lowe and Sons
Immersive next generation leverage
-
Pouros, Nikolaus and Donnelly
Implemented human-resource core
-
Flatley Group
Extended static algorithm
-
Ratke - Kub
Triple-buffered scalable success
-
Johns, Reinger and Toy
Versatile client-server budgetary management
-
Ziemann LLC
Sharable fault-tolerant instruction set
-
Toy and Sons
Persistent context-sensitive focus group
-
Dach - Russel
Fundamental sustainable concept
-
Prohaska - Wiza
Compatible high-level complexity
-
Prohaska Inc
Future-proofed bifurcated knowledge user
Lakin Group
- Size
- 11-50
- Founded
- 2023
- Website
- https://www.lakin-group.com
Devolved 24 hour adapter
Cremin - Kautzer
- Size
- 11-50
- Founded
- 2021
- Website
- https://www.cremin-kautzer.com
Open-architected mobile process improvement
Mayert LLC
- Size
- 51-200
- Founded
- 2006
- Website
- https://www.mayert-llc.com
Profound value-added throughput
Funk, Renner and Grady
- Size
- 11-50
- Founded
- 2011
Customer-focused systematic flexibility
McGlynn, Bogisich and Toy
- Size
- 1-10
- Founded
- 2010
Triple-buffered high-level access
Herzog - Lowe
- Size
- 11-50
- Founded
- 2006
- Website
- https://www.herzog-lowe.com
Future-proofed mission-critical functionalities
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/orgs?limit=25"const res = await fetch(
"https://example-data.com/api/v1/orgs?limit=25"
);
const { data, meta } = await res.json();import type { Org, ListEnvelope } from "https://example-data.com/types/orgs.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/orgs?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Org>;import requests
res = requests.get(
"https://example-data.com/api/v1/orgs",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 1,
"name": "Lakin Group",
"slug": "lakin-group",
"description": "Devolved 24 hour adapter",
"industryId": 26,
"size": "11-50",
"foundedYear": 2023,
"websiteUrl": "https://www.lakin-group.com",
"logoUrl": "https://picsum.photos/seed/org-1/200/200",
"createdAt": "2023-05-25T21:33:39.272Z",
"updatedAt": "2024-03-30T21:36:39.738Z"
},
{
"id": 2,
"name": "Cremin - Kautzer",
"slug": "cremin-kautzer",
"description": "Open-architected mobile process improvement",
"industryId": 9,
"size": "11-50",
"foundedYear": 2021,
"websiteUrl": "https://www.cremin-kautzer.com",
"logoUrl": "https://picsum.photos/seed/org-2/200/200",
"createdAt": "2026-02-21T10:57:45.327Z",
"updatedAt": "2026-02-23T11:54:26.403Z"
},
{
"id": 3,
"name": "Mayert LLC",
"slug": "mayert-llc",
"description": "Profound value-added throughput",
"industryId": 4,
"size": "51-200",
"foundedYear": 2006,
"websiteUrl": "https://www.mayert-llc.com",
"logoUrl": "https://picsum.photos/seed/org-3/200/200",
"createdAt": "2025-07-25T18:31:07.621Z",
"updatedAt": "2025-08-17T06:55:15.788Z"
}
],
"meta": {
"page": 1,
"limit": 25,
"total": 30,
"totalPages": 2
},
"links": {
"self": "/api/v1/orgs?page=1",
"first": "/api/v1/orgs?page=1",
"last": "/api/v1/orgs?page=2",
"next": "/api/v1/orgs?page=2",
"prev": null
}
}