[ search · endpoint ]検索API · 学術

学術研究検索API

1つのエンドポイントでarXiv、PubMed、bioRxiv、medRxivの査読済み論文とプレプリントをクエリ。LLMツールコール、引用抽出、科学文献上のRAGに対応する事前整形されたJSON出力。

5クレジット / コール60 req / 分POST /api/search/academic
[ 01 · live ]

学術検索をライブで試す

APIキーを入力し、ライブエンドポイントに対して実際のクエリを実行してください。

auth · x-api-key

APIキーをお持ちでない方は

アカウントにサインインしてAPIキーを作成・管理してください。

5件のサンプルクエリ — クリックで読み込み
[ 02 · integrate ]

Integration guide

Copy a snippet, replace your API key, run. Works in any HTTP client — examples below in cURL, JavaScript, and Python.

spec
POST/api/search/academic
base
https://www.apipick.com

arXiv、PubMed、bioRxiv、medRxiv全体のセマンティック検索。LLM取り込み用のランク付けされたタイトル、抄録、ソースURLを返します。

parameters
querystringrequired

Natural-language search query

max_num_resultsintegeroptional

1–5, default 5

relevance_thresholdnumberoptional

0.0–1.0 quality filter

country_codestringoptional

ISO country code (e.g. US, GB)

start_datestringoptional

ISO date YYYY-MM-DD

end_datestringoptional

ISO date YYYY-MM-DD

curl -X POST "https://www.apipick.com/api/search/academic" \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  -d '{
  "query": "Latest breakthroughs in CRISPR gene editing",
  "max_num_results": 5,
  "country_code": "US",
  "start_date": "2026-01-01"
}'
● 200 · response
{
  "query": "Latest breakthroughs in CRISPR gene editing",
  "results": [
    {
      "title": "Example result",
      "url": "https://example.com/article",
      "snippet": "Short excerpt of the page content…",
      "source_type": "web",
      "published_at": "2026-04-15",
      "score": 0.92
    }
  ],
  "result_count": 1,
  "credits_used": 5,
  "remaining_credits": 99
}
[ 03 · limits ]

Rate limits

Throttling is per API key, sliding 60-second window. Hit the limit and you get a clean 429 with a Retry-After header.

request rate

60req/min

Per API key, per endpoint. Sliding 60-second window.

concurrency

3concurrent

Max simultaneous in-flight requests per API key.

response headers
X-RateLimit-LimitMaximum requests allowed per minute
X-RateLimit-RemainingRequests remaining in the current window
X-RateLimit-ResetSeconds until the current window resets
Retry-AfterSeconds to wait before retrying (only on 429)
● 429 · too many requests
HTTP/1.1 429 Too Many Requests
Retry-After: 12
X-RateLimit-Limit: 60
X-RateLimit-Remaining: 0
X-RateLimit-Reset: 12

{
  "error": "rate_limit_exceeded",
  "message": "Rate limit exceeded: 60 requests/minute per API key. Retry after 12s.",
  "retry_after": 12
}
[ faq ]

よくある質問

01

どのソースがカバーされていますか?

arXiv(情報科学、数学、物理など)、PubMed(バイオメディカル)、bioRxiv(生物学プレプリント)、medRxiv(医学プレプリント)。1コールで4つすべてに並列クエリ。

02

なぜ他の縦型検索APIより安いのですか?

オープンアクセスの学術インデックス(arXiv、PubMed、bioRxiv、medRxiv)は、独自の金融や法律のデータセットに比べてクエリコストが安いためです。クレジット価格はそれを反映しています。

03

日付範囲で絞り込めますか?

はい。start_dateend_dateYYYY-MM-DD形式で渡して、公開日でフィルタできます。

04

論文の全文は返されますか?

いいえ — 結果にはタイトル、抄録風スニペット、ソースURL、関連性スコアが含まれます。論文の全文を取得するには、ソースURLに対してPOST /api/extractをご利用ください。

05

OpenAI / Claude用のツールスキーマは?

GET /api/search/academic/tool-schemaですぐに貼り付けられるOpenAIファンクションとClaudeツール使用の定義を返します。