Schroeder Inc
- Size
- 48076 employees
- Founded
- 2020
- Website
- https://www.schroeder-inc.com
- Location
- FI
Public-key analyzing function
companies / #1
Public-key analyzing function
curl -sS \
"https://example-data.com/api/v1/companies/1" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/companies/1"
);
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/1"
);
const companie = (await res.json()) as Companie;import requests
res = requests.get(
"https://example-data.com/api/v1/companies/1"
)
companie = res.json() {
"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"
}