
Weather Meteosource
Description
Accurate weather for chat-based insights - current, forecasted, and historical. Updated in real-time.
Details
https://meteosource.com/.well-known/ai-plugin.json
{
"schema_version": "v1",
"name_for_human": "Weather Meteosource",
"name_for_model": "weather_meteosource",
"description_for_human": "Accurate weather for chat-based insights - current, forecasted, and historical. Updated in real-time.",
"description_for_model": "Weather forecasts, past weather, long-term statistics and air quality forecast, for any location on Earth.",
"auth": {
"type": "service_http",
"authorization_type": "bearer",
"verification_tokens": {
"openai": "8cdc75ecd1774225892f577725513110"
}
},
"api": {
"type": "openapi",
"url": "https://www.meteosource.com/.well-known/openapi.json"
},
"logo_url": "https://www.meteosource.com/static/logo_square.png",
"contact_email": "support@meteosource.com",
"legal_info_url": "https://www.meteosource.com/weather-app/terms-of-service"
}
https://www.meteosource.com/.well-known/openapi.json
{
"openapi": "3.0.2",
"info": {
"title": "Meteosource weather API",
"description": "Meteosource weather API",
"version": "v1"
},
"servers": [
{
"url": "https://www.meteosource.com/api/v1/chatgpt/"
}
],
"paths": {
"/point": {
"get": {
"tags": [
"Point weather"
],
"summary": "Returns weather data for a single point (geographic name or GPS)",
"description": "Current weather and forecast for single location. Location can be specified with GPS coordinates using the parameters `lat` and `lon`, or with parameter `place_id`. To obtain the `place_id` for the location you want, please use endpoint /find_places.",
"operationId": "point_point_get",
"parameters": [
{
"description": "Identifier of a place.",
"required": false,
"schema": {
"title": "Place Id",
"type": "string",
"description": "Identifier of a place."
},
"name": "place_id",
"in": "query"
},
{
"description": "Latitude in format 12N, 12.3N, 12.3, or 13S, 13.2S, -13.4",
"required": false,
"schema": {
"title": "Lat",
"type": "string",
"description": "Latitude in format 12N, 12.3N, 12.3, or 13S, 13.2S, -13.4"
},
"name": "lat",
"in": "query"
},
{
"description": "Longitude in format 12E, 12.3E, 12.3, or 13W, 13.2W, -13.4",
"required": false,
"schema": {
"title": "Lon",
"type": "string",
"description": "Longitude in format 12E, 12.3E, 12.3, or 13W, 13.2W, -13.4"
},
"name": "lon",
"in": "query"
},
{
"description": "Sections to be included in the response. More section can be entered, separated with a comma. The available values are: `current`: current weather, `daily`: daily forecasts, `hourly`: hourly forecasts",
"required": false,
"schema": {
"title": "Sections",
"type": "string",
"description": "Sections to be included in the response. More section can be entered, separated with a comma. The available values are: `current`: current weather, `daily`: daily forecasts, `hourly`: hourly forecasts",
"default": "current,hourly"
},
"name": "sections",
"in": "query"
}
]
}
},
"/find_places": {
"get": {
"tags": [
"Location endpoints"
],
"summary": "Search for places. Complete words required.",
"description": "Search for places. You can use this endpoint to obtain `place_id` of the location you want, to be used in `point` endpoint.",
"operationId": "find_places_find_places_get",
"parameters": [
{
"description": "Place name or ZIP code",
"required": true,
"schema": {
"title": "Text",
"type": "string",
"description": "Place name or ZIP code"
},
"name": "text",
"in": "query"
}
]
}
},
"/time_machine": {
"get": {
"tags": [
"Time machine - historical weather"
],
"summary": "Returns weather data for a single location and given day in the past",
"description": "Actual weather data and long-term statistics for a single location and day up to 20 years in the past.",
"operationId": "time_machine_time_machine_get",
"parameters": [
{
"description": "Identifier of a place.",
"required": false,
"schema": {
"title": "Place Id",
"type": "string",
"description": "Identifier of a place."
},
"name": "place_id",
"in": "query"
},
{
"description": "Latitude in format 12N, 12.3N, 12.3, or 13S, 13.2S, -13.4",
"required": false,
"schema": {
"title": "Lat",
"type": "string",
"description": "Latitude in format 12N, 12.3N, 12.3, or 13S, 13.2S, -13.4"
},
"name": "lat",
"in": "query"
},
{
"description": "Longitude in format 12E, 12.3E, 12.3, or 13W, 13.2W, -13.4",
"required": false,
"schema": {
"title": "Lon",
"type": "string",
"description": "Longitude in format 12E, 12.3E, 12.3, or 13W, 13.2W, -13.4"
},
"name": "lon",
"in": "query"
},
{
"description": "The day of the data in the past in `YYYY-MM-DD` format, e.g. `2021-08-24`.",
"required": true,
"schema": {
"title": "Date",
"type": "string",
"description": "The day of the data in the past in `YYYY-MM-DD` format, e.g. `2021-08-24`.",
"format": "date"
},
"name": "date",
"in": "query"
}
]
}
},
"/air_quality": {
"get": {
"tags": [
"Point weather"
],
"summary": "Returns air quality forecast for a single location",
"description": "Air quality forecast for a single location.",
"operationId": "air_quality_air_quality_get",
"parameters": [
{
"description": "Identifier of a place.",
"required": false,
"schema": {
"title": "Place Id",
"type": "string",
"description": "Identifier of a place."
},
"name": "place_id",
"in": "query"
},
{
"description": "Latitude in format 12N, 12.3N, 12.3, or 13S, 13.2S, -13.4",
"required": false,
"schema": {
"title": "Lat",
"type": "string",
"description": "Latitude in format 12N, 12.3N, 12.3, or 13S, 13.2S, -13.4"
},
"name": "lat",
"in": "query"
},
{
"description": "Longitude in format 12E, 12.3E, 12.3, or 13W, 13.2W, -13.4",
"required": false,
"schema": {
"title": "Lon",
"type": "string",
"description": "Longitude in format 12E, 12.3E, 12.3, or 13W, 13.2W, -13.4"
},
"name": "lon",
"in": "query"
}
]
}
}
}
}
Discover other plugins from the weather category

Weather
Plugin for getting current weather information.
0 Comments

Weather Report Data
Current weather data for cities and airports using METAR aviation feeds.
0 Comments

Tomorrow.io Weather
Predicting, planning, and adapting to the weather forecast via contextualized chat-based insights.
0 Comments
Xweather
XWeather gives weather information for a location. Ask for the current weather, a 5-day forecast, or a radar image.
0 Comments

WeatherWhiz
WeatherWhiz: Accurate current weather and forecasts for any location.
0 Comments

Gimmee Air Quality
Planning something outdoors? Get the 2-day air quality forecast for any US zip code.
0 Comments

MixerBox Weather
Get real-time worldwide weather updates & forecasts, instantly!
0 Comments

Brainlox chat
Plugin that fetches weather forecast for a city. Submit a city name and receive the weather forecast.
0 Comments

Weather
Provides weather forecast based on location. Includes temperature, precipitation, cloud cover, wind and much more.
0 Comments

WeatherWizard
Get current weather information from around the world. Powered by WeatherAPI.
0 Comments