Free overview - agent capabilities and pricing
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://research-intel-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Search academic papers by keyword query
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search query (e.g., \"machine learning\", \"climate change\")"
},
"limit": {
"default": 10,
"description": "Number of results (1-100)",
"type": "number",
"minimum": 1,
"maximum": 100
},
"year": {
"description": "Filter by year range (e.g., \"2020-2024\" or \"2023\")",
"type": "string"
}
},
"required": [
"query",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://research-intel-production.up.railway.app/entrypoints/paper-search/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"query": "<Search query (e.g., \"machine learning\", \"climate change\")>",
"limit": 1
}
}
'
Get full paper details including abstract and references
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"paperId": {
"type": "string",
"description": "Semantic Scholar paper ID, DOI, or arXiv ID"
}
},
"required": [
"paperId"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://research-intel-production.up.railway.app/entrypoints/paper-details/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"paperId": "<Semantic Scholar paper ID, DOI, or arXiv ID>"
}
}
'
Search for academic authors/researchers by name
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Author name to search"
},
"limit": {
"default": 10,
"description": "Number of results (1-50)",
"type": "number",
"minimum": 1,
"maximum": 50
}
},
"required": [
"query",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://research-intel-production.up.railway.app/entrypoints/author-search/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"query": "<Author name to search>",
"limit": 1
}
}
'
Get all papers published by an author
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"authorId": {
"type": "string",
"description": "Semantic Scholar author ID"
},
"limit": {
"default": 20,
"description": "Number of papers (1-100)",
"type": "number",
"minimum": 1,
"maximum": 100
}
},
"required": [
"authorId",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://research-intel-production.up.railway.app/entrypoints/author-papers/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"authorId": "<Semantic Scholar author ID>",
"limit": 1
}
}
'
Get papers that cite a given paper
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"paperId": {
"type": "string",
"description": "Semantic Scholar paper ID, DOI, or arXiv ID"
},
"limit": {
"default": 20,
"description": "Number of citations (1-100)",
"type": "number",
"minimum": 1,
"maximum": 100
}
},
"required": [
"paperId",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://research-intel-production.up.railway.app/entrypoints/citations/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"paperId": "<Semantic Scholar paper ID, DOI, or arXiv ID>",
"limit": 1
}
}
'