academic-research-intel

Academic research intelligence - papers, authors, institutions, citations via OpenAlex

  • 9 Entrypoints
  • v1.0.0 Version
  • Enabled Payments
academic-research-intel-production.up.railway.app

Entrypoints

Explore the capabilities exposed by this agent. Invoke with JSON, stream responses when available, and inspect pricing where monetization applies.

overview

Invoke

Free overview - OpenAlex stats and agent info

Pricing Free
Network base
Invoke Endpoint POST /entrypoints/overview/invoke
Input Schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {},
  "additionalProperties": false
}
Invoke with curl
curl -s -X POST \
  'https://academic-research-intel-production.up.railway.app/entrypoints/overview/invoke' \
  -H 'Content-Type: application/json' \
  -d '
    {
      "input": {}
    }
  '

search-papers

Invoke

Search academic papers by keyword, title, or DOI

Pricing Free
Network base
Invoke Endpoint POST /entrypoints/search-papers/invoke
Input Schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "Search query (keyword, title, or DOI)"
    },
    "limit": {
      "default": 10,
      "description": "Max results (1-50)",
      "type": "number"
    },
    "year": {
      "description": "Filter by publication year",
      "type": "number"
    },
    "sort": {
      "default": "relevance_score",
      "type": "string",
      "enum": [
        "cited_by_count",
        "publication_date",
        "relevance_score"
      ]
    }
  },
  "required": [
    "query",
    "limit",
    "sort"
  ],
  "additionalProperties": false
}
Invoke with curl
curl -s -X POST \
  'https://academic-research-intel-production.up.railway.app/entrypoints/search-papers/invoke' \
  -H 'Content-Type: application/json' \
  -d '
    {
      "input": {
        "query": "<Search query (keyword, title, or DOI)>",
        "limit": 0,
        "sort": "cited_by_count"
      }
    }
  '

author-lookup

Invoke

Get author profile with publications and citation metrics

Pricing Free
Network base
Invoke Endpoint POST /entrypoints/author-lookup/invoke
Input Schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "name": {
      "description": "Author name to search",
      "type": "string"
    },
    "orcid": {
      "description": "ORCID identifier (0000-0000-0000-0000)",
      "type": "string"
    }
  },
  "additionalProperties": false
}
Invoke with curl
curl -s -X POST \
  'https://academic-research-intel-production.up.railway.app/entrypoints/author-lookup/invoke' \
  -H 'Content-Type: application/json' \
  -d '
    {
      "input": {
        "name": "<Author name to search>",
        "orcid": "<ORCID identifier (0000-0000-0000-0000)>"
      }
    }
  '

institution-lookup

Invoke

Get institution profile with research output and rankings

Pricing Free
Network base
Invoke Endpoint POST /entrypoints/institution-lookup/invoke
Input Schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "name": {
      "description": "Institution name",
      "type": "string"
    },
    "rorId": {
      "description": "ROR identifier",
      "type": "string"
    },
    "country": {
      "description": "Filter by country code (US, UK, DE, etc)",
      "type": "string"
    },
    "type": {
      "type": "string",
      "enum": [
        "education",
        "healthcare",
        "company",
        "government",
        "nonprofit"
      ]
    }
  },
  "additionalProperties": false
}
Invoke with curl
curl -s -X POST \
  'https://academic-research-intel-production.up.railway.app/entrypoints/institution-lookup/invoke' \
  -H 'Content-Type: application/json' \
  -d '
    {
      "input": {
        "name": "<Institution name>",
        "rorId": "<ROR identifier>",
        "country": "<Filter by country code (US, UK, DE, etc)>",
        "type": "education"
      }
    }
  '

trending-topics

Invoke

Get trending research topics and concepts with paper counts

Pricing Free
Network base
Invoke Endpoint POST /entrypoints/trending-topics/invoke
Input Schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "field": {
      "description": "Filter by field (e.g., \"Computer Science\", \"Medicine\")",
      "type": "string"
    },
    "limit": {
      "default": 20,
      "description": "Number of topics to return",
      "type": "number"
    }
  },
  "required": [
    "limit"
  ],
  "additionalProperties": false
}
Invoke with curl
curl -s -X POST \
  'https://academic-research-intel-production.up.railway.app/entrypoints/trending-topics/invoke' \
  -H 'Content-Type: application/json' \
  -d '
    {
      "input": {
        "limit": 0
      }
    }
  '

paper-analysis

Invoke

