/v1/list
List all flags
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/flags-api/v1/list" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/flags-api/v1/list", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/flags-api/v1/list");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/flags-api/v1/list",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"count": 50,
"flags": [
{
"code": "AF",
"emoji": "🇦🇫",
"country": "Afghanistan",
"image_png": "https://flagcdn.com/w320/af.png",
"image_svg": "https://flagcdn.com/af.svg",
"attributes": {
"bars": 0,
"icon": true,
"text": false,
"stars": 1,
"colors": [
"red",
"green",
"gold",
"white",
"black"
],
"animate": false,
"circles": 0,
"colours": 5,
"crosses": 0,
"mainhue": "green",
"stripes": 3,
"topleft": "black",
"botright": "green",
"crescent": false,
"quarters": 0,
"saltires": 0,
"triangle": false
}
},
{
"code": "AL",
"emoji": "🇦🇱",
"country": "Albania",
"image_png": "https://flagcdn.com/w320/al.png",
"image_svg": "https://flagcdn.com/al.svg",
"attributes": {
"bars": 0,
"icon": false,
"text": false,
"stars": 1,
"colors": [
"red",
"gold",
"black"
],
"animate": true,
"circles": 0,
"colours": 3,
"crosses": 0,
"mainhue": "red",
"stripes": 0,
"topleft": "red",
"botright": "red",
"crescent": false,
"quarters": 0,
"saltires": 0,
"triangle": false
}
},
{
"code": "DZ",
"emoji": "🇩🇿",
"country": "Algeria",
"image_png": "https://flagcdn.com/w320/dz.png",
"image_svg": "https://flagcdn.com/dz.svg",
"attributes": {
"bars": 2,
"icon": false,
"text": false,
"stars": 1,
"colors": [
"red",
"green",
"white"
],
"animate": false,
"circles": 0,
"colours": 3,
"crosses": 0,
"mainhue": "green",
"stripes": 0,
"topleft": "green",
"bot
…