searchByTitle
Search for scientific papers by title using Crossref metadata. Input a title and specify the number of results to retrieve structured information about relevant academic publications.
Instructions
Search for scientific papers by title in Crossref
Input Schema
Name | Required | Description | Default |
---|---|---|---|
rows | No | Number of results to return | |
title | Yes | The title to search for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"rows": {
"default": 5,
"description": "Number of results to return",
"type": "number"
},
"title": {
"description": "The title to search for",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}