API Documentation
  1. Master Data
API Documentation
  • API Reference Guide
    • Checkout Page
    • Payin - KRW (Server to Server)
    • Purpose Code
    • Payout Payload Example
    • List of Payin Methods
  • API Documentation
    • Master Data
      • Get All Country & Currency Code
        GET
    • Payout Method
      • Get Required Fields by Payout method
      • Get All Payout Method
    • Payin Method
      • Get All Payin Method
      • Get Required Fields by Payin method
    • Payout Beneficiary
      • Create Payout Beneficiary
      • Update Payout Beneficiary
      • Get All Payout Beneficiary
      • Get Payout Beneficiary by Id
      • Validation by Id
      • Validation by Body
    • Payin
      • Create Payin
      • Retrieve Payin
      • Retrieve Payin Memo (PDF)
      • Create Virtual Account
    • Payout
      • Create Payout
      • Simulate Payout
      • Retrieve Payout Memo (PDF)
      • Retrieve Payout
      • Get All Payout
    • Checkout
      • Create Payment Request
      • Get All Checkout
      • Cancel Checkout
      • Get Detail Checkout
      • Create Virtual Account [KRW]
      • Get VA Bank Information [KRW]
      • Create New Checkout
    • Transaction
      • Find Transaction by Id
      • Get All Transaction
    • Wallet
      • Create Wallet
      • Get All Wallet
      • Get by Wallet Id
    • 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
    • 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
X-token
string 
required
Example:
snd_eyJpdiI6IjJJTElLaXBMb2JhaWRkdk96K05YTFE9PSIsInZhbHVlIjoibXREZWVySmhTT1A3a3BsaFN5WjM0Sk8ySTA0Wm9nbmpOWmlHbFFSRi9uRExXZ09jOFFRTnJvQzhhdmJudElrciIsIm1hYyI6IjA0YzBjZjM0OTZjZDhlMzk2ZmJmZWFlODkzYjQ3NTJhYjdmOGQ5YTA2ZTVjNmZlZGU3ZjY1NDQyYTQ2MTViNGUiLCJ0YWciOiIifQ==

Request 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
status
boolean 
required
message
string 
required
data
array [object {5}] 
required
country_name
string 
optional
country_code
string 
optional
currency_code
string 
optional
currency_symbol
string 
optional
description
string 
optional
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 Payin Methods
Next
Get Required Fields by Payout method