A short-lived, rate-limited bearer token that lets an agent or script call the graph API directly — no account, no card. Modeled on OAuth 2.0 client credentials plus the metadata discovery shape MCP clients already expect, so a generic MCP/OAuth client needs no Syntology-specific code to use it.
curl -X POST https://syntology.ai/api/oauth/trial/token \
-H "Content-Type: application/json" \
-d '{"cf_turnstile_token":"..."}'
# -> { "access_token": "trial_...", "expires_in": 1800,
# "scope": "graph:ask", "queries_remaining": 20 }
curl "https://syntology.ai/api/graph/ask?q=..." \
-H "Authorization: Bearer trial_..."
# Optional: code_samples=true attaches declared code repositories
# (provenance-tagged) for every paper in the answer. Default false.
curl "https://syntology.ai/api/graph/ask?q=...&code_samples=true" \
-H "Authorization: Bearer trial_..."
Not finalized yet. Trial token issuance is live; metered paid access ships once pricing is set. For enterprise or higher-volume API access in the meantime, get in touch.