For Agents
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Wyjyt - Geo Calculate, 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.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fwyjyt-geo-calculate.azurewebsites.net%2Fwyjyt-geo-calculate-azurewebsites" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fwyjyt-geo-calculate.azurewebsites.net%2Fwyjyt-geo-calculate-azurewebsites" | 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 Wyjyt - Geo Calculate API.
Convert the list of geo coordinates to a standard format - (latlon | utm | mgrs
Calculate the distance between two geo coordinates.
Check if a list of coordinates are inside of a fence of coordinates.
GET STARTED
Programmatically convert the list of geo coordinates to a standard format - (latlon | utm | mgrs , calculate the distance between two geo coordinates.. Covers 4 operations.
Use for: I need to convert the list of geo coordinates to a standard format - (latlon | utm | mgrs , I want to calculate the distance between two geo coordinates., Search for check if a list of coordinates are inside of a fence of coordinates., Find all calculate sun, moon, eclipse and sky information for the date and location.
Not supported: Does not handle payments, communications, or crm - use for maps and geolocation only.
Widget API to calculate Geo Coordinates, Geo Fences and Sun, Moon, Sky, Eclipse information. See https://wyjyt.com. The API exposes 4 endpoints.
Query and filter Wyjyt - Geo Calculate records by parameters
Monitor Wyjyt - Geo Calculate operational status and events
Patterns agents use Wyjyt - Geo Calculate API for, with concrete tasks.
★ Maps and Geolocation Operations
Use the Wyjyt - Geo Calculate to perform maps geolocation operations programmatically. The API provides 4 endpoints covering core functionality including convert the list of geo coordinates to a standard format - (latlon | utm | mgrs , calculate the distance between two geo coordinates., check if a list of coordinates are inside of a fence of coordinates..
Call POST /Convert to convert the list of geo coordinates to a standard format - (latlon | utm | mgrs
Automated Convert Management
Automate convert operations by combining multiple Wyjyt - Geo Calculate endpoints. Agents can calculate the distance between two geo coordinates. and then check if a list of coordinates are inside of a fence of coordinates. in a single workflow.
Call POST /Distance to calculate the distance between two geo coordinates., then verify the result
AI Agent Integration via Jentic
AI agents discover and call Wyjyt - Geo Calculate 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 none tokens manually.
Search Jentic for 'convert the list of geo coordinates to a standard format - (latlon | utm | mgrs ', load the operation schema, and execute with Jentic-managed credentials
4 endpoints — widget api to calculate geo coordinates, geo fences and sun, moon, sky, eclipse information.
METHOD
PATH
DESCRIPTION
/Convert
Convert the list of geo coordinates to a standard format - (latlon | utm | mgrs
/Distance
Calculate the distance between two geo coordinates.
/Fence
Check if a list of coordinates are inside of a fence of coordinates.
/Sky
Calculate sun, moon, eclipse and sky information for the date and location.
/Convert
Convert the list of geo coordinates to a standard format - (latlon | utm | mgrs
/Distance
Calculate the distance between two geo coordinates.
/Fence
Check if a list of coordinates are inside of a fence of coordinates.
/Sky
Calculate sun, moon, eclipse and sky information for the date and location.
What agents get from Jentic-routed access to this vendor.
Setup
Wiring Wyjyt Geo Calculate by hand still means wrapping its four calculation endpoints and parsing their responses yourself even though it needs no auth. Through Jentic you install once, import Wyjyt Geo Calculate from the API Directory, and your agent calls it.
Permission scoping
Wyjyt Geo Calculate takes its inputs in the request body rather than a resource id in the URL path, so scope by operation: limit the agent to the operations it needs, such as converting coordinates or calculating distance. You choose that set, so fence and sky calculations are not included unless you add them.
Credential isolation
Wyjyt Geo Calculate needs no credential, so there is no secret to store, and nothing sensitive enters the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'convert geo coordinates to a standard format' or 'calculate distance between points', and Jentic returns the matching Wyjyt Geo Calculate operation with its input schema so the agent calls the right endpoint without browsing the reference docs.
Alternatives and complements available in the Jentic catalogue.
Specific to using Wyjyt - Geo Calculate API through Jentic.
What authentication does the Wyjyt - Geo Calculate use?
The Wyjyt - Geo Calculate uses no authentication. Through Jentic, these credentials are stored encrypted in your Jentic One instance and injected at execution time, so raw secrets never enter the agent context.
Can I convert the list of geo coordinates to a standard format - (latlon | utm | mgrs with the Wyjyt - Geo Calculate?
Yes. Use the POST /Convert endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the Wyjyt - Geo Calculate?
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 convert the list of geo coordinates to a standard format - (latlon | utm | mgrs through Jentic?
Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'convert the list of geo coordinates to a standard format - (latlon | utm | mgrs '. Jentic returns the matching Wyjyt - Geo Calculate operation with its input schema. Load the schema and execute the call - credentials are injected automatically.
How many endpoints does the Wyjyt - Geo Calculate have?
The Wyjyt - Geo Calculate exposes 4 endpoints covering convert, distance, fence operations.
Can I limit what my agent is allowed to do with the Wyjyt - Geo Calculate API?
Yes. Because you run Jentic One yourself, your own rules decide which operations and credentials the agent may use, and Wyjyt - Geo Calculate scopes cleanly by operation since each call takes its inputs in the request body rather than a resource id in the path. You can allow only the operations the agent needs, such as POST /Convert to standardize coordinates or POST /Distance to measure between points, and leave POST /Fence and POST /Sky out unless you add them. The agent can only call the operations you have permitted, so you keep control over what it does with this API.