Sipes Group
- Size
- 6902 employees
- Founded
- 2002
- Location
- TR
Synchronised system-worthy open architecture
Overview
companies / #75
Synchronised system-worthy open architecture
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/75" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/75" ); const company = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/companies.d.ts https://example-data.com/types/companies.d.ts
import type { Company } from "./types/companies";
const res = await fetch(
"https://example-data.com/api/v1/companies/75"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/75"
)
companie = res.json() Response
{
"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://example.com/companies/sipes-group",
"logoUrl": "https://picsum.photos/seed/company-75/200/200",
"isHiring": false,
"createdAt": "2016-10-14T23:24:19.390Z"
}