Mon-voyage-pas-cher.com Public API
mon-voyage-pas-cher · Company
Mon-voyage-pas-cher.com Public API API
Authentication
Sample Requests
This webservice is providing you the ability to retrieve a list of airports matching your search criterias. The 3 mains search criterias are - by country code, this will list all airports for a given country. - by latitude/longitude with a radius in km. You can actually combine those
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/mon-voyage-pas-cher.com/0.0.1/airports?radius=100&language=en&location=example&countrycode=example&top_airports=true"
import requests
params = {
"radius": "100",
"language": "en",
"location": "example",
"countrycode": "example",
"top_airports": "true"
}
response = requests.get(
"https://api.apis.guru/v2/specs/mon-voyage-pas-cher.com/0.0.1/airports",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/mon-voyage-pas-cher.com/0.0.1/airports');
url.searchParams.set('radius', '100');
url.searchParams.set('language', 'en');
url.searchParams.set('location', 'example');
url.searchParams.set('countrycode', 'example');
url.searchParams.set('top_airports', 'true');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/mon-voyage-pas-cher.com/0.0.1/airports")
q := baseURL.Query()
q.Set("radius", "100")
q.Set("language", "en")
q.Set("location", "example")
q.Set("countrycode", "example")
q.Set("top_airports", "true")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/mon-voyage-pas-cher.com/0.0.1/airports")
uri.query = URI.encode_www_form({
"radius" => "100",
"language" => "en",
"location" => "example",
"countrycode" => "example",
"top_airports" => "true"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/mon-voyage-pas-cher.com/0.0.1/airports?" . http_build_query([
"radius" => "100",
"language" => "en",
"location" => "example",
"countrycode" => "example",
"top_airports" => "true"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));This webservice is providing you the ability to retrieve all informations about continents
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/mon-voyage-pas-cher.com/0.0.1/continents?language=en&continentcode=example"
import requests
params = {
"language": "en",
"continentcode": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/mon-voyage-pas-cher.com/0.0.1/continents",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/mon-voyage-pas-cher.com/0.0.1/continents');
url.searchParams.set('language', 'en');
url.searchParams.set('continentcode', 'example');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/mon-voyage-pas-cher.com/0.0.1/continents")
q := baseURL.Query()
q.Set("language", "en")
q.Set("continentcode", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/mon-voyage-pas-cher.com/0.0.1/continents")
uri.query = URI.encode_www_form({
"language" => "en",
"continentcode" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/mon-voyage-pas-cher.com/0.0.1/continents?" . http_build_query([
"language" => "en",
"continentcode" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));This webservice is providing you the ability to retrieve a list of countries matching your search criterias. The 2 mains ways to search use this API are - by countrycode, it will only returns you one country - without the countrycode parameter which will return the full list of countr
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/mon-voyage-pas-cher.com/0.0.1/countries?language=en&countrycode=example"
import requests
params = {
"language": "en",
"countrycode": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/mon-voyage-pas-cher.com/0.0.1/countries",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/mon-voyage-pas-cher.com/0.0.1/countries');
url.searchParams.set('language', 'en');
url.searchParams.set('countrycode', 'example');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/mon-voyage-pas-cher.com/0.0.1/countries")
q := baseURL.Query()
q.Set("language", "en")
q.Set("countrycode", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/mon-voyage-pas-cher.com/0.0.1/countries")
uri.query = URI.encode_www_form({
"language" => "en",
"countrycode" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/mon-voyage-pas-cher.com/0.0.1/countries?" . http_build_query([
"language" => "en",
"countrycode" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with Mon-voyage-pas-cher.com Public API?
Mon-voyage-pas-cher.com Public API is a Company API. Developers commonly use company APIs for:
- enriching CRM records with company firmographics
- building lead-generation and prospecting tools
- verifying business identity and registration details
- monitoring competitors and market intelligence
- powering B2B data enrichment pipelines
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Mon-voyage-pas-cher.com Public API is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide