Stellar Paths API

Paths provide information about potential path payments. A path can be used to populate the necessary fields for a path payment operation.

Operations 2

GET /paths/strict-receive List Strict Receive Payment Paths #
GET /paths/strict-send List Strict Send Payment Paths #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/stellar-paths-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

stellar-paths-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Horizon Paths API
  version: 0.0.1
  summary: Horizon provides an HTTP API to data in the Stellar network. It ingests and re-serves the data produced by the Stellar network in a form that is easier to consume by the average application relative to the performance-oriented data representations used by Stellar Core. This API serves the bridge between apps and Stellar Core. Projects like wallets, decentralized exchanges, and asset issuers use Horizon to submit transactions, query an account balance, or stream events like transactions to an account.
  description: 'Horizon provides an HTTP API to data in the Stellar network. It ingests and re-serves the data produced by the Stellar network in a form that is easier to consume by the average application relative to the performance-oriented data representations used by [Stellar Core](https://developers.stellar.org/network/core-node). This API serves the bridge between apps and Stellar Core. Projects like wallets, decentralized exchanges, and asset issuers use Horizon to submit transactions, query an account balance, or stream events like transactions to an account.


    Horizon can be accessed via cURL, a browser, or one of the [Stellar SDKs](https://developers.stellar.org/docs/tools/sdks). To reduce the complexity of your project, we recommend you use an SDK instead of making direct API calls.


    This guide describes how to administer a production Horizon instance (refer to the [Developers'' Blog](https://www.stellar.org/developers-blog/a-new-sun-on-the-horizon) for some background on the performance and architectural improvements of this major version bump). For information about developing on the Horizon codebase, check out the [Development Guide](https://github.com/stellar/stellar-horizon/blob/main/DEVELOPING.md).


    Before we begin, it''s worth reiterating the sentiment echoed in the [Core Node](https://developers.stellar.org/network/core-node) documentation: **we do not endorse running Horizon backed by a standalone Stellar Core instance**, and especially not by a _validating_ Stellar Core. These are two separate concerns, and decoupling them is important for both reliability and performance. Horizon instead manages its own, pared-down version of Stellar Core optimized for its own subset of needs (we''ll refer to this as a "Captive Core" instance).

    '
  termsOfService: https://stellar.org/terms-of-service
  contact:
    name: Stellar Development Foundation
    url: https://stellar.org
    email: hello@stellar.org
  license:
    name: Apache 2.0
    identifier: Apache-2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
servers:
- url: https://horizon-testnet.stellar.org
  description: The Testnet Network
- url: https://horizon-futurenet.stellar.org
  description: The Futurenet network
tags:
- name: Paths
  description: Paths provide information about potential path payments. A path can be used to populate the necessary fields for a path payment operation.
paths:
  /paths/strict-receive:
    get:
      tags:
      - Paths
      summary: List Strict Receive Payment Paths
      description: 'The strict receive payment path endpoint lists the paths a payment can take based on the amount of an asset you want the recipient to receive. The destination asset amount stays constant, and the type and amount of an asset sent varies based on offers in the order books.


        For this search, Horizon loads a list of assets available to the sender (based on `source_account` or `source_assets`) and displays the possible paths from the different source assets to the destination asset. Only paths that satisfy the `destination_amount` are returned.

        '
      operationId: ListStrictReceivePaymentPaths
      parameters:
      - $ref: '#/components/parameters/SourceAccountParam'
      - $ref: '#/components/parameters/SourceAssetsParam'
      - $ref: '#/components/parameters/DestinationAssetTypeParam'
      - $ref: '#/components/parameters/DestinationAssetIssuerParam'
      - $ref: '#/components/parameters/DestinationAssetCodeParam'
      - $ref: '#/components/parameters/DestinationAmountParam'
      x-supports-streaming: true
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Path'
              examples:
                ListStrictRecievePaymentPaths:
                  $ref: '#/components/examples/ListStrictReceivePaymentPaths'
      x-codeSamples:
      - lang: Shell
        source: 'curl https://horizon-testnet.stellar.org/paths/strict-receive?\

          source_assets=CNY:GAREELUB43IRHWEASCFBLKHURCGMHE5IF6XSE7EXDLACYHGRHM43RFOX&\

          destination_asset_type=credit_alphanum4&\

          destination_asset_code=BB1&\

          destination_asset_issuer=GD5J6HLF5666X4AZLTFTXLY46J5SW7EXRKBLEYPJP33S33MXZGV6CWFN&\

          destination_amount=5

          '
      - lang: JavaScript
        label: '@stellar/stellar-sdk'
        source: "var StellarSdk = require(\"stellar-sdk\");\nvar server = new StellarSdk.Horizon.Server(\n  \"https://horizon-testnet.stellar.org\",\n);\n\nserver\n  .strictReceivePaths(\n    [\n      new StellarSdk.Asset(\n        \"CNY\",\n        \"GAREELUB43IRHWEASCFBLKHURCGMHE5IF6XSE7EXDLACYHGRHM43RFOX\",\n      ),\n    ],\n    new StellarSdk.Asset(\n      \"BB1\",\n      \"GD5J6HLF5666X4AZLTFTXLY46J5SW7EXRKBLEYPJP33S33MXZGV6CWFN\",\n    ),\n    \"5\",\n  )\n  .call()\n  .then(function (resp) {\n    console.log(resp);\n  })\n  .catch(function (err) {\n    console.error(err);\n  });\n"
      - lang: Python
        label: stellar_sdk
        source: "from stellar_sdk import Server, Asset\nserver = Server(\"https://horizon-testnet.stellar.org\")\n\nresponse = server.strict_receive_paths(\n    source=[\n        Asset(\"CNY\", \"GAREELUB43IRHWEASCFBLKHURCGMHE5IF6XSE7EXDLACYHGRHM43RFOX\")\n    ],\n    destination_asset=Asset(\n        \"BB1\",\n        \"GD5J6HLF5666X4AZLTFTXLY46J5SW7EXRKBLEYPJP33S33MXZGV6CWFN\"\n    ),\n    destination_amount=\"5\"\n).call()\n\nprint(response)\n"
  /paths/strict-send:
    get:
      tags:
      - Paths
      summary: List Strict Send Payment Paths
      description: 'The strict send payment path endpoint lists the paths a payment can take based on the amount of an asset you want to send. The source asset amount stays constant, and the type and amount of an asset received varies based on offers in the order books.


        For this search, Horizon loads a list of assets that the recipient can receive (based on `destination_account` or `destination_assets`) and displays the possible paths from the different source assets to the destination asset. Only paths that satisfy the `source_amount` are returned.

        '
      operationId: ListStrictSendPaymentPaths
      parameters:
      - $ref: '#/components/parameters/SourceAssetTypeParam'
      - $ref: '#/components/parameters/SourceAssetIssuerParam'
      - $ref: '#/components/parameters/SourceAssetCodeParam'
      - $ref: '#/components/parameters/SourceAmountParam'
      - $ref: '#/components/parameters/DestinationAccountParam'
      - $ref: '#/components/parameters/DestinationAssetsParam'
      x-supports-streaming: true
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Path'
              examples:
                ListStrictSendPaymentPaths:
                  $ref: '#/components/examples/ListStrictSendPaymentPaths'
      x-codeSamples:
      - lang: Shell
        source: 'curl https://horizon-testnet.stellar.org/paths/strict-send?\

          source_asset_type=credit_alphanum4&\

          source_asset_code=BRL&\

          source_asset_issuer=GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP&\

          source_amount=400&\

          destination_account=GAYOLLLUIZE4DZMBB2ZBKGBUBZLIOYU6XFLW37GBP2VZD3ABNXCW4BVA

          '
      - lang: JavaScript
        label: '@stellar/stellar-sdk'
        source: "var StellarSdk = require(\"@stellar/stellar-sdk\");\nvar server = new StellarSdk.Horizon.Server(\n  \"https://horizon-testnet.stellar.org\",\n);\n\nserver\n  .strictSendPaths(\n    new StellarSdk.Asset(\n      \"BRL\",\n      \"GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP\",\n    ),\n    \"400\",\n    \"GAYOLLLUIZE4DZMBB2ZBKGBUBZLIOYU6XFLW37GBP2VZD3ABNXCW4BVA\",\n  )\n  .call()\n  .then(function (resp) {\n    console.log(resp);\n  })\n  .catch(function (err) {\n    console.error(err);\n  });\n"
      - lang: Python
        label: stellar_sdk
        source: "from stellar_sdk import Server, Asset\nserver = Server(\"https://horizon-testnet.stellar.org\")\n\nresponse = server.strict_send_paths(\n    source_asset=Asset(\n        \"BRL\",\n        \"GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP\"\n    ),\n    source_amount=\"400\",\n    destination=\"GAYOLLLUIZE4DZMBB2ZBKGBUBZLIOYU6XFLW37GBP2VZD3ABNXCW4BVA\"\n).call()\n\nprint(response)\n"
components:
  parameters:
    SourceAssetTypeParam:
      name: source_asset_type
      in: query
      required: true
      description: The type for the source asset. Either `native`, `credit_alphanum4`, or `credit_alphanum12`.
      schema:
        type: string
        enum:
        - native
        - credit_alphanum4
        - credit_alphanum12
    DestinationAssetIssuerParam:
      name: destination_asset_issuer
      in: query
      required: false
      description: The Stellar address of the issuer of the destination asset. Required if the `destination_asset_type` is not `native`.
      schema:
        type: string
        example: GDUKMGUGDZQK6YHYA5Z6AY2G4XDSZPSZ3SW5UN3ARVMO6QSRDWP5YLEX
    DestinationAccountParam:
      name: destination_account
      in: query
      required: false
      description: The Stellar address of the receiver. Any returned path must end with an asset that the recipient can receive. Using either `source_account` or `source_assets` as an argument is required for strict send path payments.
      schema:
        type: string
        example: GDMQQNJM4UL7QIA66P7R2PZHMQINWZBM77BEBMHLFXD5JEUAHGJ7R4JZ
    SourceAccountParam:
      name: source_account
      in: query
      required: false
      description: The Stellar address of the sender. Any returned path must start with an asset that the sender holds. Using either `source_account` or `source_assets` as an argument is required for strict receive path payments.
      schema:
        type: string
        example: GDMQQNJM4UL7QIA66P7R2PZHMQINWZBM77BEBMHLFXD5JEUAHGJ7R4JZ
    SourceAssetCodeParam:
      name: source_asset_code
      in: query
      required: false
      description: The code for the source asset. Required if the `source_asset_type` is not `native`.
      schema:
        type: string
        example: USD
    SourceAssetIssuerParam:
      name: source_asset_issuer
      in: query
      required: false
      description: The Stellar address of the issuer of the source asset. Required if the `source_asset_type` is not `native`.
      schema:
        type: string
        example: GDMQQNJM4UL7QIA66P7R2PZHMQINWZBM77BEBMHLFXD5JEUAHGJ7R4JZ
    DestinationAssetsParam:
      name: destination_assets
      in: query
      required: false
      description: 'A comma-separated list of assets that the recipient can receive. Any returned path must end with an asset in this list. Each asset is formatted as `CODE:ISSUER_ACCOUNT`. For example: `USD:GDUKMGUGDZQK6YHYA5Z6AY2G4XDSZPSZ3SW5UN3ARVMO6QSRDWP5YLEX`. Using either `source_account` or `source_assets` as an argument is required for strict send path payments.'
      schema:
        type: string
        example: CNY:GAREELUB43IRHWEASCFBLKHURCGMHE5IF6XSE7EXDLACYHGRHM43RFOX
    SourceAmountParam:
      name: source_amount
      in: query
      required: true
      description: The amount of the source asset that should be sent.
      schema:
        type: string
        example: '5'
    DestinationAssetCodeParam:
      name: destination_asset_code
      in: query
      required: false
      description: The code for the destination asset. Required if the `destination_asset_type` is not `native`.
      schema:
        type: string
        example: USD
    SourceAssetsParam:
      name: source_assets
      in: query
      required: false
      description: 'A comma-separated list of assets available to the sender. Any returned path must start with an asset in this list. Each asset is formatted as `CODE:ISSUER_ACCOUNT`. For example: `USD:GDUKMGUGDZQK6YHYA5Z6AY2G4XDSZPSZ3SW5UN3ARVMO6QSRDWP5YLEX`. Using either `source_account` or `source_assets` as an argument is required for strict receive path payments.'
      schema:
        type: string
        example: CNY:GAREELUB43IRHWEASCFBLKHURCGMHE5IF6XSE7EXDLACYHGRHM43RFOX
    DestinationAmountParam:
      name: destination_amount
      in: query
      required: true
      description: The amount of the destination asset that should be received.
      schema:
        type: string
        example: '5'
    DestinationAssetTypeParam:
      name: destination_asset_type
      in: query
      required: true
      description: The type for the destination asset. Either `native`, `credit_alphanum4`, or `credit_alphanum12`.
      schema:
        type: string
        enum:
        - native
        - credit_alphanum4
        - credit_alphanum12
  schemas:
    Path:
      type: object
      properties:
        _embedded:
          type: object
          properties:
            records:
              type: array
              items:
                type: object
                properties:
                  source_asset_type:
                    type: string
                  source_asset_code:
                    type: string
                  source_asset_issuer:
                    $ref: '#/components/schemas/address'
                  source_amount:
                    type: string
                  destination_asset_type:
                    type: string
                  destination_asset_code:
                    type: string
                  destination_asset_issuer:
                    $ref: '#/components/schemas/address'
                  destination_amount:
                    type: string
                  path:
                    type: array
                    items:
                      $ref: '#/components/schemas/schemas-Asset'
              required:
              - source_asset_type
              - source_amount
              - destination_asset_type
              - destination_amount
              - path
    schemas-Asset:
      type: object
      properties:
        asset_type:
          type: string
        asset_code:
          type: string
        asset_issuer:
          $ref: '#/components/schemas/address'
      required:
      - asset_type
    address:
      type: string
      pattern: G[A-Z0-9]{55}
  examples:
    ListStrictSendPaymentPaths:
      value:
        _embedded:
          records:
          - source_asset_type: credit_alphanum4
            source_asset_code: BRL
            source_asset_issuer: GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP
            source_amount: '400.0000000'
            destination_asset_type: credit_alphanum4
            destination_asset_code: BB1
            destination_asset_issuer: GD5J6HLF5666X4AZLTFTXLY46J5SW7EXRKBLEYPJP33S33MXZGV6CWFN
            destination_amount: '87.6373649'
            path:
            - asset_type: native
          - source_asset_type: credit_alphanum4
            source_asset_code: BRL
            source_asset_issuer: GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP
            source_amount: '400.0000000'
            destination_asset_type: credit_alphanum4
            destination_asset_code: BB1
            destination_asset_issuer: GD5J6HLF5666X4AZLTFTXLY46J5SW7EXRKBLEYPJP33S33MXZGV6CWFN
            destination_amount: '36.0841597'
            path:
            - asset_type: native
            - asset_type: credit_alphanum4
              asset_code: EURT
              asset_issuer: GAP5LETOV6YIE62YAM56STDANPRDO7ZFDBGSNHJQIYGGKSMOZAHOOS2S
          - source_asset_type: credit_alphanum4
            source_asset_code: BRL
            source_asset_issuer: GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP
            source_amount: '400.0000000'
            destination_asset_type: credit_alphanum4
            destination_asset_code: BB1
            destination_asset_issuer: GD5J6HLF5666X4AZLTFTXLY46J5SW7EXRKBLEYPJP33S33MXZGV6CWFN
            destination_amount: '16.2264000'
            path:
            - asset_type: native
            - asset_type: credit_alphanum4
              asset_code: BTC
              asset_issuer: GBVOL67TMUQBGL4TZYNMY3ZQ5WGQYFPFD5VJRWXR72VA33VFNL225PL5
          - source_asset_type: credit_alphanum4
            source_asset_code: BRL
            source_asset_issuer: GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP
            source_amount: '400.0000000'
            destination_asset_type: credit_alphanum4
            destination_asset_code: BB1
            destination_asset_issuer: GD5J6HLF5666X4AZLTFTXLY46J5SW7EXRKBLEYPJP33S33MXZGV6CWFN
            destination_amount: '13.9424750'
            path:
            - asset_type: native
            - asset_type: credit_alphanum4
              asset_code: USD
              asset_issuer: GDUKMGUGDZQK6YHYA5Z6AY2G4XDSZPSZ3SW5UN3ARVMO6QSRDWP5YLEX
          - source_asset_type: credit_alphanum4
            source_asset_code: BRL
            source_asset_issuer: GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP
            source_amount: '400.0000000'
            destination_asset_type: credit_alphanum4
            destination_asset_code: CNY
            destination_asset_issuer: GAREELUB43IRHWEASCFBLKHURCGMHE5IF6XSE7EXDLACYHGRHM43RFOX
            destination_amount: '499.8384123'
            path:
            - asset_type: native
            - asset_type: credit_alphanum4
              asset_code: ULT
              asset_issuer: GC76RMFNNXBFDSJRBXCABWLHXDK4ITVQSMI56DC2ZJVC3YOLLPCKKULT
          - source_asset_type: credit_alphanum4
            source_asset_code: BRL
            source_asset_issuer: GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP
            source_amount: '400.0000000'
            destination_asset_type: credit_alphanum4
            destination_asset_code: CNY
            destination_asset_issuer: GAREELUB43IRHWEASCFBLKHURCGMHE5IF6XSE7EXDLACYHGRHM43RFOX
            destination_amount: '498.1069097'
            path:
            - asset_type: native
          - source_asset_type: credit_alphanum4
            source_asset_code: BRL
            source_asset_issuer: GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP
            source_amount: '400.0000000'
            destination_asset_type: credit_alphanum4
            destination_asset_code: CNY
            destination_asset_issuer: GAREELUB43IRHWEASCFBLKHURCGMHE5IF6XSE7EXDLACYHGRHM43RFOX
            destination_amount: '494.5886542'
            path:
            - asset_type: native
            - asset_type: credit_alphanum4
              asset_code: XCN
              asset_issuer: GCNY5OXYSY4FKHOPT2SPOQZAOEIGXB5LBYW3HVU3OWSTQITS65M5RCNY
          - source_asset_type: credit_alphanum4
            source_asset_code: BRL
            source_asset_issuer: GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP
            source_amount: '400.0000000'
            destination_asset_type: credit_alphanum4
            destination_asset_code: CNY
            destination_asset_issuer: GAREELUB43IRHWEASCFBLKHURCGMHE5IF6XSE7EXDLACYHGRHM43RFOX
            destination_amount: '490.0780598'
            path:
            - asset_type: native
            - asset_type: credit_alphanum4
              asset_code: USD
              asset_issuer: GDUKMGUGDZQK6YHYA5Z6AY2G4XDSZPSZ3SW5UN3ARVMO6QSRDWP5YLEX
          - source_asset_type: credit_alphanum4
            source_asset_code: BRL
            source_asset_issuer: GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP
            source_amount: '400.0000000'
            destination_asset_type: credit_alphanum4
            destination_asset_code: CNY
            destination_asset_issuer: GAREELUB43IRHWEASCFBLKHURCGMHE5IF6XSE7EXDLACYHGRHM43RFOX
            destination_amount: '280.2909824'
            path:
            - asset_type: native
            - asset_type: credit_alphanum4
              asset_code: USD
              asset_issuer: GBUYUAI75XXWDZEKLY66CFYKQPET5JR4EENXZBUZ3YXZ7DS56Z4OKOFU
          - source_asset_type: credit_alphanum4
            source_asset_code: BRL
            source_asset_issuer: GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP
            source_amount: '400.0000000'
            destination_asset_type: credit_alphanum4
            destination_asset_code: EURT
            destination_asset_issuer: GAP5LETOV6YIE62YAM56STDANPRDO7ZFDBGSNHJQIYGGKSMOZAHOOS2S
            destination_amount: '63.1883029'
            path:
            - asset_type: native
            - asset_type: credit_alphanum4
              asset_code: USD
              asset_issuer: GDUKMGUGDZQK6YHYA5Z6AY2G4XDSZPSZ3SW5UN3ARVMO6QSRDWP5YLEX
          - source_asset_type: credit_alphanum4
            source_asset_code: BRL
            source_asset_issuer: GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP
            source_amount: '400.0000000'
            destination_asset_type: credit_alphanum4
            destination_asset_code: EURT
            destination_asset_issuer: GAP5LETOV6YIE62YAM56STDANPRDO7ZFDBGSNHJQIYGGKSMOZAHOOS2S
            destination_amount: '63.1472796'
            path:
            - asset_type: native
          - source_asset_type: credit_alphanum4
            source_asset_code: BRL
            source_asset_issuer: GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP
            source_amount: '400.0000000'
            destination_asset_type: credit_alphanum4
            destination_asset_code: EURT
            destination_asset_issuer: GAP5LETOV6YIE62YAM56STDANPRDO7ZFDBGSNHJQIYGGKSMOZAHOOS2S
            destination_amount: '62.9386895'
            path:
            - asset_type: native
            - asset_type: credit_alphanum4
              asset_code: NGNT
              asset_issuer: GAWODAROMJ33V5YDFY3NPYTHVYQG7MJXVJ2ND3AOGIHYRWINES6ACCPD
          - source_asset_type: credit_alphanum4
            source_asset_code: BRL
            source_asset_issuer: GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP
            source_amount: '400.0000000'
            destination_asset_type: credit_alphanum4
            destination_asset_code: EURT
            destination_asset_issuer: GAP5LETOV6YIE62YAM56STDANPRDO7ZFDBGSNHJQIYGGKSMOZAHOOS2S
            destination_amount: '6.7649849'
            path:
            - asset_type: native
            - asset_type: credit_alphanum4
              asset_code: WSD
              asset_issuer: GDSVWEA7XV6M5XNLODVTPCGMAJTNBLZBXOFNQD3BNPNYALEYBNT6CE2V
          - source_asset_type: credit_alphanum4
            source_asset_code: BRL
            source_asset_issuer: GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP
            source_amount: '400.0000000'
            destination_asset_type: credit_alphanum4
            destination_asset_code: EURT
            destination_asset_issuer: GAP5LETOV6YIE62YAM56STDANPRDO7ZFDBGSNHJQIYGGKSMOZAHOOS2S
            destination_amount: '0.0498106'
            path:
            - asset_type: native
            - asset_type: credit_alphanum4
              asset_code: CNY
              asset_issuer: GAREELUB43IRHWEASCFBLKHURCGMHE5IF6XSE7EXDLACYHGRHM43RFOX
          - source_asset_type: credit_alphanum4
            source_asset_code: BRL
            source_asset_issuer: GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP
            source_amount: '400.0000000'
            destination_asset_type: credit_alphanum4
            destination_asset_code: NGNT
            destination_asset_issuer: GAWODAROMJ33V5YDFY3NPYTHVYQG7MJXVJ2ND3AOGIHYRWINES6ACCPD
            destination_amount: '25155.3452034'
            path:
            - asset_type: native
            - asset_type: credit_alphanum4
              asset_code: USD
              asset_issuer: GDUKMGUGDZQK6YHYA5Z6AY2G4XDSZPSZ3SW5UN3ARVMO6QSRDWP5YLEX
          - source_asset_type: credit_alphanum4
            source_asset_code: BRL
            source_asset_issuer: GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP
            source_amount: '400.0000000'
            destination_asset_type: credit_alphanum4
            destination_asset_code: NGNT
            destination_asset_issuer: GAWODAROMJ33V5YDFY3NPYTHVYQG7MJXVJ2ND3AOGIHYRWINES6ACCPD
            destination_amount: '25146.7108397'
            path:
            - asset_type: native
          - source_asset_type: credit_alphanum4
            source_asset_code: BRL
            source_asset_issuer: GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP
            source_amount: '400.0000000'
            destination_asset_type: credit_alphanum4
            destination_asset_code: NGNT
            destination_asset_issuer: GAWODAROMJ33V5YDFY3NPYTHVYQG7MJXVJ2ND3AOGIHYRWINES6ACCPD
            destination_amount: '24986.8616583'
            path:
            - asset_type: native
            - asset_type: credit_alphanum4
              asset_code: BTC
              asset_issuer: GAUTUYY2THLF7SGITDFMXJVYH3LHDSMGEAKSBU267M2K7A3W543CKUEF
          - source_asset_type: credit_alphanum4
            source_asset_code: BRL
            source_asset_issuer: GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP
            source_amount: '400.0000000'
            destination_asset_type: credit_alphanum4
            destination_asset_code: NGNT
            destination_asset_issuer: GAWODAROMJ33V5YDFY3NPYTHVYQG7MJXVJ2ND3AOGIHYRWINES6ACCPD
            destination_amount: '24948.9784843'
            path:
            - asset_type: native
            - asset_type: credit_alphanum4
              asset_code: XCN
              asset_issuer: GCNY5OXYSY4FKHOPT2SPOQZAOEIGXB5LBYW3HVU3OWSTQITS65M5RCNY
          - source_asset_type: credit_alphanum4
            source_asset_code: BRL
            source_asset_issuer: GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP
            source_amount: '400.0000000'
            destination_asset_type: credit_alphanum4
            destination_asset_code: NGNT
            destination_asset_issuer: GAWODAROMJ33V5YDFY3NPYTHVYQG7MJXVJ2ND3AOGIHYRWINES6ACCPD
            destination_amount: '24930.7854717'
            path:
            - asset_type: native
            - asset_type: credit_alphanum4
              asset_code: EURT
              asset_issuer: GAP5LETOV6YIE62YAM56STDANPRDO7ZFDBGSNHJQIYGGKSMOZAHOOS2S
          - source_asset_type: credit_alphanum4
            source_asset_code: BRL
            source_asset_issuer: GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP
            source_amount: '400.0000000'
            destination_asset_type: credit_alphanum4
            destination_asset_code: USD
            destination_asset_issuer: GDUKMGUGDZQK6YHYA5Z6AY2G4XDSZPSZ3SW5UN3ARVMO6QSRDWP5YLEX
            destination_amount: '69.7123752'
            path:
            - asset_type: native
          - source_asset_type: credit_alphanum4
            source_asset_code: BRL
            source_asset_issuer: GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP
            source_amount: '400.0000000'
            destination_asset_type: credit_alphanum4
            destination_asset_code: USD
            destination_asset_issuer: GDUKMGUGDZQK6YHYA5Z6AY2G4XDSZPSZ3SW5UN3ARVMO6QSRDWP5YLEX
            destination_amount: '68.9785993'
            path:
            - asset_type: native
            - asset_type: credit_alphanum4
              asset_code: EURT
              asset_issuer: GAP5LETOV6YIE62YAM56STDANPRDO7ZFDBGSNHJQIYGGKSMOZAHOOS2S
          - source_asset_type: credit_alphanum4
            source_asset_code: BRL
            source_asset_issuer: GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP
            source_amount: '400.0000000'
            destination_asset_type: credit_alphanum4
            destination_asset_code: USD
            destination_asset_issuer: GDUKMGUGDZQK6YHYA5Z6AY2G4XDSZPSZ3SW5UN3ARVMO6QSRDWP5YLEX
            destination_amount: '68.6731854'
            path:
            - asset_type: native
            - asset_type: credit_alphanum4
              asset_code: NGNT
              asset_issuer: GAWODAROMJ33V5YDFY3NPYTHVYQG7MJXVJ2ND3AOGIHYRWINES6ACCPD
          - source_asset_type: credit_alphanum4
            source_asset_code: BRL
            source_asset_issuer: GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP
            source_amount: '400.0000000'
            destination_asset_type: credit_alphanum4
            destination_asset_code: USD
            destination_asset_issuer: GDUKMGUGDZQK6YHYA5Z6AY2G4XDSZPSZ3SW5UN3ARVMO6QSRDWP5YLEX
            destination_amount: '63.5394120'
            path:
            - asset_type: native
            - asset_type: credit_alphanum4
              asset_code: USD
              asset_issuer: GBUYUAI75XXWDZEKLY66CFYKQPET5JR4EENXZBUZ3YXZ7DS56Z4OKOFU
          - source_asset_type: credit_alphanum4
            source_asset_code: BRL
            source_asset_issuer: GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP
            source_amount: '400.0000000'
            destination_asset_type: credit_alphanum4
            destination_asset_code: USD
            destination_asset_issuer: GDUKMGUGDZQK6YHYA5Z6AY2G4XDSZPSZ3SW5UN3ARVMO6QSRDWP5YLEX
            destination_amount: '39.6691360'
            path:
            - asset_type: native
            - asset_type: credit_alphanum4
              asset_code: HEX
              asset_issuer: GCGBSZ3DSSH6PRHCOD4JXFNNZXCTKBDFRT4JR2HIAC6FQZU4YK7GPHEX
          - source_asset_type: credit_alphanum4
            source_asset_code: BRL
            source_asset_issuer: GDVKY2GU2DRXWTBEYJJWSFXIGBZV6AZNBVVSUHEPZI54LIS6BA7DVVSP
            source_amount: '400.0000000'
            destination_asset_type: native
            destination_amount: '1226.9231099'
            path: []
    ListStrictReceivePaymentPaths:
      value:
        _embedded:
          records:
          - source_asset_type: credit_alphanum4
            source_asset_code: CNY
            source_asset_issuer: GAREELUB43IRHWEASCFBLKHURCGMHE5IF6XSE7EXDLACYHGRHM43RFOX
            source_amount: '28.9871131'
            destination_asset_type: credit_alphanum4
            destination_asset_code: BB1
            destination_asset_issuer: GD5J6HLF5666X4AZLTFTXLY46J5SW7EXRKBLEYPJP33S33MXZGV6CWFN
            destination_amount: '5.0000000'
            path:
            - asset_type: credit_alphanum4
              asset_code: XCN
              asset_issuer: GCNY5OXYSY4FKHOPT2SPOQZAOEIGXB5LBYW3HVU3OWSTQITS65M5RCNY
            - asset_type: native
          - source_asset_type: credit_alphanum4
            source_asset_code: CNY
            source_asset_issuer: GAREELUB43IRHWEASCFBLKHURCGMHE5IF6XSE7EXDLACYHGRHM43RFOX
            source_amount: '29.0722784'
            destination_asset_type: credit_alphanum4
            destination_asset_code: BB1
            destination_asset_issuer: GD5J6HLF5666X4AZLTFTXLY46J5SW7EXRKBLEYPJP33S33MXZGV6CWFN
            destination_amount: '5.0000000'
            path:
            - asset_type: credit_alphanum4
              asset_code: ULT
              asset_issuer: GC76RMFNNXBFDSJRBXCABWLHXDK4ITVQSMI56DC2ZJVC3YOLLPCKKULT
            - asset_type: native
          - source_asset_type: credit_alphanum4
            source_asset_code: CNY
            source_asset_issuer: GAREELUB43IRHWEASCFBLKHURCGMHE5IF6XSE7EXDLACYHGRHM43RFOX
            source_amount: '29.4000002'
            destination_asset_type: credit_alphanum4
            destination_asset_code: BB1
            destination_asset_issuer: GD5J6HLF5666X4AZLTFTXLY46J5SW7EXRKBLEYPJP33S33MXZGV6CWFN
            destination_amount: '5.0000000'
            path:
            - asset_type: native
          - source_asset_type: credit_alphanum4
            source_asset_code: CNY
            source_asset_issuer: GAREELUB43IRHWEASCFBLKHURCGMHE5IF6XSE7EXDLACYHGRHM43RFOX
            source_amount: '31.8955888'
            destination_asset_type: credit_alphanum4
            destination_asset_code: BB1
            destination_asset_issuer: GD5J6HLF5666X4AZLTFTXLY46J5SW7EXRKBLEYPJP33S33MXZGV6CWFN
            destination_amount: '5.0000000'
            path:
            - asset_type: credit_alphanum4
 

# --- truncated at 32 KB (33 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/stellar/refs/heads/main/openapi/stellar-paths-api-openapi.yml