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

# List connectors

> Discovers connectors for a corridor. The gateway translates this to the
Connect GraphQL connectors query internally and returns a REST collection.




## OpenAPI

````yaml /api-reference/openapi.yaml get /connectors
openapi: 3.1.0
info:
  title: Zeam API Gateway
  version: 1.0.0
  description: >
    The Zeam API Gateway is the single, REST-based external surface for
    registered

    integrators. Every protected request carries a bearer access token (issued
    by the

    Zeam Auth Service) plus the application secret header `x-zeam-auth`. The
    gateway

    verifies the token, resolves the caller's association, and
    proxies/orchestrates the

    underlying Zeam services. Errors use RFC 7807 `application/problem+json`.
  license:
    name: Proprietary
    url: https://zeam.app
  contact:
    name: Zeam Platform Team
    url: https://zeam.app
servers:
  - url: https://api.zeam.app/v1
    description: Production
  - url: https://api.dev.zeam.paytec.io/v1
    description: Development
security:
  - BearerAuth: []
    ZeamAuth: []
tags:
  - name: Auth
    description: Public token issuance.
  - name: Wallets
    description: Association wallets, balances, and transactions.
  - name: Beneficiaries
    description: Association beneficiaries.
  - name: Connectors
    description: Connector discovery (Connect, surfaced as REST).
  - name: Quotes
    description: Connect quotes.
  - name: Intents
    description: Transaction intent initiation and state.
  - name: Payments
    description: Payment intent execution via Hydra.
  - name: Webhooks
    description: Association webhook registrations.
paths:
  /connectors:
    get:
      tags:
        - Connectors
      summary: List connectors
      description: >
        Discovers connectors for a corridor. The gateway translates this to the

        Connect GraphQL connectors query internally and returns a REST
        collection.
      operationId: listConnectors
      parameters:
        - name: country
          in: query
          required: true
          description: ISO alpha-2 country code (uppercase).
          schema:
            type: string
            pattern: ^[A-Z0-9_]+$
            example: ZW
        - name: method
          in: query
          required: true
          description: Payment method enum (uppercase).
          schema:
            type: string
            pattern: ^[A-Z0-9_]+$
            example: MOBILE_MONEY
        - name: direction
          in: query
          required: true
          description: Corridor direction.
          schema:
            type: string
            enum:
              - ON_RAMP
              - OFF_RAMP
            example: OFF_RAMP
      responses:
        '200':
          description: A page of connectors.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConnectorPage'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '422':
          $ref: '#/components/responses/ValidationError'
        '502':
          $ref: '#/components/responses/UpstreamError'
components:
  schemas:
    ConnectorPage:
      type: object
      required:
        - data
        - pagination
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Connector'
        pagination:
          $ref: '#/components/schemas/Pagination'
    Connector:
      type: object
      required:
        - id
        - name
      properties:
        id:
          type: string
        name:
          type: string
        description:
          type: string
        acceptedAsset:
          type: string
        destinationAsset:
          type: string
        direction:
          type: string
          example: OFF_RAMP
        method:
          type: string
          example: MOBILE_MONEY
        status:
          type: string
          example: ACTIVE
        requiresQuote:
          type: boolean
        isActive:
          type: boolean
        methodProvider:
          $ref: '#/components/schemas/ConnectorMethodProvider'
        fees:
          type: array
          items:
            $ref: '#/components/schemas/ConnectorFee'
        limits:
          type: array
          items:
            $ref: '#/components/schemas/ConnectorLimit'
    Pagination:
      type: object
      required:
        - nextCursor
        - hasMore
      properties:
        nextCursor:
          type:
            - string
            - 'null'
          description: Cursor for the next page, or null at the end.
        hasMore:
          type: boolean
    Problem:
      type: object
      required:
        - type
        - title
        - status
      description: RFC 7807 problem details.
      properties:
        type:
          type: string
          format: uri
          example: https://errors.zeam.app/validation-error
        title:
          type: string
          example: Validation Error
        status:
          type: integer
          example: 422
        detail:
          type: string
          example: The 'amount' field must be a positive decimal.
        instance:
          type: string
          example: /v1/quotes
        requestId:
          type: string
          example: 01J8Z6K3QW9F2
        errors:
          type: array
          items:
            type: object
            properties:
              field:
                type: string
              message:
                type: string
    ConnectorMethodProvider:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        description:
          type: string
        imageUrl:
          type: string
    ConnectorFee:
      type: object
      properties:
        fixedFeeCcy:
          type: string
        fixedFeeAmount:
          type: number
        variableFeeCurrency:
          type: string
        variableFeeAmount:
          type: number
        minFeeCurrency:
          type: string
        minFeeAmount:
          type: number
        maxFeeCurrency:
          type: string
        maxFeeAmount:
          type: number
        feeDeductedFromPayout:
          type: boolean
        tier:
          type: string
    ConnectorLimit:
      type: object
      properties:
        id:
          type: string
        scope:
          type: string
        type:
          type: string
        duration:
          type: number
        minValue:
          type: number
        maxValue:
          type: number
        currency:
          type: string
  responses:
    BadRequest:
      description: Malformed request.
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Problem'
    Unauthorized:
      description: Missing or invalid authentication.
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Problem'
    Forbidden:
      description: Authenticated but not permitted.
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Problem'
    ValidationError:
      description: Request failed validation.
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Problem'
    UpstreamError:
      description: A downstream service returned an unexpected error.
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Problem'
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Access token issued by POST /v1/auth/token.
    ZeamAuth:
      type: apiKey
      in: header
      name: x-zeam-auth
      description: Application secret (Kong apiKey) issued at registration.

````