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 / Climatiq API
Climatiq API logo

Climatiq API

★ Only Publicly Available OpenAPI DocumentData EnrichmentData Transformationbearer3 EndpointsREST

For Agents

Estimate greenhouse gas emissions for activities like travel, freight, and energy use, or search the underlying emission factor database. Three endpoints: search, estimate, and batch estimate.

Use for: Estimate the CO2 emissions for a 500 km truck freight leg, Search Climatiq for an emission factor for grid electricity in Germany, Calculate emissions for a batch of 50 business flights, Find the emission factor source for a given activity

Not supported: Does not handle carbon credit trading, ESG reporting filings, or company-level disclosure data - use for activity-based emissions calculation only.

Jentic publishes the only available OpenAPI specification for Climatiq API, keeping it validated and agent-ready. Climatiq turns activity data - kilometres travelled, kilowatt-hours consumed, kilograms of material moved - into greenhouse gas emission estimates by applying peer-reviewed emission factors. The spec exposes three endpoints: a search over the emission factor database, a single estimate call, and a batch estimate call for high-volume workloads. Authentication is HTTP bearer with a Climatiq API key, and the API is well suited to sustainability dashboards, freight calculators, and AI agents that need a defensible carbon number for an activity.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Climatiq API to your agent

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

Search the Climatiq emission factor database by activity, region, or source

Estimate CO2-equivalent emissions for a single activity such as a freight leg or a flight

Submit batch estimate requests to score many activities in one call

Attach a peer-reviewed emission factor and source to every calculated number for audit trails

Power agent-driven sustainability questions with structured, citable carbon estimates

Use Cases

Patterns agents use Climatiq API for, with concrete tasks.

★ Freight Carbon Calculator

Logistics platforms need to display per-shipment CO2 figures alongside cost and ETA. Climatiq /data/v1/estimate accepts a freight activity (mode, distance, weight, region) and returns CO2-equivalent emissions sourced from a named emission factor, so the platform can show a defensible carbon number with a citation rather than a vague estimate.

POST /data/v1/estimate with mode=road, distance_km=500, weight_kg=20000 and parse co2e and co2e_unit from the response

Sustainability Dashboard for Energy Use

Operations teams tracking facility energy use need to convert kWh figures into CO2-equivalent values across regions where the grid mix differs significantly. Climatiq's emission factor search lets the dashboard pick the right factor per region, and /data/v1/estimate calculates the resulting emissions with the source explicitly tagged for each line.

Search /data/v1/search for grid electricity factor in DE then call /data/v1/estimate with energy=12000 kWh to return CO2e for that facility

Bulk Emissions Backfill

Companies running their first carbon report often need to score hundreds or thousands of historical activities (flights, fuel purchases, freight legs) in one pass. /data/v1/estimate/batch accepts a list of activities in a single request and returns parallel results, which is far more efficient than looping single estimate calls and avoids repeated round-trips.

POST /data/v1/estimate/batch with an array of 500 historical travel activities and store the returned co2e values in the reporting warehouse

Agent-Driven Carbon Questions

An AI agent in a finance copilot uses Jentic to answer what is the carbon impact of this purchase questions. Jentic routes the intent to Climatiq's estimate endpoint, the agent loads the schema, executes the bearer-authenticated POST, and returns the CO2-equivalent value with the underlying emission factor source so the answer is auditable.

Use Jentic to search for estimate emissions for an activity, load the schema for POST /data/v1/estimate, and execute with the activity payload

Key Endpoints

3 endpoints — jentic publishes the only available openapi specification for climatiq api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

GET

/data/v1/search

Search emission factors by activity, region, and source

POST

/data/v1/estimate

Calculate emissions for a single activity

POST

/data/v1/estimate/batch

Calculate emissions for a batch of activities

GET

/data/v1/search

Search emission factors by activity, region, and source

POST

/data/v1/estimate

Calculate emissions for a single activity

POST

/data/v1/estimate/batch

Calculate emissions for a batch of activities

Why Jentic?

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

Credential management

Credential isolation

Your Climatiq API key is stored once, encrypted, by your own Jentic One instance and injected as the bearer token at execution time. It never enters the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'calculate freight emissions' or 'search emission factors', and Jentic returns the matching Climatiq operation with its input schema, including the activity object structure, so the agent calls it correctly without browsing the reference docs.

Time to first call

Time to first call

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Climate Tracker Initiative ESG Data API

→

Returns reported company-level Scope 1-3 emissions; pairs with Climatiq when reported figures are unavailable

Choose Climate Tracker Initiative for company-disclosed emissions; choose Climatiq when you have raw activity data and need to calculate emissions yourself

Complementary

Climate FieldView

→

On-farm operation data that can feed agriculture-sector emissions calculations

Use FieldView to source agricultural activity data and Climatiq to convert it into emissions

Alternative

ClinchPad

→

Different domain (sales pipeline); included as catalog neighbor

Not a real alternative for emissions calculation; agents should not select this for carbon work

FAQs

Specific to using Climatiq API through Jentic.

Why is there no official OpenAPI spec for Climatiq API?

Climatiq does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Climatiq API via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.

What authentication does the Climatiq API use?

Climatiq uses HTTP bearer authentication. Send your Climatiq API key as Authorization: Bearer YOUR_KEY on calls to /data/v1/search, /data/v1/estimate, and /data/v1/estimate/batch. Through Jentic the key is held encrypted in your Jentic One instance and injected at execution time.

Can I calculate emissions for a batch of activities in one call?

Yes. POST /data/v1/estimate/batch accepts an array of activities and returns the CO2-equivalent value plus the emission factor used for each one, in the same order. This is the right endpoint for annual reporting backfills and any workload above a few dozen activities.

What are the rate limits for the Climatiq API?

The OpenAPI spec does not list specific numeric rate limits. In practice Climatiq applies per-plan limits documented on its website. Implement exponential backoff on 429 responses and prefer the batch endpoint over many single-estimate calls to stay under typical limits.

How do I estimate CO2 for a freight leg through Jentic?

Run pip install jentic, search Jentic for estimate freight emissions, load the schema for POST /data/v1/estimate, and execute with a freight activity payload (mode, distance, weight, region). Jentic injects the bearer token from the vault. Get started with Jentic One, the self-hosted execution layer.

Are Climatiq estimates auditable?

Yes. The estimate response includes the emission factor that was applied, its source, region, and year, so every CO2 figure can be traced back to a specific peer-reviewed factor in the Climatiq database. This is the main reason teams use Climatiq over a hand-coded calculation.

GET STARTED

Start building with Climatiq API

Explore with Jentic
View OpenAPI Document