> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rhinestone.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# List candidate quotes considered for a deposit

> 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.



## OpenAPI

````yaml https://raw.githubusercontent.com/rhinestonewtf/openapi/refs/heads/main/deposit-service.json get /deposits/{id}/quotes
openapi: 3.1.0
info:
  title: Deposit Service API
  version: 1.0.0
  description: >-
    Cross-chain deposit processing service with automatic token bridging and gas
    sponsorship
servers:
  - url: https://v1.orchestrator.rhinestone.dev/deposit-processor
security: []
paths:
  /deposits/{id}/quotes:
    get:
      tags:
        - Utilities
      summary: List candidate quotes considered for a deposit
      description: >-
        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.
      parameters:
        - schema:
            type: string
            pattern: ^\d+$
            description: Deposit id. Returned by GET /deposits.
            example: '12345'
          required: true
          description: Deposit id. Returned by GET /deposits.
          name: id
          in: path
        - schema:
            type: string
            description: API key for authentication
            example: your-api-key
          required: true
          description: API key for authentication
          name: x-api-key
          in: header
      responses:
        '200':
          description: Quotes considered for the deposit
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DepositQuotesResponse'
        '400':
          description: Invalid deposit id or API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: API key lacks required deposits scope
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Deposit not found or not owned by the caller
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    DepositQuotesResponse:
      type: object
      properties:
        count:
          type: integer
        items:
          type: array
          items:
            $ref: '#/components/schemas/DepositQuoteItem'
      required:
        - count
        - items
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
        details:
          type: array
          items:
            type: object
            properties:
              message:
                type: string
              path:
                type: array
                items:
                  anyOf:
                    - type: string
                    - type: number
              code:
                type: string
            required:
              - message
      required:
        - error
    DepositQuoteItem:
      type: object
      properties:
        intentId:
          type: string
        settlementLayer:
          type: string
        bridgeProvider:
          type:
            - string
            - 'null'
        rank:
          type: integer
        outcome:
          type: string
          enum:
            - quoted
            - attempted
            - succeeded
            - failed
            - skipped
        quote: {}
        errorCode:
          type:
            - string
            - 'null'
        errorMessage:
          type:
            - string
            - 'null'
        attemptedAt:
          type:
            - string
            - 'null'
        completedAt:
          type:
            - string
            - 'null'
        createdAt:
          type: string
      required:
        - intentId
        - settlementLayer
        - bridgeProvider
        - rank
        - outcome
        - errorCode
        - errorMessage
        - attemptedAt
        - completedAt
        - createdAt

````