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

# List all offers for a wallet

> Retrieve all Canton offers associated with a specific wallet. Offers can be filtered by creation date and limited by count.




## OpenAPI

````yaml https://production.hifi.com/api/v2/openapi.json get /v2/wallets/{walletId}/offers
openapi: 3.0.0
info:
  title: Hifi API
  version: 2.0.0
  description: API documentation for Hifi
servers:
  - url: https://production.hifibridge.com
    description: Production server
  - url: https://sandbox.hifibridge.com
    description: Sandbox server
security:
  - bearerAuth: []
tags:
  - name: Common
    description: Common endpoints
  - name: User
    description: User endpoints
  - name: Kyc
    description: Kyc endpoints
  - name: Wallet
    description: Wallet endpoints
  - name: Account
    description: Account endpoints
  - name: External Account
    description: External Account endpoints for managing beneficiary bank accounts
  - name: Fiat Account
    description: Fiat Account endpoints
  - name: Virtual Account
    description: Virtual Account endpoints
  - name: Onramp
    description: Onramp endpoints
  - name: Offramp
    description: Offramp endpoints
  - name: Orchestration Address
    description: >-
      Orchestration Address endpoints — persistent on-chain wallets that
      automatically off-ramp incoming stablecoin deposits to a USD bank account
  - name: Crypto Transfer
    description: Crypto Transfer endpoints
  - name: Cross-Chain Bridge
    description: Cross-Chain Bridge endpoints
  - name: Token Swap
    description: Token Swap endpoints
  - name: Canton Offers
    description: Canton Offers endpoints
  - name: Transfer Rules
    description: Transfer approval rules and configuration
  - name: Transfer Approvals
    description: Transfer approval workflow and admin actions
  - name: File
    description: File endpoints
  - name: Reporting
    description: Reporting and metrics endpoints
paths:
  /v2/wallets/{walletId}/offers:
    get:
      tags:
        - Canton Offers
      summary: List all offers for a wallet
      description: >
        Retrieve all Canton offers associated with a specific wallet. Offers can
        be filtered by creation date and limited by count.
      parameters:
        - $ref: '#/components/parameters/WalletIdPathParameter'
        - $ref: '#/components/parameters/LimitParameter'
        - $ref: '#/components/parameters/CreatedBeforeParameter'
        - $ref: '#/components/parameters/CreatedAfterParameter'
      responses:
        '200':
          $ref: '#/components/responses/GetAllCantonOffersResponse'
        '400':
          $ref: '#/components/responses/FieldValidationErrorResponse'
        '401':
          $ref: '#/components/responses/UnauthorizedResponse'
        '404':
          $ref: '#/components/responses/NotFoundResponse'
        '500':
          $ref: '#/components/responses/InternalServerErrorResponse'
components:
  parameters:
    WalletIdPathParameter:
      name: walletId
      in: path
      schema:
        type: string
        format: uuid
      description: ID of the wallet
      required: true
    LimitParameter:
      name: limit
      in: query
      schema:
        type: string
        minimum: 1
        maximum: 100
      description: default to 10, maximum to 100
      required: false
    CreatedBeforeParameter:
      name: createdBefore
      in: query
      schema:
        type: string
        format: date
      description: 'ISO format: YYYY-MM-DD'
      required: false
    CreatedAfterParameter:
      name: createdAfter
      in: query
      schema:
        type: string
        format: date
      description: 'ISO format: YYYY-MM-DD'
      required: false
  responses:
    GetAllCantonOffersResponse:
      description: Success
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/AllCantonOffersObject'
    FieldValidationErrorResponse:
      description: Field Validation Error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    UnauthorizedResponse:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Unauthorized'
    NotFoundResponse:
      description: Resource not found
      content:
        application/json:
          schema:
            type: object
            properties:
              status:
                type: string
                enum:
                  - error
              error:
                type: object
                properties:
                  code:
                    type: string
                  message:
                    type: string
    InternalServerErrorResponse:
      description: Internal Server Error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/InternalServerError'
  schemas:
    AllCantonOffersObject:
      type: object
      properties:
        count:
          type: integer
          description: Number of offers returned
        records:
          type: array
          items:
            $ref: '#/components/schemas/CantonOfferObject'
        nextCursor:
          type: string
          nullable: true
          description: >-
            The `createdAt` timestamp of the last record in the current page.
            Pass this as `createdBefore` in the next request to retrieve the
            next page of results. Null if there are no more records.
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Error message describing what went wrong
          example: Invalid API key or user not found
    Unauthorized:
      type: object
      properties:
        code:
          type: integer
          description: Error code
        error:
          type: string
          description: Error type
        errorDetails:
          type: string
          description: Detailed error message
    InternalServerError:
      type: object
      properties:
        code:
          type: integer
          description: Error code
        error:
          type: string
          description: Error type
        errorDetails:
          type: string
          description: Detailed error message
    CantonOfferObject:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier for the Canton offer
        status:
          type: string
          description: Current status of the offer
          enum:
            - RECEIVED
            - PENDING
            - ACCEPTED
            - REJECTED
            - WITHDRAWN
            - EXPIRED
        amount:
          type: string
          description: The amount of the offer
        currency:
          type: string
          enum:
            - usdcx
          description: The currency of the offer
        source:
          type: object
          properties:
            party:
              type: string
              description: The party created the offer
        destination:
          type: object
          properties:
            userId:
              type: string
              format: uuid
              description: The user ID receiving the offer
            userWalletId:
              type: string
              format: uuid
              description: The wallet ID receiving the offer
            party:
              type: string
              description: The party receiving the offer
        creationTransactionHash:
          type: string
          description: The transaction hash when the offer was created
        executionTransactionHash:
          type: string
          nullable: true
          description: >-
            The transaction hash when the offer was accepted or rejected (null
            if not yet executed)
        createdAt:
          type: string
          format: date-time
          description: Timestamp when the offer was created
        updatedAt:
          type: string
          format: date-time
          description: Timestamp when the offer was last updated
        expiresAt:
          type: string
          format: date-time
          nullable: true
          description: Timestamp when the offer expires (null if no expiration)
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````