跳到主要内容
知仓学习社ZHICANG

datacite-api

Resolve dataset DOIs and query research data metadata via DataCite

执行命令联网无严重或高危命中brycewang-stanford/Auto-Empirical-Research-Skills

它会碰到什么

扫了多少1 个文本文件,6 KB
它会碰到什么执行命令联网
命中总数7 处
命中统计严重 0 · 高 0 · 中 0 · 低 0

这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。

技能内容

DataCite API Guide

Overview

DataCite is a leading global DOI registration agency focused on research data. While CrossRef primarily handles DOIs for publications, DataCite specializes in assigning persistent identifiers to datasets, software, samples, instruments, and other research outputs. DataCite has registered over 50 million DOIs from thousands of data repositories worldwide.

The DataCite REST API provides access to metadata for all DataCite DOIs. It is essential for researchers and developers working with research data discovery, data citation, FAIR (Findable, Accessible, Interoperable, Reusable) data practices, and repository integration. The metadata follows the DataCite Metadata Schema, which is designed specifically for describing research data and includes fields for resource types, funding references, geolocation, and related identifiers.

The API is free, open, and requires no authentication. It returns JSON responses following the JSON:API specification, with robust filtering, faceting, and pagination support.

Authentication

No authentication required. The DataCite API is fully open and free to use. No API key, registration, or email is needed. For write operations (DOI registration and metadata updates), authentication via DataCite member credentials is required, but read-only access is completely open.

Core Endpoints

DOIs: Search and Retrieve Dataset Metadata

  • URL: GET https://api.datacite.org/dois
  • Parameters:

| Param | Type | Required | Description |

|-------|------|----------|-------------|

| query | string | No | Full-text search query |

| resource-type-id | string | No | Filter by resource type (dataset, software, text, etc.) |

| affiliation-id | string | No | Filter by creator affiliation ROR ID |

| registered | string | No | Filter by registration year (e.g., 2024) |

| page[size] | integer | No | Results per page (default: 25, max: 1000) |

| page[number] | integer | No | Page number for pagination |

| sort | string | No | Sort field: relevance, created, -created, updated |

  • Example:
  curl "https://api.datacite.org/dois?query=climate+change+dataset&resource-type-id=dataset&page[size]=10&sort=-created"
  • Response: JSON:API formatted response with data array containing DOI records. Each record has attributes with doi, titles, creators, publisher, publicationYear, resourceType, descriptions, subjects, dates, relatedIdentifiers, fundingReferences, and geoLocations.

Single DOI: Direct Lookup

  • URL: GET https://api.datacite.org/dois/{doi}
  • Parameters:

| Param | Type | Required | Description |

|-------|------|----------|-------------|

| doi | string | Yes | The full DOI (e.g., 10.5281/zenodo.1234567) |

  • Example:
  curl "https://api.datacite.org/dois/10.5281/zenodo.3678171"
  • Response: JSON:API response with complete metadata for the specified DOI, including all DataCite Metadata Schema fields.

Providers: Data Repository Information

  • URL: GET https://api.datacite.org/providers
  • Parameters:

| Param | Type | Required | Description |

|-------|------|----------|-------------|

| query | string | No | Search provider name or description |

| region | string | No | Filter by region (e.g., EMEA, Americas, Asia Pacific) |

| page[size] | integer | No | Results per page |

  • Example:
  curl "https://api.datacite.org/providers?query=CERN&page[size]=5"
  • Response: JSON:API response with provider records including name, displayName, region, memberType, website, and associated repositories and DOI prefixes.

Clients: Repository Details

  • URL: GET https://api.datacite.org/clients
  • Parameters:

| Param | Type | Required | Description |

|-------|------|----------|-------------|

| query | string | No | Search repository name |

| provider-id | string | No | Filter by provider |

| software | string | No | Filter by repository software (e.g., dspace, dataverse) |

| page[size] | integer | No | Results per page |

  • Example:
  curl "https://api.datacite.org/clients?query=zenodo&page[size]=5"
  • Response: JSON:API response with repository records including name, DOI count, and service details.

Rate Limits

No published rate limits. DataCite does not enforce strict API quotas for read access. However, the service is operated by a nonprofit organization, so users should implement reasonable request pacing. For large-scale data mining, use the DataCite OAI-PMH endpoint or the public data file available at https://datafiles.datacite.org. Sustained high-volume requests may be throttled without notice.

Common Patterns

Discover Datasets for a Research Topic

Find published datasets related to a research area:

curl -s "https://api.datacite.org/dois?query=CRISPR+genome+editing&resource-type-id=dataset&page[size]=5&sort=-created" | jq '.data[] | {doi: .attributes.doi, title: .attributes.titles[0].title, year: .attributes.publicationYear, publisher: .attributes.publisher}'

Find Software Citations

Search for research software registered with DataCite:

curl -s "https://api.datacite.org/dois?query=python+machine+learning&resource-type-id=software&page[size]=10" | jq '.data[] | {doi: .attributes.doi, title: .attributes.titles[0].title, year: .attributes.publicationYear}'

Link Datasets to Publications

Use related identifiers to find papers associated with a dataset:

curl -s "https://api.datacite.org/dois/10.5281/zenodo.3678171" | jq '.data.attributes.relatedIdentifiers[] | select(.relationType == "IsSupplementTo" or .relationType == "IsReferencedBy") | {type: .relationType, id: .relatedIdentifier}'

References

  • Official documentation: https://support.datacite.org/docs/api
  • DataCite Metadata Schema: https://schema.datacite.org/
  • JSON:API specification: https://jsonapi.org/

想直接用这个技能?

本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。