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

# Transaction Filter Options

> Return distinct gateways and currencies for populating the
Transactions page filter-bar dropdowns. Independent of any active
filter — agents need to see every option that has *ever* appeared
in the dataset, not just what's currently visible.

Returns: { gateways: [str], currencies: [str] }



## OpenAPI

````yaml /openapi.json get /transactions/filter-options
openapi: 3.1.0
info:
  title: Slate API
  version: 1.0.0
  description: Trading infrastructure API.
servers:
  - url: https://api.{your-broker}.slate-labs.com
    variables:
      your-broker:
        default: broker
security: []
tags:
  - name: Authentication
  - name: API Tokens
  - name: Customers
  - name: Accounts
  - name: Orders
  - name: Instruments & Groups
  - name: Transactions
  - name: Payments
  - name: Transfers
  - name: Risk
  - name: Workflow & CRM
  - name: Messaging
  - name: Integrations
  - name: Webhooks
  - name: Compliance
  - name: Promo codes
  - name: Reporting
  - name: Audit
  - name: Fraud & moderation
  - name: Broker settings
  - name: Users
  - name: Roles & Teams
  - name: Streams (SSE)
  - name: Simulator
  - name: Observability
  - name: Prop trading
paths:
  /transactions/filter-options:
    get:
      tags:
        - Transactions
      summary: Transaction Filter Options
      description: |-
        Return distinct gateways and currencies for populating the
        Transactions page filter-bar dropdowns. Independent of any active
        filter — agents need to see every option that has *ever* appeared
        in the dataset, not just what's currently visible.

        Returns: { gateways: [str], currencies: [str] }
      operationId: transaction_filter_options_transactions_filter_options_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````