Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API reference

TOOLS

API ScoringCheck your AI Readiness using our scorecardArazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationAPI ScoringArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/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 Technology Ltd. All rights reserved.
Switch to light modeSwitch to dark mode
APIs / Developer Tools / DataCite REST API
DataCite REST API logo

DataCite REST API

Official vendor OpenAPI document · agent-readyDeveloper 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://jentic.com/install.sh?src=apis&api=%2Fapis%2Fdatacite.org%2Fdatacite" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fdatacite.org%2Fdatacite" | 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?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring the DataCite REST API by hand means learning its Basic Auth with a repository client username and password against api.datacite.org and building the request and retry plumbing for DOI registration and lookup yourself. Through Jentic you install once, import the DataCite REST API from the API Directory, store the credentials once, and your agent calls it.

Permission scoping

Permission scoping

DataCite puts the DOI id in the URL path (/dois/{id}), so a rule can pin your agent to reading and updating specific DOIs. You choose the operations it may call, so registering new DOIs is not included unless you add that operation.

Credential management

Credential isolation

Your DataCite Basic Auth username and password are stored once, encrypted, by your own Jentic One instance and injected at execution time. They never enter the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'register a research DOI' or 'fetch citation metadata', and Jentic returns the matching DataCite operation with its input schema so the agent calls the right endpoint without browsing the DataCite documentation.

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 your Jentic One instance 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.

Can I limit what my agent is allowed to do with the DataCite REST API?

Yes. Because you run Jentic One yourself, your own rules decide which DataCite operations and credentials the agent may use. You can allow it to resolve and update specific DOIs through GET and PUT on /dois/{id} while leaving DOI registration via POST /dois out of scope, since the DOI id sits in the URL path and can be pinned by rule. Read-only browsing of /clients, /providers, /events, and /activities can likewise be granted or withheld per operation.

GET STARTED

Start building with DataCite REST API

Explore with Jentic One
View OpenAPI Document