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

# Get network providers

> Retrieve all network providers with their capabilities for the organization.



## OpenAPI

````yaml https://sandbox-api.borderless.xyz/v1/api-json get /v1/organizations/network
openapi: 3.0.0
info:
  title: Borderless API
  description: The Borderless API documentation.
  version: '1.0'
  contact: {}
servers:
  - url: https://sandbox-api.borderless.xyz
security: []
tags: []
paths:
  /v1/organizations/network:
    get:
      tags:
        - Network
      summary: Get network providers
      description: >-
        Retrieve all network providers with their capabilities for the
        organization.
      operationId: NetworkController_getNetwork
      parameters:
        - name: status
          required: false
          in: query
          description: >-
            Filter providers by status. Accepts a single value or repeated keys
            (e.g. `?status=active&status=pending`).
          schema:
            type: array
            items:
              $ref: '#/components/schemas/PFIConfigStatus'
      responses:
        '200':
          description: List of network providers.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/NetworkProviderEntity'
      security:
        - bearer: []
components:
  schemas:
    PFIConfigStatus:
      type: string
      enum:
        - active
        - inactive
        - not_available
    NetworkProviderEntity:
      type: object
      properties:
        id:
          type: string
          description: Provider identifier (organizationId|pfiName)
        name:
          allOf:
            - $ref: '#/components/schemas/PFIName'
        status:
          allOf:
            - $ref: '#/components/schemas/PFIConfigStatus'
        credentials:
          $ref: '#/components/schemas/NetworkCredentialsEntity'
        supportsCustodialBalance:
          type: boolean
          description: >-
            Whether the provider holds an org-owned custodial balance (asset or
            fiat) that can absorb deposits and serve withdrawals.
        supportsTransactionImport:
          type: boolean
          description: >-
            Whether the provider supports syncing off-platform transaction
            history via its API (gates the Sync Transactions action).
        complianceProfiles:
          type: array
          items:
            $ref: '#/components/schemas/ComplianceType'
        options:
          type: array
          description: >-
            Provider options keyed by operation type (deposit, withdrawal,
            virtualAccount, exchange)
          items:
            type: object
      required:
        - id
        - name
        - status
        - credentials
        - supportsCustodialBalance
        - supportsTransactionImport
        - complianceProfiles
        - options
    PFIName:
      type: string
      enum:
        - Bridge
        - Koywe
        - Kotanipay
        - Hercle
        - Bitso
        - Yellowcard
        - TraceFinance
        - HoneyCoin
        - BlindPay
        - Finity
        - Infinia
        - Walapay
        - Abra
        - Yativo
        - Capa
        - Bivo
        - Cobre
        - Avenia
        - Brale
        - BVNK
        - CoinsPH
        - Iron
        - Enigma
        - Juicyway
        - Kira
        - TripleA
        - Onmeta
        - Alfred
        - Demo
        - CrissCross
    NetworkCredentialsEntity:
      type: object
      properties:
        customerOwned:
          type: boolean
          description: Whether the organization uses customer-owned credentials
        configured:
          type: boolean
          description: Whether credentials have been configured for this provider
      required:
        - customerOwned
        - configured
    ComplianceType:
      type: string
      enum:
        - Bridge_base
        - Bridge_sepa
        - Koywe_base
        - Kotanipay_base
        - Bitso_base
        - Yellowcard_base
        - TraceFinance_base
        - HoneyCoin_base
        - BlindPay_base
        - BlindPay_enhanced
        - Finity_base
        - Ares_base
        - Hercle_base
        - Infinia_base
        - Walapay_base
        - Yativo_base
        - Capa_base
        - Bivo_base
        - Cobre_base
        - Brale_base
        - Juicyway_base
        - Onmeta_base
        - Onmeta_ind
        - Alfred_base
        - Demo_base
        - CrissCross_base
        - TripleA_base
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````