> ## 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.

# Get the Directory data

> <!-- relayer:auth-badge:start -->
> **Auth: public.** No authentication required.
<!-- relayer:auth-badge:end -->



## OpenAPI

````yaml /api-reference/openapi.json get /action/directory
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:
  /action/directory:
    get:
      tags:
        - 'Action: Directory'
      summary: Get the Directory data
      description: |-
        <!-- relayer:auth-badge:start -->
        > **Auth: public.** No authentication required.
        <!-- relayer:auth-badge:end -->
      operationId: DirectoryController_getDirectoryData
      parameters: []
      responses:
        '200':
          description: The Directory data
        '429':
          description: Too Many Requests
      x-codeSamples:
        - lang: bash
          label: cURL (public)
          source: curl https://api.relayer.fi/v1/action/directory
        - lang: TypeScript
          label: Node.js (public — no auth)
          source: >-
            const response = await
            fetch("https://api.relayer.fi/v1/action/directory");

            const { data } = await response.json();

            // Public feed of approved widgets. Used by the platform observers
            (Twitter/X,

            // YouTube, Twitch) to validate whether a widget URL is trusted.
components:
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: Authorization
      description: 'Use this format: `ApiKey <your_api_key>`'

````