Skip to main content
GET
/
v1
/
health
/
ingestion
Ingestion Health
curl --request GET \
  --url https://api.agentmark.co/v1/health/ingestion
{
  "status": "healthy",
  "timestamp": "2026-04-10T15:30:45.123Z",
  "service": "ingestion",
  "dependencies": [
    {
      "name": "database",
      "status": "healthy",
      "latencyMs": 12.3
    },
    {
      "name": "auth",
      "status": "healthy",
      "latencyMs": 45.1
    }
  ]
}

Response

Ingestion pipeline is healthy or degraded.

status
enum<string>
required
Available options:
healthy,
degraded,
unhealthy
Example:

"healthy"

timestamp
string<date-time>
required
Example:

"2026-04-10T15:30:45.123Z"

service
string
Example:

"ingestion"

dependencies
object[]