example-data.com
Menu
Browse docs and collections

orgs

orgs

Browse 30 orgs records. Explore sample records and fetch JSON over a free REST API for prototypes, tests, and learning.

Overview

Cards

Compact

Detailed

McGlynn, Bogisich and Toy

McGlynn, Bogisich and Toy

Size
1-10
Founded
2010

Triple-buffered high-level access

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
  }
}

View full response →