Read-only access to the Minthar Holdings product catalog and API health. All endpoints return JSON with a consistent response envelope.
Base URL
https://minthar.net/api/v1Authentication
None required — all endpoints are public
Format
JSON
All responses follow a consistent envelope structure with an ok boolean, a unique request ID, and a data payload.
{
"ok": true,
"request_id": "req_abc123",
"data": {
"...": "..."
}
}/healthReturns the current API health status, version number, and server timestamp.
{
"status": "healthy",
"version": "1.0.0",
"timestamp": "2026-02-21T12:00:00.000Z"
}/catalogReturns all store products, services, and standards with support for filtering by type, site tenant, domain, and pagination.
| Name | Type | Required | Description |
|---|---|---|---|
type | string servicesplatformsstandards | No | Filter by product type |
site | string holdings | No | Filter by site tenant |
domain | string | No | Filter standards by domain slug |
limit | integer | No(default: 100) | Maximum number of results to return (max 500) |
offset | integer | No(default: 0) | Number of results to skip for pagination |
{
"ok": true,
"data": {
"items": [
{
"slug": "cybersecurity",
"type": "services",
"titleEn": "Cybersecurity",
"price": 0
}
],
"total": 42,
"limit": 100,
"offset": 0
}
}For machine-readable integration, you can access the raw OpenAPI 3.1 specification directly.
View OpenAPI Spec (JSON)