Supported countries and languages allowlist
curl --request GET \
--url https://api.mentionlab.io/api/v1/reference/localesimport requests
url = "https://api.mentionlab.io/api/v1/reference/locales"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.mentionlab.io/api/v1/reference/locales', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.mentionlab.io/api/v1/reference/locales",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.mentionlab.io/api/v1/reference/locales"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.mentionlab.io/api/v1/reference/locales")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mentionlab.io/api/v1/reference/locales")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"countries": [
{
"value": "US",
"label": "United States of America"
},
{
"value": "BE",
"label": "Belgium"
}
],
"languages": [
{
"value": "en",
"label": "English"
},
{
"value": "fr",
"label": "French"
}
]
}Reference
Supported countries and languages allowlist
Returns the allowlist of countries and languages that queries may target; this is global reference data shared across all projects.
GET
/
api
/
v1
/
reference
/
locales
Supported countries and languages allowlist
curl --request GET \
--url https://api.mentionlab.io/api/v1/reference/localesimport requests
url = "https://api.mentionlab.io/api/v1/reference/locales"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.mentionlab.io/api/v1/reference/locales', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.mentionlab.io/api/v1/reference/locales",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.mentionlab.io/api/v1/reference/locales"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.mentionlab.io/api/v1/reference/locales")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mentionlab.io/api/v1/reference/locales")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"countries": [
{
"value": "US",
"label": "United States of America"
},
{
"value": "BE",
"label": "Belgium"
}
],
"languages": [
{
"value": "en",
"label": "English"
},
{
"value": "fr",
"label": "French"
}
]
}Response
Allowlist of supported country codes (ISO 3166-1 alpha-2) with display labels.
Show child attributes
Show child attributes
Example:
[
{
"value": "US",
"label": "United States of America"
},
{ "value": "BE", "label": "Belgium" }
]
Allowlist of supported language codes (BCP-47-style) with display labels.
Show child attributes
Show child attributes
Example:
[
{ "value": "en", "label": "English" },
{ "value": "fr", "label": "French" }
]