example-data.com

companies

companies

Page 4 of 4.

Kuphal LLC

Kuphal LLC

Size
47296 employees
Founded
2004
Location
AR

Enhanced attitude-oriented middleware

Showing first 6 of 8 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": 73,
      "name": "Kuphal LLC",
      "slug": "kuphal-llc-73",
      "description": "Enhanced attitude-oriented middleware",
      "industryId": 1,
      "headquartersCountryAlpha2": "AR",
      "employeeCount": 47296,
      "foundedYear": 2004,
      "websiteUrl": null,
      "logoUrl": "https://picsum.photos/seed/company-73/200/200",
      "isHiring": false,
      "createdAt": "2012-09-10T10:29:12.542Z"
    },
    {
      "id": 74,
      "name": "Kozey Group",
      "slug": "kozey-group-74",
      "description": "Universal logistical neural-net",
      "industryId": null,
      "headquartersCountryAlpha2": "MA",
      "employeeCount": 23593,
      "foundedYear": 2010,
      "websiteUrl": "https://www.kozey-group.com",
      "logoUrl": "https://picsum.photos/seed/company-74/200/200",
      "isHiring": false,
      "createdAt": "2019-05-08T13:33:13.605Z"
    },
    {
      "id": 75,
      "name": "Sipes Group",
      "slug": "sipes-group-75",
      "description": "Synchronised system-worthy open architecture",
      "industryId": 40,
      "headquartersCountryAlpha2": "TR",
      "employeeCount": 6902,
      "foundedYear": 2002,
      "websiteUrl": "https://www.sipes-group.com",
      "logoUrl": "https://picsum.photos/seed/company-75/200/200",
      "isHiring": false,
      "createdAt": "2016-10-14T23:24:19.390Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 80,
    "totalPages": 4
  },
  "links": {
    "self": "/api/v1/companies?page=4",
    "next": null,
    "prev": "/api/v1/companies?page=3"
  }
}
Draftbit