● Control plane
Health
Health and product metadata.
| GET | /v1/health | Health check |
| GET | /v1/capabilities | List protocol capabilities |
GET/v1/health
Health check
Returns service status and API version.
scope · health:read
# sandbox: full surface, no production data curl https://sandbox.api.microndelta.com/v1/health \ -H "Authorization: Bearer md_test_xxxxxxxxxxxxxxxx" \ -H "MD-Version: 2026-06-11"
import requests
resp = requests.get(
"https://sandbox.api.microndelta.com/v1/health",
headers={
"Authorization": "Bearer md_test_xxxxxxxxxxxxxxxx",
"MD-Version": "2026-06-11",
},
)
print(resp.json())const resp = await fetch("https://sandbox.api.microndelta.com/v1/health", { method: "GET", headers: { "Authorization": "Bearer md_test_xxxxxxxxxxxxxxxx", "MD-Version": "2026-06-11", }, }); console.log(await resp.json());
● 200MD-Request-Id: req_01J…
200 Response
{
"status": "ok",
"version": "string",
"environment": "string",
"timestamp": "2026-06-01T12:00:00Z"
}GET/v1/capabilities
List protocol capabilities
Returns available API modules, environments, enabled feature flags, and access posture.
scope · capabilities:read
# sandbox: full surface, no production data curl https://sandbox.api.microndelta.com/v1/capabilities \ -H "Authorization: Bearer md_test_xxxxxxxxxxxxxxxx" \ -H "MD-Version: 2026-06-11"
import requests
resp = requests.get(
"https://sandbox.api.microndelta.com/v1/capabilities",
headers={
"Authorization": "Bearer md_test_xxxxxxxxxxxxxxxx",
"MD-Version": "2026-06-11",
},
)
print(resp.json())const resp = await fetch("https://sandbox.api.microndelta.com/v1/capabilities", { method: "GET", headers: { "Authorization": "Bearer md_test_xxxxxxxxxxxxxxxx", "MD-Version": "2026-06-11", }, }); console.log(await resp.json());
● 200MD-Request-Id: req_01J…
200 Response
{
"capabilities": [
"string"
],
"modules": [
"string"
],
"environments": [
"string"
],
"notes": "string"
}