example-data.com

companies

companies

Page 3 of 4.

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": 49,
      "name": "Feest - Kessler",
      "slug": "feest-kessler-49",
      "description": "Open-architected empowering process improvement",
      "industryId": 13,
      "headquartersCountryAlpha2": "NG",
      "employeeCount": 3495,
      "foundedYear": 1981,
      "websiteUrl": "https://www.feest-kessler.com",
      "logoUrl": "https://picsum.photos/seed/company-49/200/200",
      "isHiring": true,
      "createdAt": "2014-07-18T08:14:35.071Z"
    },
    {
      "id": 50,
      "name": "Simonis and Sons",
      "slug": "simonis-and-sons-50",
      "description": "Total needs-based core",
      "industryId": 8,
      "headquartersCountryAlpha2": "MY",
      "employeeCount": 44089,
      "foundedYear": 1998,
      "websiteUrl": "https://www.simonis-and-sons.com",
      "logoUrl": "https://picsum.photos/seed/company-50/200/200",
      "isHiring": true,
      "createdAt": "2011-11-14T02:31:23.086Z"
    },
    {
      "id": 51,
      "name": "Jenkins Inc",
      "slug": "jenkins-inc-51",
      "description": "Devolved logistical matrix",
      "industryId": 30,
      "headquartersCountryAlpha2": "GR",
      "employeeCount": 30393,
      "foundedYear": 1972,
      "websiteUrl": "https://www.jenkins-inc.com",
      "logoUrl": "https://picsum.photos/seed/company-51/200/200",
      "isHiring": true,
      "createdAt": "2019-02-02T04:41:39.110Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 80,
    "totalPages": 4
  },
  "links": {
    "self": "/api/v1/companies?page=3",
    "next": "/api/v1/companies?page=4",
    "prev": "/api/v1/companies?page=2"
  }
}
Draftbit