example-data.com

orgs

orgs

Browse 30 orgs records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

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.

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

View full response →

Draftbit