Retrieve a list of all available countries.
List of all available countries.
const response = await fetch('/countries', { method: 'GET', headers: { "apikey": "ApiKeyAuth <apiKey>" }, }); const data = await response.json();
{ "ok": true, "data": [ "text" ] }