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 / Maps Geolocation / Geocod / Geocodio API
Geocodio API logo

Geocod Geocodio API

Browse all Geocod APIs
✓ Official Vendor SpecMaps GeolocationGeocodingapiKey, bearer11 EndpointsREST

For Agents

Geocode US and Canadian addresses, reverse-geocode coordinates, and append congressional, census, timezone, and district data — single requests or batch lists.

Use for: I need to geocode '1600 Pennsylvania Ave, Washington DC', Reverse geocode 38.8977, -77.0365 to a US street address, Append the congressional district to 500 customer addresses, Upload a CSV of addresses for batch geocoding

Not supported: Does not handle routing, turn-by-turn directions, or worldwide coverage outside the US and Canada — use for North American geocoding and address-data appends only.

Geocodio is a US- and Canada-focused geocoding API that converts addresses to coordinates and back, with optional data appending for congressional districts, census blocks, school districts, timezones, and more. The spec covers single forward and reverse lookups, batch processing for large lists, spreadsheet uploads with managed list status, and a distance/route-matrix endpoint. It is widely used by US-centric civic-tech and analytics platforms because of its accuracy on US street data and its append fields for political geographies.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Geocodio API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Geocodio 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.

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 Geocodio API.

Convert a US or Canadian address to latitude and longitude with /geocode

Reverse-geocode coordinates back to a postal address with /reverse

Append congressional district, census block, and school district data on a single request

Upload a spreadsheet of addresses and poll for a downloadable enriched file

Calculate distance or driving time between two coordinate pairs

Use Cases

Patterns agents use Geocodio API for, with concrete tasks.

★ Customer Address Cleanup

B2C operations teams onboarding new customers run their address book through Geocodio to standardise, validate, and append latitude/longitude. The /geocode endpoint accepts a free-form address and returns the canonical form along with coordinates, so downstream systems work with consistent formatting and can route shipments accurately.

Send each customer address to /geocode, store the canonical address and coordinates, and flag any record with accuracy below 0.8 for manual review

Political Geography Enrichment

Civic-tech tools and advocacy platforms need to know which congressional district a constituent lives in. Geocodio's append fields return congressional district, state-legislative district, and census block on a single /geocode call, eliminating the need to maintain separate shapefile lookups.

Geocode a list of voter addresses with the cd field appended, then group voters by congressional district for a campaign report

Bulk Spreadsheet Geocoding

Analysts with spreadsheets of thousands of addresses use Geocodio's list endpoints to upload, process, and download an enriched file without writing batch loops themselves. POST /lists uploads the file, GET /lists/{listId} polls status, and GET /lists/{listId}/download returns the result CSV — useful for one-off enrichment without standing up an ETL pipeline.

Upload addresses.csv to /lists, poll /lists/{listId} until processed, then call /lists/{listId}/download for the enriched file

AI Agent Address Resolver

An AI agent answering location questions or assembling a customer file can call Geocodio through Jentic. The agent searches for 'geocode an address', loads the /geocode schema, and executes the call with the address string. The Geocodio API key stays in the vault and the agent gets back a structured location object.

Search Jentic for 'geocode an address', execute /geocode for the address provided in the user prompt, and return the canonical address with lat/lng

Key Endpoints

11 endpoints — geocodio is a us- and canada-focused geocoding api that converts addresses to coordinates and back, with optional data appending for congressional districts, census blocks, school districts, timezones, and more.

METHOD

PATH

DESCRIPTION

GET

/geocode

Forward geocode an address to coordinates

GET

/reverse

Reverse geocode coordinates to an address

POST

/lists

Upload a spreadsheet of addresses for batch processing

GET

/lists/{listId}

Check the status of a batch list

GET

/lists/{listId}/download

Download the enriched results of a list

GET

/distance

Calculate distance or travel time between two points

GET

/geocode

Forward geocode an address to coordinates

GET

/reverse

Reverse geocode coordinates to an address

POST

/lists

Upload a spreadsheet of addresses for batch processing

GET

/lists/{listId}

Check the status of a batch list

GET

/lists/{listId}/download

Download the enriched results of a list

GET

/distance

Calculate distance or travel time between two points

Why Jentic?

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

Credential management

Credential isolation

Geocodio API keys live in the Jentic vault encrypted with the customer-scoped key. Jentic injects the key as either the api_key query parameter or the Authorization bearer token depending on the operation, so the raw secret never enters the agent's context.

Intent-based discovery

Intent-based discovery

Agents search by intent ('geocode an address', 'append congressional district') and Jentic returns the matching Geocodio operation with its parameter schema, so the agent picks the right endpoint and append fields without reading docs.

Time to first call

Time to first call

Direct Geocodio integration: a few hours to wire single calls plus the upload/poll/download flow for batch lists. Through Jentic: under 30 minutes to call /geocode and the list endpoints from an agent.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Smarty US Autocomplete

→

USPS-grade US address validation and autocomplete

Choose Smarty when you need official USPS validation and CASS certification rather than coordinate-first geocoding

Alternative

OpenCage

→

Worldwide forward and reverse geocoding aggregating multiple open data sources

Choose OpenCage when your addresses extend beyond the US/Canada coverage that Geocodio specialises in

Complementary

HERE Maps

→

Routing, traffic, and map tiles to pair with Geocodio's geocoding output

Pair HERE with Geocodio when you geocode an address and then need to route or render it on a map

FAQs

Specific to using Geocodio API through Jentic.

What authentication does the Geocodio API use?

Geocodio accepts an API key passed as the api_key query parameter or as a bearer token in the Authorization header. Through Jentic the key is stored encrypted in the vault and attached at execution time, so an agent calling /geocode never handles the raw secret.

Can I geocode Canadian as well as US addresses?

Yes. Geocodio supports both US and Canadian addresses on the same /geocode and /reverse endpoints. Specify country='ca' in the query parameters to bias parsing for Canadian formats.

Can I append congressional districts to my addresses?

Yes. Pass fields=cd (or cd119, cd118 for a specific Congress) on /geocode or /reverse to receive the congressional district alongside the coordinates. The same fields parameter accepts census, school, timezone, and other appends.

What are the rate limits for the Geocodio API?

The OpenAPI spec does not declare a per-second rate limit. Geocodio meters by lookups per day on the paid plans documented at geocod.io — the /lists endpoints are the recommended path for very large jobs because they process server-side rather than counting against streaming quotas.

How do I batch-geocode a CSV of addresses through Jentic?

Run pip install jentic, search Jentic for 'upload addresses for batch geocoding', then call POST /lists with the file, poll GET /lists/{listId} for status, and download via /lists/{listId}/download once the list is processed.

Is the Geocodio API free?

Geocodio offers a free tier with daily lookup allowances and paid plans for higher volume. Pricing tiers and append-field availability are listed on geocod.io — the API surface is the same across tiers but rate and feature limits vary.

GET STARTED

Start building with Geocodio API

Explore with Jentic
View OpenAPI Document