Returns the current health status of every Truthlocks service. Use this endpoint to integrate service availability into your own dashboards, alerting pipelines, or circuit breakers. This endpoint is served fromDocumentation Index
Fetch the complete documentation index at: https://docs.truthlocks.com/llms.txt
Use this file to discover all available pages before exploring further.
status.truthlocks.com, not the main API. No authentication is required.
Response
Response fields
| Field | Type | Description |
|---|---|---|
status | string | Overall system health: operational, degraded, or outage. |
timestamp | string | ISO 8601 timestamp of the check. |
services | array | Per-service health results. |
services[].id | string | Machine-readable service identifier (e.g., api-gateway, signing-service). |
services[].name | string | Human-readable service name. |
services[].status | string | Service health: operational, degraded, or outage. |
services[].responseTime | number or null | Response time in milliseconds, or null if unreachable. |
services[].error | string | Present only when the service is not operational. Describes the failure reason. |
Status logic
operational— all services are healthy and responding normally.degraded— at least one service is slow or returning errors, but none are fully down.outage— at least one service is completely unreachable.
Monitored services
| Service ID | Name | Description |
|---|---|---|
api-gateway | API Gateway | Main API endpoint for all public requests |
trust-registry | Trust Registry | Issuer management and governance |
billing-service | Billing | Subscription and payment processing |
signing-service | Signing | Cryptographic signing operations |
attestation-service | Attestations | Attestation minting and management |
audit-service | Audit Logs | Activity logging and compliance |
transparency-log | Transparency Log | Cryptographic append-only log |
verification-service | Verification | Proof bundle verification |
Example: poll status from your application
Example: pre-flight check before minting
This endpoint is rate-limited to prevent abuse. For continuous monitoring, poll
no more frequently than once every 30 seconds.

