---
title: "Get Executor"
method: GET
path: "/executors/{executor_id}"
tags: ["Executors"]
---

# Get Executor

`GET /executors/{executor_id}`

Get detailed information about a specific executor.

Checks active executors in memory first, then falls back to database for completed executors.

Returns full executor information including:
- Current status and PnL
- Full configuration
- Executor-specific custom information

## Path parameters

- `executor_id` string, required

## Response `200`

Successful Response

- ExecutorDetailResponse — Detailed response for a single executor.
  - `executor_id` string, required — Unique executor identifier
  - `executor_type` string, nullable, required — Type of executor
  - `account_name` string, nullable, required — Account name
  - `connector_name` string, nullable, required — Connector name
  - `trading_pair` string, nullable, required — Trading pair
  - `side` string, nullable — Trade side (BUY/SELL) if applicable
  - `status` string, required — Current status (RUNNING, TERMINATED, etc.)
  - `is_active` boolean, required — Whether the executor is active
  - `is_trading` boolean, required — Whether the executor has open trades
  - `timestamp` number, nullable — Creation timestamp (Unix)
  - `created_at` string, nullable — Creation timestamp (ISO format)
  - `close_type` string, nullable — How the executor was closed (if applicable)
  - `close_timestamp` number, nullable — Close timestamp (Unix)
  - `controller_id` string, nullable — ID of the controller that spawned this executor
  - `net_pnl_quote` number, required — Net PnL in quote currency
  - `net_pnl_pct` number, required — Net PnL percentage
  - `cum_fees_quote` number, required — Cumulative fees in quote currency
  - `filled_amount_quote` number, required — Total filled amount in quote currency
  - `error_count` integer — Number of ERROR-level log entries captured
  - `last_error` string, nullable — Most recent error message, if any
  - `config` object, nullable — Full executor configuration
  - `custom_info` object, nullable — Executor-specific custom information

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/hummingbot/apis/hummingbot-api.md) · [All operations](https://skmtc.net/hummingbot/apis/hummingbot-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/hummingbot/hummingbot-api/revisions/5347fe79537f/schema)
