Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

API 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 WorksAPI 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 / Explore API
Explore API logo

Opendatasoft Explore API

✓ Official Vendor SpecData EnrichmentData TransformationapiKey12 EndpointsREST

For Agents

Search a customer's open-data portal, query records with ODSQL filters, and export datasets in multiple formats through one REST API.

Use for: Search a portal for datasets containing a keyword and return their IDs and titles, List the schema fields for a specific dataset before querying it, Retrieve the first 100 records of a dataset filtered by a date range, Export the full contents of a dataset as CSV

Not supported: Does not handle dataset creation, schema modification, or user management — use for read-only catalog search, record queries, and exports only.

The Opendatasoft Explore API v2 is a read-only REST surface that gives developers structured access to every dataset hosted on a customer's Opendatasoft portal. It exposes the catalog (datasets, facets, records) and per-dataset queries with a consistent ODSQL filter language, plus export endpoints that stream results in CSV, GeoJSON, GPX and other formats. Suited to data-product teams that want one search and export pattern across hundreds of datasets without coding around per-dataset schemas.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Explore API to your agent

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

Search and paginate through every dataset on the portal via /catalog/datasets with full-text and ODSQL filters

Inspect dataset metadata and schema fields through /catalog/datasets/{dataset_id}

Query records inside any dataset with /catalog/datasets/{dataset_id}/records using ODSQL where, select, and group_by clauses

Stream catalog or dataset exports in CSV, GeoJSON, GPX, and other formats via /catalog/exports/{format} and /catalog/datasets/{dataset_id}/exports/{format}

Aggregate dataset facets across the portal through /catalog/facets and per-dataset facets through /catalog/datasets/{dataset_id}/facets

Build self-service portals where end users can preview, filter, and download datasets without bespoke integration per source

Use Cases

Patterns agents use Explore API for, with concrete tasks.

★ Self-Service Dataset Portal Frontend

Build a public-facing dataset browser on top of an Opendatasoft portal that lets users search the catalog, inspect schemas, preview records, and export in multiple formats. The Explore API v2 covers all four operations with consistent pagination and ODSQL filtering, removing the need to build a separate query layer per dataset.

Call /catalog/datasets with where="theme like 'transport'" and return the top 20 dataset titles and IDs.

Geospatial Data Export

Export records from any geo-enabled dataset directly as GeoJSON or GPX through /catalog/datasets/{dataset_id}/exports/{format}. Mapping applications can fetch ready-to-render features without building a transformation layer, and ODSQL where clauses limit the export to the bounding box or time window required.

Export dataset bicycle-counters as GeoJSON via /catalog/datasets/bicycle-counters/exports/geojson with where="date >= '2026-01-01'".

Catalog-Wide Analytics

Run analytics over an entire portal — counts of datasets per theme, per publisher, per modification month — using /catalog/facets and dataset metadata endpoints. Useful for portal owners producing monthly reports on coverage and freshness without exporting the catalog to a separate database.

Call /catalog/facets with facet="publisher" and return the top 10 publishers by dataset count.

Agent-Driven Open Data Lookups

An AI agent answering questions about a city or organisation's open data can use Jentic to discover the Explore API record-query operation, then run an ODSQL query against the matching dataset to ground its answer. Jentic returns the input schema so the agent constructs valid ODSQL where clauses without trial-and-error.

Through Jentic, search for "query records in an open data dataset" then call /catalog/datasets/{id}/records with a where clause supplied by the agent.

Key Endpoints

12 endpoints — the opendatasoft explore api v2 is a read-only rest surface that gives developers structured access to every dataset hosted on a customer's opendatasoft portal.

METHOD

PATH

DESCRIPTION

GET

/catalog/datasets

Search the dataset catalog

GET

/catalog/datasets/{dataset_id}

Get dataset metadata and schema

GET

/catalog/datasets/{dataset_id}/records

Query records in a dataset using ODSQL

GET

/catalog/datasets/{dataset_id}/exports/{format}