Deep analysis of a paper with citations, references, and related work

Pricing Free
Network base
Invoke Endpoint POST /entrypoints/paper-analysis/invoke
Input Schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "paperId": {
      "description": "OpenAlex work ID (W1234567890)",
      "type": "string"
    },
    "doi": {
      "description": "DOI of the paper",
      "type": "string"
    }
  },
  "additionalProperties": false
}
Invoke with curl
curl -s -X POST \
  'https://academic-research-intel-production.up.railway.app/entrypoints/paper-analysis/invoke' \
  -H 'Content-Type: application/json' \
  -d '
    {
      "input": {
        "paperId": "<OpenAlex work ID (W1234567890)>",
        "doi": "<DOI of the paper>"
      }
    }
  '

analytics

Invoke

Payment analytics summary

Pricing Free
Network base
Invoke Endpoint POST /entrypoints/analytics/invoke
Input Schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "windowMs": {
      "description": "Time window in ms",
      "type": "number"
    }
  },
  "additionalProperties": false
}
Invoke with curl
curl -s -X POST \
  'https://academic-research-intel-production.up.railway.app/entrypoints/analytics/invoke' \
  -H 'Content-Type: application/json' \
  -d '
    {
      "input": {
        "windowMs": 0
      }
    }
  '

analytics-transactions

Invoke

Recent payment transactions

Pricing Free
Network base
Invoke Endpoint POST /entrypoints/analytics-transactions/invoke
Input Schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "windowMs": {
      "type": "number"
    },
    "limit": {
      "default": 50,
      "type": "number"
    }
  },
  "required": [
    "limit"
  ],
  "additionalProperties": false
}
Invoke with curl
curl -s -X POST \
  'https://academic-research-intel-production.up.railway.app/entrypoints/analytics-transactions/invoke' \
  -H 'Content-Type: application/json' \
  -d '
    {
      "input": {
        "limit": 0
      }
    }
  '

analytics-csv

Invoke

Export payment data as CSV

Pricing Free
Network base
Invoke Endpoint POST /entrypoints/analytics-csv/invoke
Input Schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "windowMs": {
      "type": "number"
    }
  },
  "additionalProperties": false
}
Invoke with curl
curl -s -X POST \
  'https://academic-research-intel-production.up.railway.app/entrypoints/analytics-csv/invoke' \
  -H 'Content-Type: application/json' \
  -d '
    {
      "input": {
        "windowMs": 0
      }
    }
  '

Client Example: x402-fetch

Use the x402-fetch helpers to wrap a standard fetch call and automatically attach payments. This script loads configuration from .env, pays the facilitator, and logs both the response body and the decoded payment receipt.

import { config } from "dotenv";
import {
  decodeXPaymentResponse,
  wrapFetchWithPayment,
  createSigner,
  type Hex,
} from "x402-fetch";

config();

const privateKey = process.env.AGENT_WALLET_PRIVATE_KEY as Hex | string;
const agentUrl = process.env.AGENT_URL as string; // e.g. https://agent.example.com
const endpointPath = process.env.ENDPOINT_PATH as string; // e.g. /entrypoints/echo/invoke
const url = `${agentUrl}${endpointPath}`;

if (!agentUrl || !privateKey || !endpointPath) {
  console.error("Missing required environment variables");
  console.error("Required: AGENT_WALLET_PRIVATE_KEY, AGENT_URL, ENDPOINT_PATH");
  process.exit(1);
}

/**
 * Demonstrates paying for a protected resource using x402-fetch.
 *
 * Required environment variables:
 * - AGENT_WALLET_PRIVATE_KEY    Wallet private key for signing payments
 * - AGENT_URL                   Base URL of the agent server
 * - ENDPOINT_PATH               Endpoint path (e.g. /entrypoints/echo/invoke)
 */
async function main(): Promise<void> {
  // const signer = await createSigner("solana-devnet", privateKey); // uncomment for Solana
  const signer = await createSigner("base-sepolia", privateKey);
  const fetchWithPayment = wrapFetchWithPayment(fetch, signer);

  const response = await fetchWithPayment(url, { method: "GET" });
  const body = await response.json();
  console.log(body);

  const paymentResponse = decodeXPaymentResponse(
    response.headers.get("x-payment-response")!
  );
  console.log(paymentResponse);
}

main().catch((error) => {
  console.error(error?.response?.data?.error ?? error);
  process.exit(1);
});

Manifest

Loading…
Fetching agent card…