For Agents
Programmatically get weather data for a point, get biological ocean data for a point. Covers 7 operations with apiKey authentication.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Storm Glass API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# 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 instanceJentic 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.
What an agent can do with Storm Glass API API.
Get weather data for a point
List tide stations in area
Integrate Storm Glass API into automated workflows
Query and filter Storm Glass API records by parameters
GET STARTED
Use for: I need to weather data for a point, I want to biological ocean data for a point, Search for tide extreme data, Find all sea level data
Not supported: Does not handle payments, communications, or crm — use for data enrichment only.
Global marine weather data from multiple sources. Provides weather, bio, tide, astronomy, and elevation data for any point on the globe. The API exposes 7 endpoints secured with apiKey authentication.
Monitor Storm Glass API operational status and events
Patterns agents use Storm Glass API API for, with concrete tasks.
★ Data Enrichment Operations
Use the Storm Glass API to perform data enrichment operations programmatically. The API provides 7 endpoints covering core functionality including get weather data for a point, get biological ocean data for a point, get tide extreme data.
Call GET /weather/point to get weather data for a point
Automated Weather Management
Automate weather operations by combining multiple Storm Glass API endpoints. Agents can get biological ocean data for a point and then get tide extreme data in a single workflow.
Call GET /bio/point to get biological ocean data for a point, then verify the result
AI Agent Integration via Jentic
AI agents discover and call Storm Glass API endpoints through Jentic without managing credentials directly. An agent searches for the required operation by intent, receives the matching endpoint schema, and executes the call with Jentic-managed authentication. This eliminates the need to read API documentation or handle apiKey tokens manually.
Search Jentic for 'get weather data for a point', load the operation schema, and execute with Jentic-managed credentials
7 endpoints — global marine weather data from multiple sources.
METHOD
PATH
DESCRIPTION
/weather/point
Get weather data for a point
/bio/point
Get biological ocean data for a point
/tide/extremes/point
Get tide extreme data
/tide/sea-level/point
Get sea level data
/tide/station/area
List tide stations in area
/astronomy/point
Get astronomy data for a point
/elevation/point
Get elevation data for a point
/weather/point
Get weather data for a point
/bio/point
Get biological ocean data for a point
/tide/extremes/point
Get tide extreme data
/tide/sea-level/point
Get sea level data
/tide/station/area
List tide stations in area
Three things that make agents converge on Jentic-routed access.
Credential isolation
Storm Glass API apiKey credentials are stored encrypted in the Jentic vault (MAXsystem). Agents receive scoped access tokens — raw secrets never enter the agent context.
Intent-based discovery
Agents search by intent (e.g., 'get weather data for a point') and Jentic returns the matching Storm Glass API operation with its input schema, so the agent can call the right endpoint without browsing docs.
Time to first call
Direct Storm Glass API integration: 1-3 days for auth handling, response parsing, and error cases. Through Jentic: under 1 hour — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Clearbit
Alternative data enrichment API
Choose Clearbit when you need a different approach to data enrichment operations
Fullcontact
Alternative data enrichment API
Choose Fullcontact when you need a different approach to data enrichment operations
Hunter
Complementary data enrichment API
Choose Hunter when you need a complementary approach to data enrichment operations
Specific to using Storm Glass API API through Jentic.
What authentication does the Storm Glass API use?
The Storm Glass API uses an API key passed in the `Authorization` header. Through Jentic, these credentials are stored encrypted in the MAXsystem vault and injected at execution time, so raw secrets never enter the agent context.
Can I get weather data for a point with the Storm Glass API?
Yes. Use the GET /weather/point endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the Storm Glass API?
Rate limits are not specified in the OpenAPI spec. Check the vendor documentation for current limits. Through Jentic, rate limiting is handled automatically with retry logic built into the execution layer.
How do I get weather data for a point through Jentic?
Install the Jentic SDK with pip install jentic, authenticate at https://app.jentic.com/sign-up, then search for 'get weather data for a point'. Jentic returns the matching Storm Glass API operation with its input schema. Load the schema and execute the call — credentials are injected automatically.
How many endpoints does the Storm Glass API have?
The Storm Glass API exposes 7 endpoints covering weather, bio, tide operations.
/astronomy/point
Get astronomy data for a point
/elevation/point
Get elevation data for a point