API Documentation
  1. Master Data
API Documentation
  • API Documentation Change Log
  • API Reference Guide
    • Checkout Page
    • Payin - KRW (Server to Server)
    • Purpose Code
    • Payout Payload Example
    • List of Payin Methods
    • List of Bank for Payout Methods
  • API Documentation
    • Master Data
      • Get All Country & Currency Code
        GET
    • Payout Method
      • Get All Payout Method
    • Payin Method
      • Get All Payin Method
      • Get Required Fields by Payin method
    • Payin
      • Create Payin
      • Simulate Payin
      • Retrieve Payin
      • Create Virtual Account
    • Payout
      • Create Payout
      • Simulate Payout
      • Retrieve Payout
      • Get All Payout
    • Checkout
      • Create Payment Request
      • Get All Checkout
      • Get Detail Checkout
      • Create Virtual Account [KRW]
      • Get VA Bank Information [KRW]
      • Create New Checkout
    • Customer
      • Create Customer
      • Update Customer
      • Get All Customer
      • Get Detail Customer by Id
      • Check Is Customer Wallet Ready
      • Enable Customer
      • Disable Customer
      • Delete Customer
    • Webhook
      • Webhook PAYIN SUCCESS
      • Webhook PAYOUT SUCCESS
      • Webhook PAYOUT FAILED
      • VA Register Callback
      • Webhook PAYIN EXPIRED
    • Merchant
      • Get Balance Payout
    • Get List Payment Method by Currency
      GET
  • Features Documentation
    • Dashboard
    • Transaction
      • Payin
      • Payout
      • Rolling Reserve
      • Refund Request
    • Finance
      • Settlement Report APM
      • Settlement Report CARD
      • History Balance APM
      • History Balance CARD
    • Account
      • Profile Account
      • Manage Users
    • Setting
      • Integration Details
  1. Master Data

Get All Country & Currency Code

GET
/api/v1/master-data/country-currency-code
This API is used to retrieve a list of all Country & Currency that are supported by paycombat to support the transaction process.
The output will be returned in the form of an array of objects that will be accommodated in the data field by containing information in the form of country_name, country_code, currency_code, currency_name, and description.

Request

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.paycombat.com/api/v1/master-data/country-currency-code' \
--header 'X-token: snd_eyJpdiI6IjJJTElLaXBMb2JhaWRkdk96K05YTFE9PSIsInZhbHVlIjoibXREZWVySmhTT1A3a3BsaFN5WjM0Sk8ySTA0Wm9nbmpOWmlHbFFSRi9uRExXZ09jOFFRTnJvQzhhdmJudElrciIsIm1hYyI6IjA0YzBjZjM0OTZjZDhlMzk2ZmJmZWFlODkzYjQ3NTJhYjdmOGQ5YTA2ZTVjNmZlZGU3ZjY1NDQyYTQ2MTViNGUiLCJ0YWciOiIifQ=='

Responses

🟢200Success
application/json
Body

Examples
{
    "status": true,
    "message": "string",
    "data": [
        {
            "country_name": "string",
            "country_code": "string",
            "currency_code": "string",
            "currency_symbol": "string",
            "description": "string"
        }
    ]
}
🟠400Bad Request
Modified at 2025-06-01 07:52:48
Previous
List of Bank for Payout Methods
Next
Get All Payout Method