---
title: "Get algo order by id"
method: GET
path: "/algo/orders/{algo_id}"
tags: ["Algos"]
---

# Get algo order by id

`GET /algo/orders/{algo_id}`

Get an algo order by id. Only return algo order in `OPEN` or `NEW` status.

## Path parameters

- `algo_id` string, required

## Response `200`

OK

- ResponsesAlgoOrderResp
  - `account` string — Account identifier (user's account address)
  - `algo_type` '' | 'TWAP'
  - `avg_fill_price` string — Average fill price of the order
  - `cancel_reason` string — Reason for algo cancellation if it was closed by cancel
  - `created_at` integer — Algo creation time
  - `end_at` integer — Algo end time
  - `id` string — Unique algo identifier
  - `last_updated_at` integer — Algo last update time. No changes once status=CLOSED
  - `market` string — Market to which algo belongs
  - `remaining_size` string — Remaining size of the algo
  - `side` 'BUY' | 'SELL'
  - `size` string — Algo size
  - `status` 'NEW' | 'UNTRIGGERED' | 'OPEN' | 'CLOSED'

## Other responses

- `404` — Not Found

---

[API](https://skmtc.net/tradeparadex/apis/paradex-rest-api.md) · [All operations](https://skmtc.net/tradeparadex/apis/paradex-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tradeparadex/paradex-rest-api/versions/26dce0f96ab2/schema)
