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 / Healthcare / OpenTrials API
OpenTrials API logo

OpenTrials API

✓ Official Vendor SpecHealthcareClinical Datanone17 EndpointsREST

For Agents

Search clinical trials, FDA applications, and supporting documents, and look up trials, conditions, interventions, organisations, and persons by ID.

Use for: Search clinical trials about diabetes drug X, Find documents related to a specific trial ID, Autocomplete a condition name in clinical trials, Look up an FDA application by ID

Not supported: Does not handle trial registration, patient enrollment, or adverse-event reporting — use for read-only OpenTrials search and lookup only.

OpenTrials API provides programmatic access to a database of clinical trial records, supporting documents, FDA applications, conditions, interventions, organisations, persons, and publications. Endpoints cover free-text and faceted search, autocomplete suggestions, FDA document search, and direct lookup of trials and their record provenance. The API is read-only with no authentication required, and is intended for transparency, research, and aggregation use cases that build on top of clinical trial registries.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the OpenTrials API to your agent

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

Run full-text search across trials, documents, and FDA applications via /search

Autocomplete trial-related entities with /search/autocomplete/{in}

Search FDA application documents via /search/fda_documents

Retrieve a specific trial by ID with /trials/{id} and inspect its source records

Look up conditions, interventions, organisations, persons, and publications by ID

List FDA applications and inspect a single application's records

Enumerate the data sources contributing to the database with /sources

Use Cases

Patterns agents use OpenTrials API for, with concrete tasks.

★ Clinical Trial Discovery

Researchers and journalists investigating a drug or condition can run /search with filters to surface every registered trial and supporting document available in OpenTrials. Each trial returned exposes its source registries, intervention list, and condition list, along with /trials/{id}/records linking back to the underlying registry entries. This is useful for systematic review preparation and for spotting trial registration mismatches across registries.

GET /search with q='metformin diabetes' and inspect each returned trial's /trials/{id}/records to gather all registry entries

FDA Document Lookup

Regulatory analysts and pharma intelligence teams can use /search/fda_documents to find FDA review documents, then /fda_applications/{id} to fetch the full application record. /documents and /documents/{id} expose the cross-referenced supporting documents (protocols, results, statistical analysis plans) that OpenTrials has indexed alongside the application.

GET /search/fda_documents with q='ozempic' and resolve the top results to /fda_applications/{id} for full application metadata

Autocomplete in Trial Search UIs

Frontends building a trial search experience can wire /search/autocomplete/{in} to provide type-ahead suggestions for conditions, interventions, organisations, or persons. The {in} path parameter selects the entity type to autocomplete against, returning ranked suggestions for the user's partial input. This avoids implementing a separate suggestion index on the consumer side.

GET /search/autocomplete/conditions?q=alzhei and return the top 10 matching condition names

AI Agent Clinical Research Assistant

An AI agent helping a researcher answer 'find all trials of drug X for condition Y' can call OpenTrials through Jentic without writing endpoint URLs. Jentic resolves the agent's intent into the right /search or /trials/{id} call, dispatches the request, and returns structured JSON the agent can summarise. Because OpenTrials is unauthenticated, no key handling is needed.

Through Jentic, search 'find clinical trials about a drug', resolve to GET /search, and execute with q='pembrolizumab melanoma'

Key Endpoints

17 endpoints — opentrials api provides programmatic access to a database of clinical trial records, supporting documents, fda applications, conditions, interventions, organisations, persons, and publications.

METHOD

PATH

DESCRIPTION

GET

/search

Full-text search across trials and documents

GET

/search/autocomplete/{in}

Autocomplete suggestions by entity type

GET

/search/fda_documents

Search FDA application documents

GET

/trials/{id}

Look up a trial by ID

GET

/trials/{id}/records

Get source registry records for a trial

GET

/fda_applications/{id}

Look up an FDA application by ID

GET

/sources

List contributing data sources

GET

/search

Full-text search across trials and documents

GET

/search/autocomplete/{in}

Autocomplete suggestions by entity type

GET

/search/fda_documents

Search FDA application documents

GET

/trials/{id}

Look up a trial by ID

GET

/trials/{id}/records

Get source registry records for a trial

GET

/fda_applications/{id}

Look up an FDA application by ID

GET

/sources

List contributing data sources

Why Jentic?

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

Credential management

Credential isolation

OpenTrials has no auth, so Jentic dispatches the request without provisioning credentials. There is nothing for the agent context to leak.

Intent-based discovery

Intent-based discovery

Agents search Jentic for intents like 'search clinical trials' or 'look up an FDA application' and Jentic returns the matching OpenTrials operation with its parameter schema.

Time to first call

Time to first call

Direct integration with OpenTrials: 1-2 hours to handle search faceting and entity-type autocomplete. Through Jentic: under 30 minutes — search, load, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

ClinicalTrials.gov API

→

U.S. NIH-operated registry that is one of OpenTrials' source registries; use directly for canonical U.S. trial records.

Choose ClinicalTrials.gov for canonical U.S. records; use OpenTrials when you need cross-registry aggregation.

Complementary

Open Targets Platform REST API

→

Pair Open Targets target-disease evidence with OpenTrials trial records for the same target or condition.

Use both when the user wants both biological evidence and active trial coverage.

Complementary

NCBI Datasets API

→

NCBI Datasets covers genes and genomes referenced by trials' interventions and conditions.

Pair with OpenTrials when the user needs gene-level metadata alongside trial discovery.

FAQs

Specific to using OpenTrials API through Jentic.

What authentication does the OpenTrials API use?

None — the spec defines no security schemes. Read-only requests go out unauthenticated. Through Jentic the calls dispatch directly with no vault entry needed for this API.

Can I search across multiple registries in one request with the OpenTrials API?

Yes — /search aggregates across all registries OpenTrials has indexed. The /sources endpoint enumerates the contributing registries so you can verify coverage. Each returned trial exposes its underlying source records via /trials/{id}/records.

What are the rate limits for the OpenTrials API?

OpenTrials does not document a fixed rate limit on the public spec. Treat it as a community resource and back off on transient errors. Heavy automated workloads should be run against a local mirror if available.

How do I look up a trial by ID through Jentic?

Search Jentic for 'look up clinical trial', load the GET /trials/{id} schema, and execute with the trial ID. Jentic returns the trial record including the linked /trials/{id}/records list of source registry entries.

Does the OpenTrials API include results data for trials?

Trial result publications and supporting documents are accessed through /publications/{id} and /documents/{id} respectively. The trial record itself links to these IDs so the consumer can pull results when present in the source registry.

What's the difference between /trials/{id} and /trials/{id}/records?

/trials/{id} returns the consolidated OpenTrials view of a trial, while /trials/{id}/records returns the underlying registry entries (e.g. ClinicalTrials.gov, EUCTR, ISRCTN) that were merged. /trials/{trialId}/records/{id} returns one specific source record for audit purposes.

GET STARTED

Start building with OpenTrials API

Explore with Jentic
View OpenAPI Document