Skip to main content
GET
/
client
/
countries
cURL
curl --request GET \
  --url https://sandbox-remote-api.rayda.co/api/v2/client/countries \
  --header 'Authorization: Bearer <token>'
[
  {
    "success": true,
    "message": "Records fetched successfully",
    "data": {
      "id": "9dfd3a42-b0e9-4f1b-a822-1b91f2149813",
      "name": "France",
      "code": "FR",
      "eta": "2-3"
    }
  }
]

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

A list of countries

success
boolean
Example:

true

message
string
Example:

"Records fetched successfully"

data
object