orgs
orgs
Browse 30 orgs records. Explore sample records and fetch JSON over a free REST API for prototypes, tests, and learning.
Overview
Cards
-
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
Compact
-
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
Detailed
Lakin Group
- Size
- 11-50
- Founded
- 2023
Devolved 24 hour adapter
Cremin - Kautzer
- Size
- 11-50
- Founded
- 2021
Open-architected mobile process improvement
Mayert LLC
- Size
- 51-200
- Founded
- 2006
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
Future-proofed mission-critical functionalities
Showing first 6 of 24 on this page.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/orgs?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/orgs?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/orgs.d.ts https://example-data.com/types/orgs.d.ts
import type { Org, ListEnvelope } from "./types/orgs";
const res = await fetch(
"https://example-data.com/api/v1/orgs?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Org>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/orgs",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 1,
"name": "Lakin Group",
"slug": "lakin-group",
"description": "Devolved 24 hour adapter",
"industryId": 26,
"size": "11-50",
"foundedYear": 2023,
"websiteUrl": "https://example.com/orgs/lakin-group",
"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://example.com/orgs/cremin-kautzer",
"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://example.com/orgs/mayert-llc",
"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
}
}