Interactive documentation for your Premium plan
meteosource · Company
This interactive documentation is using your API key which is filled in automatically, you can find and change this in [your dashboard](https://www.meteosource.com/client). Using the `GET` button, open your selected endpoint and read the introduction. You will find a detailed description of available parameters. You can complete the `Parameters` section and hit `Execute` to view a full API response. You can then inspect the JSON response, copy the `curl` command to run it on your machine, or
Authentication
Sample Requests
## Air quality forecast for a single location ### Location specification The location of the weather data is the only parameter that is required and must be specified. There are two ways to do this: 1. Specify the GPS coordinates of the location using the parameters `lat` and `lon`. 2. **OR** speci
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/meteosource.com/v1/air_quality?key=YOUR_API_KEY&lat=51.5074&lon=-0.1278&place_id=example&timezone=example"
import requests
params = {
"key": "YOUR_API_KEY",
"lat": "51.5074",
"lon": "-0.1278",
"place_id": "example",
"timezone": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/meteosource.com/v1/air_quality",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/meteosource.com/v1/air_quality');
url.searchParams.set('key', 'YOUR_API_KEY');
url.searchParams.set('lat', '51.5074');
url.searchParams.set('lon', '-0.1278');
url.searchParams.set('place_id', 'example');
url.searchParams.set('timezone', '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/meteosource.com/v1/air_quality")
q := baseURL.Query()
q.Set("key", "YOUR_API_KEY")
q.Set("lat", "51.5074")
q.Set("lon", "-0.1278")
q.Set("place_id", "example")
q.Set("timezone", "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/meteosource.com/v1/air_quality")
uri.query = URI.encode_www_form({
"key" => "YOUR_API_KEY",
"lat" => "51.5074",
"lon" => "-0.1278",
"place_id" => "example",
"timezone" => "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/meteosource.com/v1/air_quality?" . http_build_query([
"key" => "YOUR_API_KEY",
"lat" => "51.5074",
"lon" => "-0.1278",
"place_id" => "example",
"timezone" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));## Search for places You can use this endpoint to obtain `place_id` of the location you want, to be used in `point` endpoint. The response also contains detailed information about the location, such as coordinates, timezone and the country the place belongs to. Unlike the `/find_place_prefix` endp
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/meteosource.com/v1/find_places?key=YOUR_API_KEY&text=example&language=en"
import requests
params = {
"key": "YOUR_API_KEY",
"text": "example",
"language": "en"
}
response = requests.get(
"https://api.apis.guru/v2/specs/meteosource.com/v1/find_places",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/meteosource.com/v1/find_places');
url.searchParams.set('key', 'YOUR_API_KEY');
url.searchParams.set('text', 'example');
url.searchParams.set('language', 'en');
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/meteosource.com/v1/find_places")
q := baseURL.Query()
q.Set("key", "YOUR_API_KEY")
q.Set("text", "example")
q.Set("language", "en")
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/meteosource.com/v1/find_places")
uri.query = URI.encode_www_form({
"key" => "YOUR_API_KEY",
"text" => "example",
"language" => "en"
})
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/meteosource.com/v1/find_places?" . http_build_query([
"key" => "YOUR_API_KEY",
"text" => "example",
"language" => "en"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));## Search for places by prefix You can use this endpoint to obtain `place_id` of the location you want, to be used in `point` endpoint. The response also contains detailed information about the location, such as coordinates, timezone and the country the place belongs to. Unlike the `/find_places`
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/meteosource.com/v1/find_places_prefix?key=YOUR_API_KEY&text=example&language=en"
import requests
params = {
"key": "YOUR_API_KEY",
"text": "example",
"language": "en"
}
response = requests.get(
"https://api.apis.guru/v2/specs/meteosource.com/v1/find_places_prefix",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/meteosource.com/v1/find_places_prefix');
url.searchParams.set('key', 'YOUR_API_KEY');
url.searchParams.set('text', 'example');
url.searchParams.set('language', 'en');
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/meteosource.com/v1/find_places_prefix")
q := baseURL.Query()
q.Set("key", "YOUR_API_KEY")
q.Set("text", "example")
q.Set("language", "en")
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/meteosource.com/v1/find_places_prefix")
uri.query = URI.encode_www_form({
"key" => "YOUR_API_KEY",
"text" => "example",
"language" => "en"
})
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/meteosource.com/v1/find_places_prefix?" . http_build_query([
"key" => "YOUR_API_KEY",
"text" => "example",
"language" => "en"
]);
$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 Interactive documentation for your Premium plan?
Interactive documentation for your Premium plan 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. Interactive documentation for your Premium plan is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide · Learn about API keys · What is REST?