Stark - Nicolas
- Size
- 15754 employees
- Founded
- 1969
- Website
- https://www.stark-nicolas.com
- Location
- ET
Seamless explicit knowledge base
companies / #80
Seamless explicit knowledge base
curl -sS \
"https://example-data.com/api/v1/companies/80" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/80"
);
const companie = await res.json();import type { Companie } from "https://example-data.com/types/companies.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/companies/80"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/80"
)
companie = res.json() {
"id": 80,
"name": "Stark - Nicolas",
"slug": "stark-nicolas-80",
"description": "Seamless explicit knowledge base",
"industryId": 6,
"headquartersCountryAlpha2": "ET",
"employeeCount": 15754,
"foundedYear": 1969,
"websiteUrl": "https://www.stark-nicolas.com",
"logoUrl": "https://picsum.photos/seed/company-80/200/200",
"isHiring": false,
"createdAt": "2024-08-03T14:10:59.232Z"
}