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

# List transactions awaiting passkey signature

> Returns transactions with awaiting_signature status for the integrator. These are transactions that have been prepared (or approved) and are waiting for the integrator to sign with their passkey.



## OpenAPI

````yaml /api-reference/openapi.json get /transactions/pending-signature
openapi: 3.0.0
info:
  title: Relayer
  description: >-
    Relayer API — Kit-based crypto infrastructure for OTC exchange, wallet
    signing, payouts, and widget actions.
  version: '1.0'
  contact: {}
servers:
  - url: https://testnet.relayer.fi/v1
    description: Sandbox (testnet wallets, no real fiat)
  - url: https://api.relayer.fi/v1
    description: Production (mainnet wallets, regulated fiat rails)
security:
  - api-key: []
tags:
  - name: 'Action: Builders'
    description: Transaction metadata builders
  - name: 'Action: Directory'
    description: Widget directory
  - name: 'Action: Execute'
  - name: 'Action: Tokens'
    description: Token lists per chain/protocol
  - name: Addresses
  - name: Agents
  - name: App
    description: Application endpoints
  - name: 'Payout: Accounts'
    description: Payment execution
  - name: 'Payout: Off-ramp'
  - name: 'Payout: On-ramp'
  - name: 'Payout: Orders'
  - name: 'Payout: Recipients'
    description: Beneficiary management
  - name: Signing - Passkeys
  - name: Signing - Recovery
  - name: Signing Approvals
    description: Transaction signing approvals
  - name: Signing Policies
    description: Signing policy management
  - name: Transactions
    description: Transaction signing and broadcasting
  - name: Wallets
    description: Wallet and address management
paths:
  /transactions/pending-signature:
    get:
      tags:
        - Transactions
      summary: List transactions awaiting passkey signature
      description: >-
        Returns transactions with awaiting_signature status for the integrator.
        These are transactions that have been prepared (or approved) and are
        waiting for the integrator to sign with their passkey.
      operationId: TransactionsController_listPendingSignature
      parameters:
        - name: integratorId
          required: false
          in: query
          description: Integrator ID (required for ADMIN/INTERNAL scope)
          schema:
            type: string
        - name: limit
          required: false
          in: query
          schema:
            type: number
        - name: offset
          required: false
          in: query
          schema:
            type: number
      responses:
        '200':
          description: List of pending signature transactions
      security:
        - api-key: []
        - api-key: []
        - api-key: []
      x-codeSamples:
        - lang: bash
          label: cURL
          source: |-
            curl https://api.relayer.fi/v1/transactions/pending-signature \
              -H "Authorization: ApiKey $RELAYER_API_KEY"
        - lang: TypeScript
          label: Node.js
          source: >-
            const response = await
            fetch("https://api.relayer.fi/v1/transactions/pending-signature", {
              headers: { Authorization: `ApiKey ${process.env.RELAYER_API_KEY}` },
            });

            // Returns all transactions awaiting passkey signature across all
            wallets

            // in the workspace — useful for an "Outstanding actions" dashboard
            view.
components:
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: Authorization
      description: 'Use this format: `ApiKey <your_api_key>`'

````