Build powerful integrations with our RESTful API. Automate your systematic review workflow programmatically.
99.9% uptime with sub-100ms response times
OAuth 2.0 authentication and encrypted connections
Comprehensive docs with code examples in multiple languages
Get started with the ResBot API in minutes
Get your API key from your dashboard and include it in the Authorization header.
curl https://your-app.resbot.ai/api/projects \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"Create a new systematic review project programmatically.
curl -X POST https://your-app.resbot.ai/api/projects \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "My Systematic Review",
"description": "Review of AI in healthcare",
"type": "AI_SCREENING"
}'Upload references in BibTeX, RIS, or JSON format.
curl -X POST https://your-app.resbot.ai/api/projects/{id}/references \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"format": "bibtex",
"data": "@article{...}"
}'Available REST API endpoints
/api/projectsCreate a new systematic review project
/api/projects/{id}Get project details and statistics
/api/projects/{id}/referencesImport references to a project
/api/projects/{id}/screenStart AI screening for a project
/api/projects/{id}/exportExport screening results in various formats
/api/user/creditsGet user's AI credit balance
Client libraries for popular programming languages
Get your API key and start integrating ResBot today