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

# Get Group Swap Rates

> Resolved swap rates for all active instruments in a group.
Shows source (group_instruments vs instruments_default) and effective rates
after applying swap_multiplier.



## OpenAPI

````yaml /openapi.json get /broker/groups/{group_id}/swap-rates
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:
  /broker/groups/{group_id}/swap-rates:
    get:
      tags:
        - Instruments & Groups
      summary: Get Group Swap Rates
      description: >-
        Resolved swap rates for all active instruments in a group.

        Shows source (group_instruments vs instruments_default) and effective
        rates

        after applying swap_multiplier.
      operationId: get_group_swap_rates_broker_groups__group_id__swap_rates_get
      parameters:
        - name: group_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Group Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SwapRatesResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SwapRatesResponse:
      properties:
        group_id:
          type: string
          format: uuid
          title: Group Id
        group_name:
          type: string
          title: Group Name
        swap_free:
          type: boolean
          title: Swap Free
        swap_multiplier:
          type: number
          title: Swap Multiplier
        instruments:
          items:
            $ref: '#/components/schemas/SwapRateItem'
          type: array
          title: Instruments
      type: object
      required:
        - group_id
        - group_name
        - swap_free
        - swap_multiplier
        - instruments
      title: SwapRatesResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    SwapRateItem:
      properties:
        symbol:
          type: string
          title: Symbol
        swap_type:
          type: string
          title: Swap Type
        swap_long:
          type: number
          title: Swap Long
        swap_short:
          type: number
          title: Swap Short
        source:
          type: string
          title: Source
        effective_long:
          type: number
          title: Effective Long
        effective_short:
          type: number
          title: Effective Short
      type: object
      required:
        - symbol
        - swap_type
        - swap_long
        - swap_short
        - source
        - effective_long
        - effective_short
      title: SwapRateItem
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````