Mayert LLC
- Size
- 51-200
- Founded
- 2006
Profound value-added throughput
Overview
orgs / #3
Profound value-added throughput
Request
curl example
curl -sS \ "https://example-data.com/api/v1/orgs/3" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/orgs/3" ); const org = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/orgs.d.ts https://example-data.com/types/orgs.d.ts
import type { Org } from "./types/orgs";
const res = await fetch(
"https://example-data.com/api/v1/orgs/3"
);
const org = (await res.json()) as Org; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/orgs/3"
)
org = res.json() Response
{
"id": 3,
"name": "Mayert LLC",
"slug": "mayert-llc",
"description": "Profound value-added throughput",
"industryId": 4,
"size": "51-200",
"foundedYear": 2006,
"websiteUrl": "https://example.com/orgs/mayert-llc",
"logoUrl": "https://picsum.photos/seed/org-3/200/200",
"createdAt": "2025-07-25T18:31:07.621Z",
"updatedAt": "2025-08-17T06:55:15.788Z"
}