用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/brycewang-stanford/Auto-Empirical-Research-Skills --skill datacite-api命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | datacite-api |
| description | Resolve dataset DOIs and query research data metadata via DataCite |
| metadata | {"openclaw":{"emoji":"🔍","category":"literature","subcategory":"metadata","keywords":["DOI resolution","digital object identifier","FAIR data principles","data sharing"],"source":"https://support.datacite.org/docs/api"}} |
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.
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.
GET https://api.datacite.org/dois| 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 |
curl "https://api.datacite.org/dois?query=climate+change+dataset&resource-type-id=dataset&page[size]=10&sort=-created"
data array containing DOI records. Each record has attributes with doi, titles, creators, publisher, publicationYear, resourceType, descriptions, subjects, dates, relatedIdentifiers, fundingReferences, and geoLocations.GET https://api.datacite.org/dois/{doi}| Param | Type | Required | Description |
|---|---|---|---|
| doi | string | Yes | The full DOI (e.g., 10.5281/zenodo.1234567) |
curl "https://api.datacite.org/dois/10.5281/zenodo.3678171"
GET https://api.datacite.org/providers| 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 |
curl "https://api.datacite.org/providers?query=CERN&page[size]=5"
name, displayName, region, memberType, website, and associated repositories and DOI prefixes.GET https://api.datacite.org/clients| 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 |
curl "https://api.datacite.org/clients?query=zenodo&page[size]=5"
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.
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}'
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}'
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}'