> ## Documentation Index
> Fetch the complete documentation index at: https://cantonfoundation-update-ref-tables.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# GET /v0/wallet/transfer-offers

> List all open transfer offers where the user is either sender or receiver.



## OpenAPI

````yaml /openapi/splice/validator/wallet-external.yaml get /v0/wallet/transfer-offers
openapi: 3.0.0
info:
  title: Wallet API
  version: 0.0.1
servers:
  - url: https://example.com/api/validator
security: []
tags:
  - name: wallet
paths:
  /v0/wallet/transfer-offers:
    get:
      tags:
        - wallet
      summary: GET /v0/wallet/transfer-offers
      description: >-
        List all open transfer offers where the user is either sender or
        receiver.
      operationId: listTransferOffers
      responses:
        '200':
          description: ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListTransferOffersResponse'
        '404':
          $ref: '#/components/responses/404'
        '500':
          $ref: '#/components/responses/500'
      security:
        - walletUserAuth: []
components:
  schemas:
    ListTransferOffersResponse:
      type: object
      required:
        - offers
      properties:
        offers:
          type: array
          items:
            $ref: '#/components/schemas/Contract'
    Contract:
      type: object
      properties:
        template_id:
          type: string
        contract_id:
          type: string
        payload:
          type: object
        created_event_blob:
          type: string
        created_at:
          type: string
      required:
        - template_id
        - contract_id
        - payload
        - created_event_blob
        - created_at
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string
  responses:
    '404':
      description: not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    '500':
      description: internal server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    walletUserAuth:
      description: >
        JWT token as described in
        [spliceAppBearerAuth]("../../../../common/src/main/openapi/common-external.yaml#/components/securitySchemes/spliceAppBearerAuth").

        The subject of the token must be ledger API user of the user whose
        wallet the endpoint affects.
      type: http
      scheme: bearer
      bearerFormat: JWT

````