SciSpace logo

SciSpace

Free tier

AI-powered research assistant for reading, understanding, and discovering scientific papers

Free tier available·All audiences·Powered by OpenAI·API available

Key strengths

Conversational Q&A directly on scientific PDFsVast indexed database of 200M+ research papersAI-powered literature review and summarizationCitation and reference trackingMultilingual explanation of complex research
Free tier + paid plans · from $12 USD/mo
Bengaluru, India
Founded 2020
No ratings yet

SciSpace API & Developer Integration

SciSpace provides a RESTful API for developers who want to embed research discovery and paper Q&A into their own tools and workflows.

Authentication

All API requests require a bearer token obtained from your SciSpace developer dashboard:

Authorization: Bearer <YOUR_API_KEY>

Key Endpoints

  • GET /papers/search — Semantic search across 200M+ papers. Accepts query, limit, offset, and filters (year, domain, citation count).
  • GET /papers/{paper_id} — Retrieve full metadata, abstract, authors, references, and citation data for a specific paper.
  • POST /papers/{paper_id}/ask — Submit a natural language question against a specific paper's content. Returns an LLM-generated answer with source paragraph citations.
  • POST /documents/upload — Upload a custom PDF for indexing and Q&A.

Key Parameters

ParameterTypeDescription
querystringNatural language or keyword search query
paper_idstringUnique SciSpace paper identifier
questionstringQuestion to ask against the paper
filters.year_rangearrayFilter results by publication year

Integration Notes

  • Responses include confidence_score and source_chunks for transparency in RAG-generated answers.
  • Rate limits apply by tier; the free tier supports limited queries per day.
  • A Python SDK and Chrome extension are also available for rapid prototyping.