orgs
orgs
Page 2 of 2.
Maggio and Sons
- Size
- 1-10
- Founded
- 2000
Optimized coherent paradigm
Altenwerth - Corkery
- Size
- 51-200
- Founded
- 1991
Exclusive tertiary synergy
Cormier, Rogahn and Bogisich
- Size
- 11-50
- Founded
- 2024
Expanded fault-tolerant access
Thompson Group
- Size
- 11-50
- Founded
- 1994
- Website
- https://www.thompson-group.com
Sustainable discrete portal
Corkery - Wunsch
- Size
- 1-10
- Founded
- 2005
- Website
- https://www.corkery-wunsch.com
Robust secondary moratorium
Gleason - Kertzmann
- Size
- 1000+
- Founded
- 2023
Future-proofed motivating toolset
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": 25,
"name": "Maggio and Sons",
"slug": "maggio-and-sons",
"description": "Optimized coherent paradigm",
"industryId": 22,
"size": "1-10",
"foundedYear": 2000,
"websiteUrl": null,
"logoUrl": "https://picsum.photos/seed/org-25/200/200",
"createdAt": "2024-01-09T00:25:55.932Z",
"updatedAt": "2024-05-18T11:58:37.174Z"
},
{
"id": 26,
"name": "Altenwerth - Corkery",
"slug": "altenwerth-corkery",
"description": "Exclusive tertiary synergy",
"industryId": 18,
"size": "51-200",
"foundedYear": 1991,
"websiteUrl": null,
"logoUrl": "https://picsum.photos/seed/org-26/200/200",
"createdAt": "2024-12-24T05:51:36.825Z",
"updatedAt": "2025-12-31T04:54:28.737Z"
},
{
"id": 27,
"name": "Cormier, Rogahn and Bogisich",
"slug": "cormier-rogahn-and-bogisich",
"description": "Expanded fault-tolerant access",
"industryId": 8,
"size": "11-50",
"foundedYear": 2024,
"websiteUrl": "https://www.cormier-rogahn-and-bogisich.com",
"logoUrl": "https://picsum.photos/seed/org-27/200/200",
"createdAt": "2026-02-26T10:30:39.166Z",
"updatedAt": "2026-04-20T17:01:29.448Z"
}
],
"meta": {
"page": 2,
"limit": 24,
"total": 30,
"totalPages": 2
},
"links": {
"self": "/api/v1/orgs?page=2",
"next": null,
"prev": "/api/v1/orgs?page=1"
}
}