---
title: "List candidate quotes considered for a deposit"
method: GET
path: "/deposits/{id}/quotes"
tags: ["Utilities"]
---

# List candidate quotes considered for a deposit

`GET /deposits/{id}/quotes`

Returns every quote the orchestrator (or Solana bridge adapter) returned for this deposit, including which one was attempted and its terminal outcome. Scoped to the caller's tenant.

## Path parameters

- `id` string, required — Deposit id. Returned by GET /deposits.

## Headers

- `x-api-key` string, required — API key for authentication

## Response `200`

Quotes considered for the deposit

- DepositQuotesResponse
  - `count` integer, required
  - `items` DepositQuoteItem[], required
    - `intentId` string, required
    - `settlementLayer` string, required
    - `bridgeProvider` string, nullable, required
    - `rank` integer, required
    - `outcome` 'quoted' | 'attempted' | 'succeeded' | 'failed' | 'skipped', required
    - `quote` unknown
    - `errorCode` string, nullable, required
    - `errorMessage` string, nullable, required
    - `attemptedAt` string, nullable, required
    - `completedAt` string, nullable, required
    - `createdAt` string, required

## Other responses

- `400` — Invalid deposit id or API key
- `403` — API key lacks required deposits scope
- `404` — Deposit not found or not owned by the caller

---

[API](https://skmtc.net/rhinestonewtf/apis/deposit-service-api.md) · [All operations](https://skmtc.net/rhinestonewtf/apis/deposit-service-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/rhinestonewtf/deposit-service-api/revisions/ce4e0abfe33a/schema)
