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

# List Standing Orders

> Retrieve all standing orders for the account



## OpenAPI

````yaml GET /api/grid/v1/accounts/{address}/standing-orders
openapi: 3.1.0
info:
  title: Grid v1 API
  description: Grid v1 REST API for Solana-based smart account system
  contact:
    name: Grid API Support
    url: https://squads.so
    email: support@squads.so
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://grid.squads.xyz
    description: Production server
security:
  - bearer_auth: []
tags:
  - name: accounts
    description: Smart account management operations
  - name: spending-limits
    description: Spending limit management
  - name: standing-orders
    description: Standing order operations
  - name: transactions
    description: Transaction management
  - name: trade
    description: Trade operations and management
  - name: payments
    description: Payment intent operations
  - name: passkeys
    description: Passkey management
  - name: kyc
    description: Know Your Customer operations
  - name: external-accounts
    description: External bank account management
  - name: virtual-accounts
    description: Virtual account management
  - name: auth
    description: Authentication operations
  - name: proposals
    description: Proposal management for multi-sig operations
  - name: compliance
    description: Compliance entity management and KYB/KYC operations
paths:
  /api/grid/v1/accounts/{address}/standing-orders:
    get:
      tags:
        - standing-orders
      summary: Get all standing orders for an account
      description: Retrieve all standing orders for a smart account with optional filtering
      operationId: handler
      parameters:
        - name: address
          in: path
          description: Smart account address
          required: true
          schema:
            type: string
        - name: status
          in: query
          description: Filter by standing order status
          required: false
          schema:
            type: string
        - name: currency
          in: query
          description: Filter by currency
          required: false
          schema:
            type: string
        - name: start_date
          in: query
          description: Filter by start date
          required: false
          schema:
            type: string
        - name: end_date
          in: query
          description: Filter by end date
          required: false
          schema:
            type: string
        - name: tx_hash
          in: query
          description: Filter by transaction hash
          required: false
          schema:
            type: string
        - name: limit
          in: query
          description: Limit the number of results
          required: false
          schema:
            type: integer
            format: int32
            minimum: 0
        - name: cursor
          in: query
          description: Pagination cursor
          required: false
          schema:
            type: string
        - name: x-grid-environment
          in: header
          description: Solana network environment (sandbox, devnet, mainnet)
          required: true
          schema:
            type: string
          example: sandbox
      responses:
        '200':
          description: Standing orders retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/StandingOrder'
        '404':
          description: Smart account not found
        '500':
          description: Internal server error
      security:
        - bearer_auth: []
components:
  schemas:
    StandingOrder:
      type: object
      required:
        - id
        - amount
        - currency
        - period
        - destinations
        - status
        - next_execution_date
        - created_at
      properties:
        amount:
          type: string
        created_at:
          type: string
          format: date-time
        currency:
          type: string
        destinations:
          type: array
          items:
            type: string
        id:
          type: string
          format: uuid
        last_execution_date:
          type:
            - string
            - 'null'
          format: date-time
        next_execution_date:
          type: string
          format: date-time
        period:
          type: string
        status:
          type: string
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer
      description: Your Grid API key from the Grid Dashboard

````