Public endpoint to list all available locales supported by TextMaster.
curl "https://api.textmaster.com/v1/public/locales"
Last updated 1 year ago
Lists locales
^[a-z]{2}(-[A-Z]{2})?$
const response = await fetch('https://api.textmaster.com/v1/public/locales', { method: 'GET', headers: {}, }); const data = await response.json();
[ { "active": false, "code": "text", "name": "text" } ]