GET
/
country
/
{countryId}
curl --request GET \
  --url https://api.vecurity.net/v1/country/{countryId} \
  --header 'Authorization: <authorization>'
{
  "status": 200,
  "message": "Data successfully retrieved.",
  "data": {
    "country_name": "United States of America",
    "country_id": "63bd10e2-8274-620a-a3f6-b3987d3280ae",
    "country_iso": "US"
  },
  "metadata": {
    "version": "1.0",
    "author": "Vecurity"
  }
}

Headers

Authorization
string
required

Bearer token for authentication.

Path Parameters

countryId
string
required

The unique identifier (ID) of the country.

Response

200
application/json
Successfully retrieved country details.
status
integer
Example:

200

message
string
Example:

"Data successfully retrieved."

data
object
metadata
object