---
title: "Update bid"
method: PUT
path: "/api/v1/bids/{id}"
tags: ["bids"]
---

# Update bid

`PUT /api/v1/bids/{id}`

Update a bid's value, quantity, or gas parameters. 
      Only the bid owner can update their bids.
      Bids can only be updated in PENDING or VALIDATED status.

## Path parameters

- `id` string, required

## Request body

- UpdateBidDto
  - `value` string — Updated bid value in wei
  - `quantity` number — Updated quantity
  - `gasFeeCap` string — Updated gas fee cap in wei
  - `gasTipCap` string — Updated gas tip cap in wei

## Response `200`

Bid updated successfully

- BidResponseDto
  - `id` string, required — Unique bid identifier
  - `slot` number, required — Slot number
  - `entityId` string, required — Entity identifier
  - `value` string, required — Bid value in wei
  - `quantity` number, required — Quantity of units
  - `gasFeeCap` string, required — Gas fee cap in wei
  - `gasTipCap` string, required — Gas tip cap in wei
  - `builderPublicKey` string, required — Builder public key
  - `status` 'pending' | 'submitted' | 'validated' | 'updated' | 'winning' | 'partial' | 'lost' | 'cancelled' | 'expired', required — Current bid status
  - `submittedAt` string, date-time, required — Bid submission timestamp
  - `updatedAt` string, date-time, required — Last update timestamp
  - `validatedAt` string, date-time — Validation timestamp
  - `validFrom` string, date-time, required — Bid valid from timestamp
  - `validUntil` string, date-time, required — Bid valid until timestamp
  - `version` number, required — Bid version number
  - `nonce` string, required — Unique nonce for replay protection
  - `metadata` object — Additional bid metadata
  - `isActive` boolean, required — Whether bid is currently active
  - `isModifiable` boolean, required — Whether bid can be modified
  - `hasExpired` boolean, required — Whether bid has expired

## Other responses

- `400` — Bid cannot be modified in current status
- `403` — Not authorized to update this bid

---

[API](https://skmtc.dev/manifoldfinance/apis/eigenlayer-public-api-specification.md) · [All operations](https://skmtc.dev/manifoldfinance/apis/eigenlayer-public-api-specification/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/manifoldfinance/eigenlayer-public-api-specification/revisions/068b24703dfe/schema)
