GET
/
countries
curl --request GET \
  --url https://api.live.paisr.tech/{version}/countries \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "countries": [
      {
        "name": "Suriname",
        "code": 740,
        "currency": "SRD",
        "dail_code": 597,
        "alpha_2": "SR",
        "alpha_3": "SUR"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
Successfully retrieved the list of supported countries.
success
boolean
Example:

true

data
object