Skip to main content
method
GET
/status
Authentication: Required (if enabled)

Response

200 OK
{
  "node_count": 42,
  "edge_count": 35,
  "stable_edges": 10,
  "density_millionths": 1234
}
FieldTypeDescription
node_countintegerTotal number of nodes in the graph.
edge_countintegerTotal number of edges.
stable_edgesintegerEdges above the stability threshold (weight ≥ 10).
density_millionthsintegerGraph density expressed in millionths.

Example

curl -H "Authorization: Bearer your-api-key" \
     http://localhost:8080/status
Last modified on February 19, 2026