Export dataset records in CSV, GeoJSON, GPX, etc

GET

/catalog/exports/{format}

Export the entire catalog in a chosen format

GET

/catalog/facets

Aggregate facets across the catalog

GET

/catalog/datasets/{dataset_id}/facets

Aggregate facets within a dataset

GET

/catalog/datasets

Search the dataset catalog

GET

/catalog/datasets/{dataset_id}

Get dataset metadata and schema

GET

/catalog/datasets/{dataset_id}/records

Query records in a dataset using ODSQL

GET

/catalog/datasets/{dataset_id}/exports/{format}

Export dataset records in CSV, GeoJSON, GPX, etc

GET

/catalog/exports/{format}

Export the entire catalog in a chosen format

GET

/catalog/facets

Aggregate facets across the catalog

GET

/catalog/datasets/{dataset_id}/facets

Aggregate facets within a dataset

Why Jentic?

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

Credential management

Credential isolation

Opendatasoft API keys are stored encrypted in the Jentic vault (MAXsystem). Jentic injects the apikey query parameter at execution so the raw key never reaches the agent's context, even when calling private portals.

Intent-based discovery

Intent-based discovery

Agents query Jentic with intents like "export an open data dataset" or "search a portal catalog" and receive the matching Explore API operations with their input schemas, including ODSQL parameter hints.

Time to first call

Time to first call

Direct integration: 1-2 days to learn ODSQL, pagination, and export streaming. Through Jentic: under 1 hour.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Data.gov

→

Federal US open data catalog rather than a hosted SaaS portal platform

Choose Data.gov when targeting US federal sources; choose Opendatasoft when integrating a specific city or organisation's portal.

Alternative

Open Data Network API

→

Cross-publisher US public-data search rather than a per-portal record query API

Choose ODN to compare indicators across publishers; choose Opendatasoft for full-fidelity per-dataset record queries.

Complementary

Enigma Public Data API

→

Curated public-records data adjacent to portal data, useful for entity enrichment alongside Opendatasoft datasets

Use Enigma for company-level public records; use Opendatasoft for organisation-hosted reference and statistical datasets.

FAQs

Specific to using Explore API through Jentic.

What authentication does the Opendatasoft Explore API use?

The Explore API uses an apikey query parameter for portals that require authentication; public portals can be queried without a key. Jentic stores the apikey encrypted in MAXsystem and injects it at execution, so the value never enters the agent's prompt context.

Can I filter records with SQL-style queries on the Explore API?

Yes. The /catalog/datasets/{dataset_id}/records endpoint accepts an ODSQL where clause, plus select, group_by, order_by, limit, and offset. ODSQL is Opendatasoft's SQL dialect designed for the portal's record store and is the same language used by /catalog/datasets for catalog-level filtering.

What are the rate limits for the Opendatasoft Explore API?

Limits are portal-specific. Default public portal limits are documented by Opendatasoft (typically a few thousand calls per day for anonymous use, higher with an API key). Watch for HTTP 429 and back off; for heavy export jobs, prefer /exports/{format} which streams a single response over many record-page requests.

How do I export a dataset as CSV with the Explore API through Jentic?

Use the Jentic search query "export an open data dataset as CSV". Jentic returns /catalog/datasets/{dataset_id}/exports/csv with the input schema; the agent supplies the dataset ID and any ODSQL where clause and Jentic streams the CSV response. Sign up at https://app.jentic.com/sign-up.

Is the Opendatasoft Explore API free?

Public portals expose the API for free with default rate limits. Customer-hosted portals charge based on the underlying Opendatasoft subscription; the API access itself is included in the platform tier the customer is paying for.

Does the Explore API support write operations?

No. The Explore API v2 is read-only — only HTTP GET methods are supported. Dataset publishing and updates use the separate Opendatasoft Management API, which is not part of this spec.

GET STARTED

Start building with Explore API

Explore with Jentic
View OpenAPI Document