example-data.com

companies

companies

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

Kunde and Sons

Kunde and Sons

Size
18423 employees
Founded
1969
Location
KE

Reverse-engineered discrete intranet

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/companies?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/companies?limit=25"
);
const { data, meta } = await res.json();
import type { Companie, ListEnvelope } from "https://example-data.com/types/companies.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/companies?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Companie>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/companies",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 1,
      "name": "Schroeder Inc",
      "slug": "schroeder-inc-1",
      "description": "Public-key analyzing function",
      "industryId": 5,
      "headquartersCountryAlpha2": "FI",
      "employeeCount": 48076,
      "foundedYear": 2020,
      "websiteUrl": "https://www.schroeder-inc.com",
      "logoUrl": "https://picsum.photos/seed/company-1/200/200",
      "isHiring": true,
      "createdAt": "2015-04-14T18:56:49.601Z"
    },
    {
      "id": 2,
      "name": "Corkery, Wolf and Franey",
      "slug": "corkery-wolf-and-franey-2",
      "description": "Persistent well-modulated workforce",
      "industryId": 5,
      "headquartersCountryAlpha2": "AE",
      "employeeCount": 15624,
      "foundedYear": 2006,
      "websiteUrl": "https://www.corkery-wolf-and-franey.com",
      "logoUrl": "https://picsum.photos/seed/company-2/200/200",
      "isHiring": true,
      "createdAt": "2012-01-14T08:45:37.052Z"
    },
    {
      "id": 3,
      "name": "Mante - Carter",
      "slug": "mante-carter-3",
      "description": "Open-architected immersive neural-net",
      "industryId": 12,
      "headquartersCountryAlpha2": "AR",
      "employeeCount": 37006,
      "foundedYear": 1983,
      "websiteUrl": "https://www.mante-carter.com",
      "logoUrl": "https://picsum.photos/seed/company-3/200/200",
      "isHiring": false,
      "createdAt": "2025-02-09T15:45:11.161Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 80,
    "totalPages": 4
  },
  "links": {
    "self": "/api/v1/companies?page=1",
    "first": "/api/v1/companies?page=1",
    "last": "/api/v1/companies?page=4",
    "next": "/api/v1/companies?page=2",
    "prev": null
  }
}

View full response →

Draftbit