Access 200+ million academic articles, AI-powered research tools, and comprehensive citation management through our RESTful API
Academic Articles
Citation Formats
Research Tools
All API requests require authentication using your API key:
POST /literature_survey_api
Content-Type: application/json
{
"api_key": "your-api-key-here",
"bibliography": "machine learning"
}
/api/citations/{id}
Generate citations in multiple formats (APA, MLA, Chicago, BibTeX) for a bibliography entry.
| Parameter | Type | Required | Description |
|---|---|---|---|
id |
integer | Yes | Bibliography ID |
{
"apa": "Smith, J. (2024). Research Methods...",
"mla": "Smith, John. \"Research Methods.\"...",
"chicago": "Smith, John. \"Research Methods.\"...",
"bibtex": "@article{smith2024research,..."
}
/literature_survey_api
Search through 200+ million academic articles using keywords. Requires API key authentication.
| Field | Type | Required | Description |
|---|---|---|---|
api_key |
string | Yes | Your API key |
bibliography |
string | Yes | Search term/keywords |
curl -X POST https://v2.scimatic.org/literature_survey_api \
-H "Content-Type: application/json" \
-d '{
"api_key": "your-api-key",
"bibliography": "machine learning"
}'
fetch('https://v2.scimatic.org/literature_survey_api', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
api_key: 'your-api-key',
bibliography: 'machine learning'
})
})
.then(response => response.json())
.then(data => console.log(data));
$data = [
'api_key' => 'your-api-key',
'bibliography' => 'machine learning'
];
$response = Http::post('https://v2.scimatic.org/literature_survey_api', $data);
/api/add-to-library
Add a bibliography entry to user's library. Requires authentication.
/api/gemini/generate-survey
Generate comprehensive literature surveys using Google Gemini AI. Analyzes multiple articles and creates structured reviews.
| Field | Type | Required | Description |
|---|---|---|---|
title |
string | No | Survey title |
instructions |
string | No | Custom instructions |
articles |
array | Yes | Array of article objects |
{
"title": "Article Title",
"authors": "Author Names",
"year": "2024",
"journal": "Journal Name",
"abstract": "Article abstract..."
}
/api/cities/{countryId}
Retrieve all cities for a specific country.
/api/universities/city/{cityId}
Retrieve all universities in a specific city.
/api/search-editors?q={query}
Search for editors by name or email. Returns up to 20 results.
Our support team is here to assist you with integration and troubleshooting.
All Rights Reserved!
This website is licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License , unless otherwise stated.
This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License ,
Register/Login first to send a message
We use cookies to enhance your browsing experience, serve personalized content, and analyze our traffic. By clicking "Accept All", you consent to our use of cookies. Learn more