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

# List payment routes

> Lists available payment data-plane routes with provider economics, health, and KYC policy.



## OpenAPI

````yaml /api-reference/openapi.json get /api/agent/routes
openapi: 3.1.0
info:
  title: Open Rails API
  version: 0.1.0
  description: >-
    Hosted checkout, provider routing, runtime schemas, and normalized webhook
    examples for Open Rails merchants and agents.
servers:
  - url: https://dash.getopenrails.com
    description: Production dashboard and API origin
security: []
tags:
  - name: Gateway
  - name: Agent
  - name: Routing
  - name: Webhooks
paths:
  /api/agent/routes:
    get:
      tags:
        - Routing
      summary: List payment routes
      description: >-
        Lists available payment data-plane routes with provider economics,
        health, and KYC policy.
      operationId: listAgentRoutes
      responses:
        '200':
          description: Available routes
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RoutesResponse'
components:
  schemas:
    RoutesResponse:
      type: object
      required:
        - ok
        - routes
      properties:
        ok:
          type: boolean
          enum:
            - true
        routes:
          type: array
          items:
            $ref: '#/components/schemas/RouteSummary'
    RouteSummary:
      type: object
      required:
        - id
        - label
        - integrationId
        - integrationLabel
        - kind
        - network
        - asset
        - score
        - health
        - payerLabel
        - eta
        - buyerFeeRate
        - gatewayFeeRate
        - providerCostRate
        - kycPolicy
      properties:
        id:
          type: string
        label:
          type: string
        integrationId:
          type: string
        integrationLabel:
          type: string
        kind:
          $ref: '#/components/schemas/RouteKind'
        network:
          type: string
        asset:
          type: string
        score:
          type: number
        health:
          type: string
          enum:
            - live
            - degraded
            - standby
        payerLabel:
          type: string
        eta:
          type: string
        buyerFeeRate:
          type: number
        gatewayFeeRate:
          type: number
        providerCostRate:
          type: number
        kycPolicy:
          type: string
    RouteKind:
      type: string
      enum:
        - card
        - wallet
        - local

````