Skip to main content
GET
/
executors
/
summary
Get Executors Summary
curl --request GET \
  --url http://localhost:8000/executors/summary \
  --header 'Authorization: Basic <encoded-value>'
{
  "by_connector": {
    "binance": 1,
    "binance_perpetual": 4
  },
  "by_status": {
    "RUNNING": 5
  },
  "by_type": {
    "grid_executor": 2,
    "position_executor": 3
  },
  "total_active": 5,
  "total_pnl_quote": 1234.56,
  "total_volume_quote": 50000
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

200 - application/json

Successful Response

Summary of active executors.

total_active
integer
required

Number of active executors

total_pnl_quote
number
required

Total PnL across active executors

total_volume_quote
number
required

Total volume across active executors

by_type
By Type · object
required

Executor count by type

by_connector
By Connector · object
required

Executor count by connector

by_status
By Status · object
required

Executor count by status