API v1

/api/v1

AI-lab-friendly public API for the Sciync scientific-consensus graph. Ground truth, claims, hybrid search, and AI-claim intake — CORS-open, rate-limited, CC-BY-4.0 with attribution.

Quick start

Each of these is a one-liner you can run today. Pipe through jq for readable output.

Ground a candidate claim (flagship RAG)

curl -sS -X POST https://sciync.com/api/v1/ground \
  -H 'Content-Type: application/json' \
  -d '{
    "claim": "Thrombectomy improves 90-day mRS in LVO stroke vs IV tPA alone",
    "domain": "neurointerventional",
    "maxEvidence": 10
  }' | jq

Read a single claim

curl -sS https://sciync.com/api/v1/claim/clm_mrclean_primary | jq

Hybrid search

curl -sS 'https://sciync.com/api/v1/search?q=thrombectomy&limit=5' | jq

Submit an AI-generated claim

curl -sS -X POST https://sciync.com/api/v1/ai-claim \
  -H 'Content-Type: application/json' \
  -d '{
    "candidateText": "GLP-1 agonists reduce MACE in T2D patients with established CVD",
    "sourceUrl": "https://example.com/chat/abc123",
    "sourceKind": "chatbot_reply",
    "producerModel": "claude-sonnet-4-6"
  }' | jq

Reference

Interactive OpenAPI documentation below. Rendered via the Redoc CDN bundle; powered by the spec at /api/v1/openapi.