---
title: "Create Bid"
method: POST
path: "/api/v2/load-offers/bids"
tags: ["Bids"]
---

# Create Bid

`POST /api/v2/load-offers/bids`

## Request body

- object — Create bid
  - `offer_id` string, uuid — Offer unique identifier (UUID).
  - `price` string — Bid Price (USD)

## Response `201`

Success

- object — The bid properties
  - `id` string, uuid — Bid unique identifier (UUID)
  - `offer_id` string, uuid — Offer unique identifier (UUID)
  - `price` string, uuid — Bid price (USD).
  - `created_at` string, date-time — Bid creation datetime
  - `expires_at` string, date-time — The bid expiration datetime
  - `expired_at` string, date-time — The bid datetime that bid was expirated
  - `status` 'pending' | 'awarded' | 'accepted' | 'timed_out' | 'refused' — Bit status.

## Other responses

- `400` — Invalid parameters
- `401` — Not authorized
- `403` — Forbidden
- `404` — Offer doesn't exists or expired
- `410` — Offer is no longer available
- `422` — Could not create the bid with the given data due to one of - ["The carrier is not eligible for this offer", "This offer is unbiddable", "Invalid Price"]

---

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