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

# Get PIX routing info

> Retrieves available settlement banks and current routing configuration for a PIX fiat account.



## OpenAPI

````yaml openapi/account.yaml get /v1/businessAccount/banks/pix/{fiatAccountId}/routingInfo
openapi: 3.0.2
info:
  version: ${version}
  title: Core Functionality
  description: >
    All of Circle's APIs share a common set of core functionality that lets you
    manage your Circle Account in a programmatic way.


    With a Circle Account your business can deposit traditional money from 80+
    countries and seamlessly convert them into "digital currency dollars": USDC.
    You can then use USDC for everyday payments and treasury flows.
servers:
  - url: https://api-sandbox.circle.com
  - url: https://api.circle.com
security: []
tags:
  - name: Balances
    description: Get information on settled and unsettled balances.
  - name: Payouts
    description: Create and get information on 1st party payouts.
  - name: Wires
    description: >-
      Create, get instructions, and get information on 1st party bank accounts
      for wire transfers.
  - name: CUBIX
    description: Create and get information on CUBIX accounts.
  - name: PIX
    description: Create and get information on PIX accounts.
  - name: Transfers
    description: Create and get information on 1st party transfers.
  - name: Addresses
    description: Generate and get information on blockchain addresses.
  - name: Deposits
    description: Get information on 1st party deposits.
  - name: Payments
    description: Create, cancel, refund, and get updates on card payments.
  - name: Settlement Bank Routing
    description: View and manage settlement bank routing preferences for fiat accounts.
  - name: Reporting
    description: >-
      Retrieve transaction and balance reports, including ISO 20022 (CAMT.053)
      statements and managed-payment reports.
paths:
  /v1/businessAccount/banks/pix/{fiatAccountId}/routingInfo:
    get:
      tags:
        - Settlement Bank Routing
      summary: Get PIX routing info
      description: >-
        Retrieves available settlement banks and current routing configuration
        for a PIX fiat account.
      operationId: getPixRoutingInfo
      parameters:
        - $ref: '#/components/parameters/FiatAccountIdPath'
      responses:
        '200':
          description: Successfully retrieved routing information for the PIX account.
          headers:
            X-Request-Id:
              $ref: '#/components/headers/XRequestId'
          content:
            application/json:
              schema:
                title: GetPixRoutingInfoResponse
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/RoutingInfo'
              examples:
                response:
                  value:
                    data:
                      - currency: USD
                        inbound:
                          - bankLabel: customers_bank
                            bankName: Customers Bank
                            recommended: true
                            routed: false
                        outbound:
                          - bankLabel: customers_bank
                            bankName: Customers Bank
                            recommended: true
                            routed: false
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/NotAuthorized'
        '404':
          $ref: '#/components/responses/NotFoundFiatAccount'
      security:
        - bearerAuth: []
components:
  parameters:
    FiatAccountIdPath:
      name: fiatAccountId
      description: Universally unique identifier (UUID v4) of a fiat account.
      in: path
      required: true
      schema:
        type: string
        format: uuid
        example: b3d9d2d5-4c12-4946-a09d-953e82fae2b0
  headers:
    XRequestId:
      description: >-
        Universally unique identifier (UUID v4) for the request. Helpful for
        identifying a request when communicating with Circle support.
      schema:
        type: string
        format: uuid
        example: 2adba88e-9d63-44bc-b975-9b6ae3440dde
  schemas:
    RoutingInfo:
      type: object
      description: Routing information for a specific currency.
      required:
        - currency
        - inbound
        - outbound
      properties:
        currency:
          type: string
          description: The currency code (e.g., USD, BRL).
          example: USD
        inbound:
          type: array
          description: List of available banks for inbound (deposit) transactions.
          items:
            $ref: '#/components/schemas/RoutingBankOption'
        outbound:
          type: array
          description: List of available banks for outbound (withdrawal) transactions.
          items:
            $ref: '#/components/schemas/RoutingBankOption'
    RoutingBankOption:
      type: object
      description: A bank option available for routing.
      required:
        - bankLabel
        - bankName
        - recommended
        - routed
      properties:
        bankLabel:
          type: string
          description: Unique identifier for the bank.
          example: customers_bank
        bankName:
          type: string
          description: Human-readable bank name.
          example: Customers Bank
        recommended:
          type: boolean
          description: True if this is the system-recommended (default) bank.
          example: true
        routed:
          type: boolean
          description: True if this bank is currently being routed to.
          example: false
    Error:
      type: object
      required:
        - code
        - message
      properties:
        code:
          type: integer
          example: 400
        message:
          type: string
          example: Something went wrong.
  responses:
    BadRequest:
      description: The request cannot be processed due to a client error.
      headers:
        X-Request-Id:
          $ref: '#/components/headers/XRequestId'
      content:
        application/json:
          schema:
            type: object
            title: BadRequest
            required:
              - code
              - message
            properties:
              code:
                type: integer
                example: 400
              message:
                type: string
                example: Something went wrong.
            example:
              code: 400
              message: Bad request.
          examples:
            response:
              value:
                code: 400
                message: Bad request.
    NotAuthorized:
      description: >-
        The request has not been applied because it lacks valid authentication
        credentials.
      headers:
        X-Request-Id:
          $ref: '#/components/headers/XRequestId'
      content:
        application/json:
          schema:
            type: object
            title: NotAuthorized
            required:
              - code
              - message
            properties:
              code:
                type: integer
                example: 400
              message:
                type: string
                example: Something went wrong.
            example:
              code: 401
              message: Malformed authorization.
          examples:
            response:
              value:
                code: 401
                message: Malformed authorization.
    NotFoundFiatAccount:
      description: Fiat account not found or does not belong to the authenticated entity.
      headers:
        X-Request-Id:
          $ref: '#/components/headers/XRequestId'
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          examples:
            '1112':
              value:
                code: 1112
                message: Fiat account not found
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````