Overview

The Cyprex API provides programmatic access to academic research tools. Search papers across multiple databases, verify citations, check relevance, and access unified LLM gateway -- all through a simple REST API.

Base URL

All API requests should be made to:

https://api.qinyanai.com

Authentication

Include your API key as a Bearer token in the Authorization header. You can generate API keys from your dashboard.

Quick Start

Make your first API call in seconds. Here's a simple example searching for papers:

Example

import requests

API_KEY = "your_api_key_here"
BASE_URL = "https://api.qinyanai.com"

# Search papers via Google Scholar
response = requests.post(
    f"{BASE_URL}/v1/paper-search/google",
    headers={"Authorization": f"Bearer {API_KEY}"},
    json={"query": "large language models", "max_results": 5}
)

print(response.json())