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 / Developer Tools / DataCite REST API
DataCite REST API logo

DataCite REST API

✓ Official Vendor SpecDeveloper ToolsPackage Registrybasic13 EndpointsREST

For Agents

Register, update, and resolve research DOIs and pull associated metadata, citation events, and provider/client records from DataCite's PID infrastructure.

Use for: I need to register a DOI for a new dataset, Retrieve citation metadata for a research DOI, Update the landing page URL attached to an existing DOI, List all DOIs minted by a specific repository client

Not supported: Does not handle full-text article hosting, peer review, or repository file storage — use for DOI registration, resolution, and citation metadata only.

The DataCite REST API lets researchers, repositories, and data providers register and manage Digital Object Identifiers (DOIs) for research outputs. It exposes endpoints for creating and resolving DOIs, retrieving rich Citation metadata, browsing repository clients and providers, and pulling DOI activity logs and PID Graph events. The API backs the global DataCite Commons service used by thousands of repositories to make datasets, software, and grey literature citable and findable.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the DataCite REST API to your agent

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

Register a new DOI for a dataset, paper, or software release with DataCite XML or JSON metadata

Update or hide an existing DOI's metadata, URL, or state via PUT /dois/{id}

Look up rich citation metadata for any DOI to populate citation widgets and reference lists

Browse and filter repository clients and providers participating in the DataCite consortium

Pull DOI activity logs and PID Graph events for citation-tracking and analytics dashboards

Check service health via the heartbeat endpoint before submitting registration jobs

Use Cases

Patterns agents use DataCite REST API for, with concrete tasks.

★ Repository DOI Minting

Institutional repositories use the DataCite REST API to mint DOIs at deposit time, attaching descriptive metadata (creators, title, publisher, resource type) so that newly archived datasets and theses become immediately citable. The POST /dois endpoint accepts a full DataCite XML or JSON metadata payload and returns a registered DOI along with its DataCite Commons landing page. Most repositories integrate this in under a week alongside their submission workflow.

Register a DOI for a new dataset titled 'Coastal Erosion 2026' with creator ORCIDs and resource type Dataset, then return the resolved DataCite Commons URL

Citation Metadata Lookup

Reference managers, citation widgets, and AI research assistants resolve DOIs to structured citation metadata via GET /dois/{id}. The response includes creators, titles, publication year, related identifiers, and funding references — everything needed to format a complete citation in APA, MLA, BibTeX, or CSL JSON. This avoids screen-scraping publisher pages and keeps citations consistent across tools.

Fetch metadata for DOI 10.5281/zenodo.7777777 and return creators, title, year, and resource type formatted as a CSL JSON record

PID Graph Analytics

Research analytics platforms pull DOI activity logs and citation events via /events and /activities to build dashboards showing dataset reuse, software citations, and inter-DOI relationships. The PID Graph exposes typed relationships (IsCitedBy, IsSupplementTo, IsPartOf) so analytics tools can construct citation networks across the global research output graph without scraping publisher sites.

Pull all IsCitedBy events for DOI 10.5281/zenodo.7777777 in the last 90 days and aggregate citing DOIs by publisher

AI Agent Research Assistant

AI agents use Jentic to call the DataCite REST API for research-task workflows: resolving DOIs cited in a draft paper, validating that a dataset DOI is still active before submission, or fetching authoritative metadata to populate a citation. Through Jentic, an agent searches by intent, loads the operation schema, and executes without managing DataCite Basic Auth credentials directly — Jentic isolates the credentials in its vault.

Given a list of 20 DOIs in a manuscript, resolve each via GET /dois/{id} and return a structured table of title, year, and resource type

Key Endpoints

13 endpoints — the datacite rest api lets researchers, repositories, and data providers register and manage digital object identifiers (dois) for research outputs.

METHOD

PATH

DESCRIPTION

POST

/dois

Register a new DOI with DataCite metadata

GET

/dois/{id}

Resolve a DOI to its citation metadata

PUT

/dois/{id}

Update metadata or URL on an existing DOI

GET

/clients

List repository clients in the DataCite consortium

GET

/providers

List DataCite member providers

GET

/events

Retrieve PID Graph citation and relationship events

GET

/activities

Audit log of metadata changes for DOIs

POST

/dois

Register a new DOI with DataCite metadata

GET

/dois/{id}

Resolve a DOI to its citation metadata

PUT

/dois/{id}

Update metadata or URL on an existing DOI

GET

/clients

List repository clients in the DataCite consortium

GET

/providers

List DataCite member providers

GET

/events

Retrieve PID Graph citation and relationship events

GET

/activities

Audit log of metadata changes for DOIs

Why Jentic?

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

Credential management

Credential isolation

DataCite Basic Auth credentials (repository client username and password) are stored encrypted in the Jentic vault. Agents receive scoped session tokens — the raw password never enters the agent's context.

Intent-based discovery

Intent-based discovery

Agents search by intent (e.g. 'register a research DOI' or 'fetch citation metadata') and Jentic returns matching DataCite operations with their input schemas, so the agent can call POST /dois or GET /dois/{id} without browsing DataCite documentation.

Time to first call

Time to first call

Direct DataCite integration: 1-3 days to handle Basic Auth, metadata XML/JSON serialisation, and error mapping. Through Jentic: under 30 minutes — search, load schema, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Crossref API

→

Crossref registers DOIs primarily for journal articles and books; DataCite focuses on research data, software, and grey literature.

Choose Crossref when registering or resolving DOIs for scholarly publications, and DataCite for datasets, software releases, and other research outputs.

Complementary

Figshare API

→

Figshare hosts research artifacts and mints DataCite DOIs as part of its deposit flow.

Use Figshare to upload and host the artifact, then DataCite to look up or update the resulting DOI metadata.

FAQs

Specific to using DataCite REST API through Jentic.

What authentication does the DataCite REST API use?

The DataCite REST API uses HTTP Basic authentication with a repository client username and password issued by your DataCite member provider. Through Jentic, those credentials are stored encrypted in the MAXsystem vault and injected at call time, so agents never see the raw password.

Can I mint a new DOI with the DataCite REST API?

Yes. POST /dois accepts a DataCite metadata payload (creators, titles, publisher, resource type, and a target URL) and returns a registered DOI. Your client must have a prefix allocation from your provider before the call will succeed.

What are the rate limits for the DataCite REST API?

DataCite does not publish hard rate limits in the spec, but the production service throttles aggressive clients and asks high-volume integrators to coordinate via support. Cache GET /dois/{id} responses where possible and avoid tight loops over /events.

How do I resolve a DOI to citation metadata through Jentic?

Search Jentic for 'fetch citation metadata for a DOI', load the GET /dois/{id} operation, and execute it with the DOI as the id parameter. The response includes creators, titles, publication year, and related identifiers ready to format as BibTeX or CSL JSON.

Is the DataCite REST API free?

Read access to GET endpoints (DOIs, clients, providers, events) is free and public. Writing DOIs requires DataCite membership and a per-repository fee paid through a provider organisation — see datacite.org/membership.

Does the DataCite API expose citation graph events?

Yes. GET /events returns PID Graph events such as IsCitedBy, IsSupplementTo, and IsPartOf relationships between DOIs, which is how analytics tools build dataset citation dashboards.

GET STARTED

Start building with DataCite REST API

Explore with Jentic
View OpenAPI Document