Get prefilled form data for claiming a paper from an external source
Parameters
Output
application/jsonabstract
string
Required
Prefilled abstract
authors
array
Required
Prefilled authors
doi
string
Optional
DOI if available
existingChivePaper
ref#existingChivePaper
Optional
No description available.
externalId
string
Required
Source-specific external ID
externalIds
ref#externalIds
Optional
No description available.
externalUrl
stringuri
Required
External URL to the paper
keywords
array
Required
Prefilled keywords/categories
pdfUrl
stringuri
Optional
PDF URL if available
publicationDate
stringdatetime
Optional
Publication date
source
string
Required
Source system
title
string
Required
Prefilled title
Errors
AuthenticationRequired
NotFound
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "AuthenticationRequired"
},
{
"name": "NotFound"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"title",
"abstract",
"authors",
"keywords",
"source",
"externalId",
"externalUrl"
],
"properties": {
"doi": {
"type": "string",
"description": "DOI if available"
},
"title": {
"type": "string",
"description": "Prefilled title"
},
"pdfUrl": {
"type": "string",
"format": "uri",
"description": "PDF URL if available"
},
"source": {
"type": "string",
"description": "Source system"
},
"authors": {
"type": "array",
"items": {
"ref": "#submissionAuthor",
"type": "ref"
},
"description": "Prefilled authors"
},
"abstract": {
"type": "string",
"description": "Prefilled abstract"
},
"keywords": {
"type": "array",
"items": {
"type": "string"
},
"description": "Prefilled keywords/categories"
},
"externalId": {
"type": "string",
"description": "Source-specific external ID"
},
"externalIds": {
"ref": "#externalIds",
"type": "ref"
},
"externalUrl": {
"type": "string",
"format": "uri",
"description": "External URL to the paper"
},
"publicationDate": {
"type": "string",
"format": "datetime",
"description": "Publication date"
},
"existingChivePaper": {
"ref": "#existingChivePaper",
"type": "ref"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"source",
"externalId"
],
"properties": {
"source": {
"type": "string",
"maxLength": 50,
"minLength": 2,
"description": "External source (e.g., arxiv, semanticscholar)"
},
"externalId": {
"type": "string",
"description": "Source-specific identifier"
}
}
},
"description": "Get prefilled form data for claiming a paper from an external source"
}