---
title: "Create new order"
method: POST
path: "/orders"
tags: ["orders"]
---

# Create new order

`POST /orders`

Returns newly created order

## Request body

- OrderCreate
  - `userAddress` string
  - `exchangeAddress` string
  - `baseToken` string
  - `quoteToken` string
  - `side` string
  - `type` string
  - `status` string
  - `hash` string
  - `signature` Signature
    - `V` string
    - `R` string
    - `S` string
  - `pricepoint` string
  - `amount` string
  - `nonce` string
  - `makeFee` string
  - `takeFee` string

## Response `201`

successful operation

- Order
  - `id` string
  - `userAddress` string
  - `exchangeAddress` string
  - `baseToken` string
  - `quoteToken` string
  - `status` string
  - `side` string
  - `type` string
  - `hash` string
  - `signature` Signature
    - `V` string
    - `R` string
    - `S` string
  - `pricepoint` string
  - `amount` string
  - `filledAmount` string
  - `nonce` string
  - `makeFee` string
  - `takeFee` string
  - `pairName` string
  - `createdAt` string, date-time
  - `updatedAt` string, date-time
  - `orderID` string

## Other responses

- `400` — Invalid payload
- `403` — Account is blocked
- `500` — Internal Server Error

---

[API](https://skmtc.net/buildonviction/apis/tomodex-apis.md) · [All operations](https://skmtc.net/buildonviction/apis/tomodex-apis/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/buildonviction/tomodex-apis/revisions/18b6ffedd480/schema)
