Search for a command to run...
API reference
GET /statusProbe edge availability, carry request IDs through your logs, and use the dashboard to investigate API latency and webhook delivery.
/statusThis endpoint is unauthenticated and lightweight. Use it to verify DNS, TLS, routing, and the deployed API version.
curl https://api.intelliconcierge.dev/v1/status{
"status": "ok",
"version": "v1"
}Edge health is not a synthetic send
Every authenticated public request receives an opaque UUID. Capture it next to your own trace or job ID so one failing send can be followed across systems.
const response = await fetch(url, request);
const requestId = response.headers.get("x-request-id");
logger.info("IntelliPortal response", {
requestId,
status: response.status,
clientRef,
});Request recording runs after the response is sent, so a brand-new request may take a moment to appear in the dashboard.
Volume, status distribution, latency percentiles, a latency heatmap, and individual request records.
Dashboard health view for the partner API and its supporting services.
Payload, response status, attempts, failure context, and manual redelivery.
5xx or 502 upstream_unavailable, not a single transient response.429 separately and honor Retry-After before retrying.client_ref and X-Request-Id, but never a full API key or webhook signing secret.