Cards API
  1. Information
Cards API
  • Introduction
  • API Usage Instructions
  • Platform URL's
  • API Specification
  • Authentication
  • Steps to Generate a Secure Signature
  • Callback Parameters and Template
  • Merchant
    • Information
      GET
    • Program Details
      GET
  • Cards
    • KYC Requirements
    • Apply Card
      • Apply
      • Binding
    • Information
      • CardDetails
        GET
      • PinDetails
        GET
      • CardBalance
        GET
      • Single Card Transactions
        POST
      • All Cards Transactions
        POST
      • Countries
        GET
      • Towns
        GET
    • Top Up
      • Estimate Card TopUp Fee
      • TopUp
      • TopUp Status
    • Actions
      • Freeze
      • UnFreeze
      • Cancellation
      • SetPin
  • Webhooks
    • Callback notification
    • Kycstatus result callback notification
    • Createcard result callback notification
    • Recharge callback notification
    • Operation callback notification
    • Consume result callback notification
    • Fee callback notification
    • Refund callback notification
    • Bank card 3DS verification
  1. Information

Countries

GET
Countries
CardsService
This API retrieves a list of countries with their corresponding details, such as country name, nationality, mobile code, and ISO codes (two-letter, three-letter, and numeric).

Request

Header Params
Content-Type
string 
optional
Default:
application/json
Authorization
string 
optional
Default:
Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c

Responses

🟢200OK
text/plain
Success
Body
array of:
id
string  | null 
optional
name
string  | null 
optional
nationality
string  | null 
optional
mobileCode
string  | null 
optional
isoTwo
string  | null 
optional
isoThree
string  | null 
optional
isoNumber
integer <int32>
optional
Example
[
    {
        "id": "8ee37608-a700-434b-be5d-ba01fd74182c",
        "name": "India",
        "nationality": "Indian",
        "mobileCode": "91",
        "isoTwo": "IN",
        "isoThree": "IND",
        "isoNumber": "356"
    },
    {
        "id": "7aa23818-b812-47f4-af7d-99a20fa4b3de",
        "name": "United States",
        "nationality": "American",
        "mobileCode": "1",
        "isoTwo": "US",
        "isoThree": "USA",
        "isoNumber": "840"
    },
    {
        "id": "2f24d5b0-90a7-4f8d-8ed9-8337cf0e9c82",
        "name": "Canada",
        "nationality": "Canadian",
        "mobileCode": "1",
        "isoTwo": "CA",
        "isoThree": "CAN",
        "isoNumber": "124"
    }
]
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
🔴500Server Error
🔴501501
Modified at 2025-02-18 12:03:53
Previous
All Cards Transactions
Next
Towns
Built with