Minthar Holdings
Company
WorkStoreVenturesAwardsBlog
Careers
Contact
Start Partnership
Minthar Holdings

We create, launch, and invest in products and ventures that change the world.

By subscribing you agree to receive our newsletter. You can unsubscribe anytime.

References

  • Terms of Service
  • Privacy Policy
  • Legal & Compliance
  • AI Governance
  • Delivery Governance Framework
  • Store Terms

Company

  • About Minthar
  • Ventures
  • Hiring
  • Training
  • Articles
  • Contact Us

Institutional

  • Corporate Governance
  • Investor Relations
  • Public Metrics
  • Press Room
  • Research Hub

Services

  • Store
  • Invest in Saudi
  • Our Work
  • FAQ
  • Start Partnership
  • Client / Vendor Portal
Start Partnership
Technology arm:MN Tech

Adsat Minthar Holding Co. — Products & Ventures Holding Company

Adsat Minthar Holding Co. All rights reserved 2026 ©

X
v1.0Public API

API Documentation

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/v1

Authentication

None required — all endpoints are public

Format

JSON

Response Format

All responses follow a consistent envelope structure with an ok boolean, a unique request ID, and a data payload.

Success Response
{
  "ok": true,
  "request_id": "req_abc123",
  "data": {
    "...": "..."
  }
}

System

GET/health

Returns the current API health status, version number, and server timestamp.

Example Response
{
  "status": "healthy",
  "version": "1.0.0",
  "timestamp": "2026-02-21T12:00:00.000Z"
}

Product Catalog

GET/catalog

Returns all store products, services, and standards with support for filtering by type, site tenant, domain, and pagination.

Parameters

NameTypeRequiredDescription
typestring
servicesplatformsstandards
NoFilter by product type
sitestring
holdings
NoFilter by site tenant
domainstringNoFilter standards by domain slug
limitintegerNo(default: 100)Maximum number of results to return (max 500)
offsetintegerNo(default: 0)Number of results to skip for pagination
Example Response
{
  "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)