---
title: "Retrieve an order"
method: GET
path: "/orders/{id}"
tags: ["Orders"]
---

# Retrieve an order

`GET /orders/{id}`

Returns the ids of the caller-owned purchased vehicles under one order. Partners interact with vehicles, so the order itself carries nothing else.

## Path parameters

- `id` string, required

## Response `200`

The requested order.

- object
  - `data` Order, required
    - `id` string, required
    - `vehicle_ids` string[], required — Ids of the caller-owned purchased vehicles under this order.

## Other responses

- `400` — The request was malformed or failed validation.
- `401` — Authentication is missing or invalid.
- `403` — The token lacks a required scope.
- `404` — No order matches that id.
- `429` — The rate limit has been exceeded.
- `500` — An unexpected error occurred.

---

[API](https://skmtc.dev/ekho/apis/ekho-api.md) · [All operations](https://skmtc.dev/ekho/apis/ekho-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/ekho/ekho-api/revisions/2056332cf6b9/schema)
