Minit Money Enterprise
  • Welcome
  • Introduction
    • What is RaaS?
  • Get Started
  • Dashboard
  • RaaS API
    • API Key
    • Health Check
    • Corridors
      • List all Corridors
      • Corridor Details
      • Payout Methods
      • Payout Requirements
  • Senders
    • New Sender
    • Fetch Details
    • Update Details
    • Delete Sender
    • KYC
  • Beneficiaries
    • New Beneficiary
    • Fetch Details
    • Update Details
    • Delete Beneficiary
    • KYC
  • Quote
    • New Quotes
    • Fetch Quote
  • Transactions
    • New Transaction
    • Fetch Transaction
    • Status
  • Webhooks
    • Subscribe
    • Delete
  • Resources
    • Change log
    • FAQs
    • About
Powered by GitBook
On this page
  1. RaaS API
  2. Corridors

List all Corridors

Get Corridors

GET /corridors

Description

This endpoint retrieves a list of all corridors available.

Headers

Make sure to include the following headers in your request:

  • x-api-key: Your unique API key.

  • x-tenant-key: Your specific tenant key.

For more details, please refer to the API Key Section.

Response

[
    {
        "uid": "acdbd8cb-58d9-4b20-b4cf-a6f682b89101",
        "status": "ACTIVE",
        "country_source_name": "Qatar",
        "country_source_code": "634",
        "country_source_iso3": "QAT",
        "country_destination_name": "Philippines",
        "country_destination_code": "608",
        "country_destination_iso3": "PHL",
        "currencies": [
            {
                "currency_uid": "8007e457-2eef-448d-9ae2-cbf7b3ef764d",
                "source_currency_code": "QAR",
                "source_currency_name": "Qatari Rial",
                "destination_currency_code": "PHP",
                "destination_currency_name": "Philippine Peso",
                "currency_type": "FIAT",
                "blockchain_network": null,
                "exchange_rate": 15.39,
                "quote_expiry_date": "2026-05-01T11:41:36.406Z",
                "fee": {
                    "currency": "QAR",
                    "fixed_fee": 0,
                    "percentage_fee": 0
                }
            }
        ]
    }
]
PreviousCorridorsNextCorridor Details

Last updated 1 month ago