example-data.com
Menu
Browse docs and collections

orgs

orgs

Page 2 of 2.

Overview

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": 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://example.com/orgs/cormier-rogahn-and-bogisich",
      "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&limit=24",
    "first": "/api/v1/orgs?page=1&limit=24",
    "last": "/api/v1/orgs?page=2&limit=24",
    "next": null,
    "prev": "/api/v1/orgs?page=1&limit=24"
  }
}