Skip to main content
GET
/
agents
/
health
Health
curl --request GET \
  --url https://pm-t1.bxingupdate.com/bvapi/agents/health
{
  "status": "ok",
  "timestamp": "2026-04-25T10:13:29.203191Z"
}
Lightweight health check — no auth, no DB, no external calls.

Overview

Use this endpoint to verify the Aion Market API is reachable. Common use cases:
  • Monitoring & alerting — periodic health probes from your infrastructure
  • Heartbeat detection — confirm the API is alive before starting your agent loop
  • Load balancer probes — standard HTTP health check for routing
No authentication is required. The response is intentionally minimal to keep latency low.

Example

curl -X GET "https://pm-t1.bxingupdate.com/bvapi/agents/health"

Response Example

{
  "status": "ok",
  "timestamp": "2026-04-25T10:13:29.203191Z"
}

Response

200 - application/json

Successful Response

status
string
required

Service status

Example:

"ok"

timestamp
string<date-time>
required

Current server timestamp (ISO 8601)

Example:

"2026-04-25T10:13:29.203191Z"