---
title: "Find a specific order"
method: GET
path: "/orders/{id}"
tags: ["orders"]
---

# Find a specific order

`GET /orders/{id}`

Returns a single NumberOrder instance for a given order id. Order contains information about purchased keywords, local, toll-free numbers

## Path parameters

- `id` integer, required

## Query parameters

- `fields` string

## Response `200`

successful operation

- NumberOrder — Represents an order created on the CallFire platform
  - `id` integer — An id of an order
  - `status` 'PROCESSING' | 'FINISHED' | 'PAYMENT_ERROR' | 'VOID' | 'WAIT_FOR_PAYMENT' | 'PARTIALLY_ADJUSTED' | 'ADJUSTED' | 'NEW' | 'ERRORED' | 'APPROVE_TIER_ONE' | 'APPROVE_TIER_TWO' | 'REJECTED' — A current status of an order. Available values: NEW, PROCESSING, FINISHED, ERRORED, VOID, WAIT_FOR_PAYMENT, REJECTED
  - `created` integer — The time when the given resource was created, formatted in unix time milliseconds (read only). Example: 1473781817000
  - `totalCost` number, float — A total cost of an order
  - `total` number, float — ~
  - `summary` number, float — ~
  - `salesTax` number, float — ~
  - `localNumbers` NumberOrderItem — Represents an order item of a particular order
    - `ordered` integer — A total number of items bought within a single order item
    - `unitCost` number, float — A cost of unit
    - `fulfilled` string[] — List of fulfilled items, e.g. phone numbers, keywords
  - `tollFreeNumbers` NumberOrderItem — Represents an order item of a particular order
    - `ordered` integer — A total number of items bought within a single order item
    - `unitCost` number, float — A cost of unit
    - `fulfilled` string[] — List of fulfilled items, e.g. phone numbers, keywords
  - `keywords` NumberOrderItem — Represents an order item of a particular order
    - `ordered` integer — A total number of items bought within a single order item
    - `unitCost` number, float — A cost of unit
    - `fulfilled` string[] — List of fulfilled items, e.g. phone numbers, keywords

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not found
- `500` — Internal Server Error

---

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