Murazik Group
- Size
- 33332 employees
- Founded
- 1982
- Location
- PH
Reverse-engineered needs-based moderator
Overview
companies / #39
Reverse-engineered needs-based moderator
Request
curl example
curl -sS \ "https://example-data.com/api/v1/companies/39" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/companies/39" ); 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/39"
);
const company = (await res.json()) as Company; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/companies/39"
)
companie = res.json() Response
{
"id": 39,
"name": "Murazik Group",
"slug": "murazik-group-39",
"description": "Reverse-engineered needs-based moderator",
"industryId": 3,
"headquartersCountryAlpha2": "PH",
"employeeCount": 33332,
"foundedYear": 1982,
"websiteUrl": "https://example.com/companies/murazik-group",
"logoUrl": "https://picsum.photos/seed/company-39/200/200",
"isHiring": true,
"createdAt": "2026-04-21T12:28:20.290Z"
}