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

# List wallet automation executions

> List wallet automation executions, optionally filtered by wallet.



## OpenAPI

````yaml get /v1/wallet_automations/executions
openapi: 3.1.0
info:
  version: 0.0.1
  title: Privy API
  description: >-
    REST API for Privy's wallet infrastructure — provision and manage wallets
    across EVM, Solana, and Bitcoin, authenticate users, sign transactions, and
    configure programmable policies and authorization intents.
  contact:
    name: Privy
    url: https://www.privy.io/
    email: support@privy.io
servers:
  - url: https://api.privy.io
security: []
tags:
  - name: Accounts
    description: Operations related to asset accounts
  - name: Actions
    description: Operations related to looking up wallet actions across an app
  - name: Aggregations
    description: Operations related to aggregations for tracking and measuring metrics
  - name: Apps
    description: Operations related to app settings and allowlist management
  - name: Cards
    description: Operations related to stablecoin-backed card issuing
  - name: Client Auth
    description: OAuth token exchange and device authorization operations
  - name: Condition Sets
    description: Operations related to condition sets
  - name: Embedded wallets
    description: Operations related to embedded wallet creation and authentication
  - name: Fiat
    description: Operations related to fiat onramping and offramping
  - name: Intents
    description: Operations related to authorization intents for wallet actions
  - name: Key quorums
    description: Operations related to key quorums
  - name: Kraken Embed
    description: >-
      Operations for Kraken Embed integration, including quotes, trades, user
      management, and portfolio operations
  - name: OAuth
    description: >-
      OAuth 2.0 endpoints including Device Authorization Grant (RFC 8628) for
      CLI and limited-input device login flows
  - name: Organizations
    description: Operations related to organizations
  - name: Policies
    description: Operations related to policies
  - name: Shared
    description: Common schemas shared across resources
  - name: Swaps
    description: Operations for swapping tokens within wallets
  - name: Teams
    description: Operations related to dashboard team management
  - name: Transactions
    description: Operations related to transactions
  - name: User signers
    description: Operations related to user signers
  - name: Users
    description: Operations related to users
  - name: Wallet Actions
    description: Operations related to wallet actions
  - name: Wallet Automations
    description: Operations related to wallet automations
  - name: Wallets
    description: Operations related to wallets
  - name: Webhooks
    description: >-
      Webhook events that Privy sends to your configured endpoint when specific
      actions occur in your app
  - name: Yield
    description: >-
      Operations for depositing and withdrawing funds from ERC-4626 yield vaults
      (Morpho, Aave)
paths:
  /v1/wallet_automations/executions:
    get:
      tags:
        - Wallet Automations
      summary: List wallet automation executions
      description: >-
        List all wallet automation execution records, with optional filtering by
        wallet.
      operationId: listWalletAutomationExecutions
      parameters:
        - schema:
            type: string
            minLength: 1
          required: false
          name: wallet_id
          in: query
        - schema:
            type: string
          required: false
          name: cursor
          in: query
        - schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 25
          required: false
          name: limit
          in: query
        - schema:
            type: string
            description: ID of your Privy app.
          required: true
          name: privy-app-id
          in: header
      responses:
        '200':
          description: Paginated list of wallet automation executions.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WalletAutomationExecutionListResponse'
      security:
        - appSecretAuth: []
components:
  schemas:
    WalletAutomationExecutionListResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/WalletAutomationExecutionResponse'
        next_cursor:
          type:
            - string
            - 'null'
      required:
        - data
        - next_cursor
      additionalProperties: false
      description: Paginated list of wallet automation executions.
      title: WalletAutomationExecutionListResponse
      x-stainless-model: wallet_automations.wallet_automation_execution_list_response
    WalletAutomationExecutionResponse:
      type: object
      properties:
        id:
          type: string
        automation_attachment_id:
          type:
            - string
            - 'null'
        wallet_id:
          type: string
        trigger_caip2:
          type: string
        trigger_asset_address:
          type: string
        trigger_block_number:
          type: string
        trigger_tx_hash:
          type: string
        wallet_action_id:
          type:
            - string
            - 'null'
        status:
          $ref: '#/components/schemas/WalletAutomationExecutionStatus'
        failure_reason:
          type:
            - string
            - 'null'
        triggered_at:
          type:
            - string
            - 'null'
        completed_at:
          type:
            - string
            - 'null'
        failed_at:
          type:
            - string
            - 'null'
        created_at:
          type: string
        updated_at:
          type: string
      required:
        - id
        - automation_attachment_id
        - wallet_id
        - trigger_caip2
        - trigger_asset_address
        - trigger_block_number
        - trigger_tx_hash
        - wallet_action_id
        - status
        - failure_reason
        - triggered_at
        - completed_at
        - failed_at
        - created_at
        - updated_at
      additionalProperties: false
      description: A record of a single automation execution triggered by a deposit.
      title: WalletAutomationExecutionResponse
      x-stainless-model: wallet_automations.wallet_automation_execution_response
    WalletAutomationExecutionStatus:
      type: string
      enum:
        - pending
        - triggered
        - completed
        - failed
        - skipped
      description: Execution lifecycle status.
      title: WalletAutomationExecutionStatus
      x-stainless-model: wallet_automations.wallet_automation_execution_status
  securitySchemes:
    appSecretAuth:
      type: http
      scheme: basic
      description: >-
        Basic Auth header with your app ID as the username and your app secret
        as the password.

````