RemitPro - API International Remittance
  1. Quotes
RemitPro - API International Remittance
  • Getting Strated Guide
    • 1. Overview
    • 2. High Level Flow
    • 3. Supported Corridors
    • 4. Authorization & Scope
    • 5. Handle Error
    • 6. Signature
    • 7. API Host
    • 8. Pre-Integration Steps
    • 9. Doc Change Log
  • API Reference (V1)
    • Authentication
      • Generate Token
        POST
      • Refresh Token
        POST
    • Master Data
      • Onboarding
        • Overview
        • Id Type Personal
        • Id Types Business
        • Business Classification
        • Business Industry
        • Nature of Business
        • Business Entity
        • Document Types Personal
        • Document Types Business
        • Education
        • Gender
        • Marital Status
        • Nationalities
        • Occupation
        • Purpose Account
        • Salutation
        • User Position
        • Phone Prefix
        • Monthly Income
      • Area
        • Overview
        • Countries
        • Countries by Id
        • States
        • States by Id
        • City
        • City by Id
        • District
        • District by Id
        • Sub District
        • Sub District by Id
      • Transaction
        • Overview
        • Bank
        • Bank Branch
        • Bank Account Type
        • Business Classification
        • Business Industry
        • Nature of Business
        • Business Entity
        • Identity Types
        • Education
        • Gender
        • Marital Status
        • Nationalities
        • Occupation
        • Phone Prefix
        • Purpose of Payment
        • Recipient of Relationship
        • Source of Income
        • User Position
        • Work Status
    • Payout Cross Border
      • Sender
        • Overview
        • Business
          • Create Sender
          • Update Sender
          • Deactive
          • Reactive
          • Sender Detail
          • Sender List
          • History List
        • Personal
          • Create Sender
          • Update Sender
          • Deactive
          • Reactive
          • Sender Detail
          • Sender List
          • History List
      • Recipient
        • Overview
        • Business
          • Recipient Form
          • Create
          • Update
          • Deactive
          • Reactive
          • Recipient Detail
          • Recipient List
          • History List
        • Personal
          • Recipient Form
          • Create
          • Update
          • Deactive
          • Reactive
          • Recipient Detail
          • Recipient List
          • History List
      • Quotes
        • Enquire Quotes
          POST
        • Quote List
          GET
        • Quote Detail
          GET
      • Transaction
        • Create Transaction
        • Transaction Status
        • Transaction List
        • Transaction Detail
    • Onbording Member
      • Overview
      • Business
        • Get Business Document
        • Create Member
        • Update
        • Deactive
        • Reactive
        • Member List
        • Member Detail
        • History List
      • Personal
        • Create Member
        • Update
        • Deactive
        • Reactive
        • Member List
        • Member Detail
        • History List
    • Wallet
      • Overview
      • Own Wallet
      • Wallet Member List
      • Wallet Member Detail
      • Get Own Wallet Histories
      • Get Member Wallet Histories
    • Virtual Account
      • Create Virtual Account
      • Virtual Account List
      • Virtual Account Detail
      • Top Up Simulation
    • Webhook
      • Overview
      • Webhook Category
      • Webhook URL Submission
      • Get Webhook URL List
      • Update
      • Deactive
  1. Quotes

Enquire Quotes

Developing
POST
/api/v1/partner/payouts/remittances/quotes
This endpoint is used to retrieve a quotation for a remittance transaction. The quote contains details such as exchange rate, applicable fees, and the estimated payout amount.
The table below displays the list of available corridors for the quote service. Each row indicates the recipient type (recipientType), destination country (recipientCountryCode), and the corresponding currency code (recipientCurrencyCode). This data outlines the valid country–currency combinations that can be used based on the recipient category (Business or Personal).
NorecipientTyperecipientCountryCoderecipientCurrencyCode
1BUSINESSUSAUSD
2BUSINESSLTUEUR
3BUSINESSDEUEUR
4BUSINESSCHNCNY
5BUSINESSGBRGBP
6PERSONALUSAUSD
7PERSONALHKGHKD
8PERSONALJPNJPY
9PERSONALGBRGBP
Each quote is for one-time use only.
A quote will expire within 10 minutes from the time it is generated.
After expiration, you must request a new quote before proceeding with the remittance transaction.

Request

Header Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

đźź 400Invalid Data
đźź 401Unauthorized
đźź 401Token Expired
đźź 404Data Not Found
đźź 401Invalid Account
đź”´500Internal Server Error
đźź 404Resource Not Found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/v1/partner/payouts/remittances/quotes' \
--header 'Authorization: {{token}}' \
--header 'ClientSecret: {{ClientSecret}}' \
--header 'Signature: {{signature}}' \
--header 'Date: {{dateRequest}}' \
--header 'X-User-Key: {{userKey}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "recipientType": "BUSINESS",
    "recipientCountryCode": "USA",
    "recipientCurrencyCode": "USD",
    "receivingAmount": "12"
}'
Response Response Example
200 - Success
{
    "status": 200,
    "serviceStatus": "2001701",
    "titleCode": "success",
    "title": "Success",
    "detail": "Processed successfully",
    "responseTime": "2025-09-19T07:20:47.199+00:00",
    "data": {
        "id": "4d4b15b3-a6b1-47f8-ba00-f3482efcac2f",
        "ownershipStatus": "ROOT",
        "ownershipId": "93cffe3b-effc-494a-a1f7-3ed04c7f75ce",
        "sourceCurrencyCode": "USD",
        "recipientType": "BUSINESS",
        "recipientCountryCode": "USA",
        "recipientCurrencyCode": "USD",
        "receivingAmount": {
            "amount": "12.00",
            "currencyCode": "USD"
        },
        "fxRate": {
            "value": "0.990000000"
        },
        "sendingAmount": {
            "amount": "12.12",
            "currencyCode": "USD"
        },
        "adminFee": {
            "amount": "5.02",
            "currencyCode": "USD"
        },
        "paymentAmount": {
            "amount": "17.14",
            "currencyCode": "USD"
        },
        "status": "ACTIVE",
        "isActive": true,
        "createdAt": "2025-09-19T07:20:47Z",
        "createdBy": "(API_PARTNER) Lingkar Sembilan Titian Media",
        "expiredAt": "2025-09-19T16:20:46Z"
    }
}
Modified at 2025-10-23 08:36:22
Previous
History List
Next
Quote List
Built with