Start a claim directly from an external search result, importing on demand if needed
Input
application/jsonexternalId
string
Required
Source-specific identifier
source
string
Required
External source (e.g., arxiv, semanticscholar)
maxLength: 50 bytesminLength: 2 bytesOutput
application/jsonclaim
ref#claimRequest
Required
No description available.
Errors
AuthenticationRequired
NotFound
InvalidRequest
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"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"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "AuthenticationRequired"
},
{
"name": "NotFound"
},
{
"name": "InvalidRequest"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"claim"
],
"properties": {
"claim": {
"ref": "#claimRequest",
"type": "ref"
}
}
},
"encoding": "application/json"
},
"description": "Start a claim directly from an external search result, importing on demand if needed"
}