Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Data Enrichment / Meteosource Premium
Meteosource Premium logo

Meteosource Premium

✓ Official Vendor SpecData EnrichmentAddress ValidationapiKey7 EndpointsREST

For Agents

Fetch current weather, multi-day forecasts, historical weather, air quality, and place search by name or GPS coordinates.

Use for: Get the current weather for a city, Retrieve a 7-day forecast for a GPS coordinate, Look up the weather on a specific past date, Find the nearest named place for these GPS coordinates

Not supported: Does not handle weather alerts subscription, severe-storm tracking, or marine forecasts — use for point forecasts, history, place search, air quality, and weather maps only.

Meteosource is a weather data provider that exposes current conditions, multi-day forecasts, place search, historical weather, weather maps, and air quality through a Premium plan REST surface. Agents query by named place or GPS coordinates and receive structured JSON for each variable, with a separate time-machine endpoint for historical lookups and a map endpoint for raster imagery. The API key is sent in the `Authorization` header. Useful for travel apps, agriculture monitoring, logistics planning, and any flow that needs forecast or historical weather as a data point.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Meteosource Premium to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Meteosource Premium, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Meteosource Premium API.

Retrieve current conditions and a multi-day forecast for a named city or GPS coordinate

Look up historical weather for a specific past date with the time-machine endpoint

Search for places by name or by prefix to power autocomplete in a weather UI

Reverse-geocode GPS coordinates to the nearest named location for human-readable summaries

Pull air quality data for a single point alongside the standard weather variables

Render a PNG weather map for a chosen variable and bounding area

Use Cases

Patterns agents use Meteosource Premium API for, with concrete tasks.

★ Forecast in a Travel Planning Agent

An AI travel agent needs the multi-day forecast for a destination before suggesting an itinerary. Calling GET /point with the destination's name or coordinates returns current and forecast weather variables in a single response, which the agent can summarise back to the user. Pair with /find_places when the user only supplies a free-text city to disambiguate before the lookup.

GET /find_places to disambiguate the city, then GET /point for the chosen place_id to fetch the multi-day forecast and summarise it

Historical Weather Backtesting

Logistics, insurance, and agriculture teams often need historical weather for a specific date to validate a claim, model a yield, or audit a delivery delay. The time-machine endpoint returns weather for a single location and a chosen past date so the agent can backfill records without scraping. The response sits alongside the live forecast format, keeping schemas consistent.

GET /time_machine with the location and the target past date to retrieve the historical observations for a delivery audit

Air Quality and Health Alerts

Public-health and outdoor-event apps surface air quality alongside weather. Calling GET /air_quality for the user's location returns AQI-style metrics that the agent can use to issue health warnings or adjust event recommendations. Combine with /point for a complete environmental snapshot in one workflow.

GET /air_quality for the user's coordinates and emit a health alert when the returned index crosses the configured threshold

AI Agent Integration via Jentic

An AI agent uses Jentic to discover the Meteosource Premium API by intent search ('get the weather forecast'). Jentic returns the /point operation with its input schema, so the agent supplies a place name or coordinates and receives the structured forecast in one load-and-execute step. The Meteosource API key lives in the Jentic vault and never enters the agent's prompt.

Use Jentic to search 'get the weather forecast', load the /point schema, and execute it for the user's destination

Key Endpoints

7 endpoints — meteosource is a weather data provider that exposes current conditions, multi-day forecasts, place search, historical weather, weather maps, and air quality through a premium plan rest surface.

METHOD

PATH

DESCRIPTION

GET

/point

Current and forecast weather for a single point

GET

/find_places

Search for places by name

GET

/find_places_prefix

Prefix search for places (autocomplete)

GET

/nearest_place

Nearest named place for GPS coordinates

GET

/time_machine

Historical weather for a single location and date

GET

/air_quality

Air quality for a single point

GET

/map

PNG weather map for area and variable

GET

/point

Current and forecast weather for a single point

GET

/find_places

Search for places by name

GET

/find_places_prefix

Prefix search for places (autocomplete)

GET

/nearest_place

Nearest named place for GPS coordinates

GET

/time_machine

Historical weather for a single location and date

GET

/air_quality

Air quality for a single point

GET

/map

PNG weather map for area and variable

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

Meteosource API keys are stored encrypted in the Jentic vault (MAXsystem) and injected into the `Authorization` header at request time. The raw key never enters the agent's prompt.

Intent-based discovery

Intent-based discovery

Agents search by intent (e.g. 'get the weather forecast') and Jentic returns /point with its schema, so the agent calls the right endpoint without reading Meteosource's docs.

Time to first call

Time to first call

Direct integration: half a day for auth, parameter handling, and response parsing. Through Jentic: under 15 minutes — search, load schema, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

OpenWeatherMap

→

Widely used weather API with current, forecast, and historical endpoints

Pick OpenWeatherMap when you need a free tier or community-standard weather provider

Alternative

WeatherAPI

→

Weather API with forecast, history, and astronomy data

Pick WeatherAPI when you also want astronomy and timezone data alongside the forecast

Alternative

Weatherbit

→

Weather data API covering current, forecast, history, and air quality

Pick Weatherbit when you want a single provider for forecast plus AQI on a different pricing model

Complementary

Meteostat

→

Historical and station-based weather data archive

Pair with Meteostat when you need long-tail historical and station-level data alongside Meteosource forecasts

FAQs

Specific to using Meteosource Premium API through Jentic.

What authentication does the Meteosource Premium API use?

An API key sent in the `Authorization` header (the `APIKeyHeader` security scheme in the spec). Through Jentic the key is stored in the MAXsystem vault and injected into the header at request time, so it never enters the agent's prompt.

Can I look up the weather for a city by name?

Yes. GET /find_places resolves a free-text city name to one or more place records, and GET /point then returns the current and forecast weather for the chosen place. /find_places_prefix supports autocomplete-style prefix searches.

Is historical weather data available?

Yes. GET /time_machine returns weather data for a single location and a specified past date, returning observations in the same shape as the forecast endpoint.

Can I retrieve air quality alongside weather?

Yes. GET /air_quality returns air quality metrics for a single point. Use it side-by-side with /point when you need both weather and AQI in the same workflow.

How do I fetch a forecast through Jentic?

Search Jentic for `get the weather forecast`, load the GET /point operation, and execute it with the place name or GPS coordinates. Jentic returns the structured JSON response.

Are there published rate limits?

The OpenAPI spec does not declare quantitative rate limits. Limits depend on your Meteosource Premium plan — check your dashboard or contact Meteosource support before bulk traffic.

GET STARTED

Start building with Meteosource Premium API

Explore with Jentic
View OpenAPI Document