---
title: "Get all orders for a specific ID."
method: GET
path: "/v1/get-order/{id}"
tags: ["v1"]
---

# Get all orders for a specific ID.

`GET /v1/get-order/{id}`

## Path parameters

- `id` string, required

## Response `200`

Get order by either the order_id returned by create-order, the source Bitcoin transaction ID , or the source EVM transaction hash

- GatewayOrderInfo — Gateway order info
  - `dstInfo` ChainTxInfo, required
    - `amount` string, required
    - `chain` string, required
    - `token` string, required
    - `txHash` string, nullable
  - `estimatedTimeInSecs` integer, nullable
  - `srcInfo` ChainTxInfo, required
    - `amount` string, required
    - `chain` string, required
    - `token` string, required
    - `txHash` string, nullable
  - `status` union, required
    - object
      - `inProgress` object, required
        - `bump_fee_tx` TxInfo
          - `chain` string, required
          - `data` string, required
          - `to` string, required
          - `value` string, required
        - `refund_tx` TxInfo
          - `chain` string, required
          - `data` string, required
          - `to` string, required
          - `value` string, required
    - object
      - `failed` object, required
        - `refund_tx` TxInfo
          - `chain` string, required
          - `data` string, required
          - `to` string, required
          - `value` string, required
    - 'success'
    - 'refunded'
  - `timestamp` integer, required

## Other responses

- `404` — Order not found

---

[API](https://skmtc.dev/bob-collective/apis/bob-gateway-api.md) · [All operations](https://skmtc.dev/bob-collective/apis/bob-gateway-api/llms.txt) · [OpenAPI document](https://skmtc.dev/bob-collective/apis/bob-gateway-api/revisions/a6065adb7d74?raw)
