The Nucleati Abstract API is organized using REST principles. API has predictable URLs and returns JSON responses. It also uses standard HTTP response codes. All API endpoints use simple authentication method using API tokens, that should be pass along with each request.
                
	                https://abstracts.nucleati.com/api/v1 
		            
	            
        A key endpoint to query database using either NlmId, Year of publication or series of PMIDs.
curl https://abstracts.nucleati.com/api/v1/articles?nlmId=101285081&apikey={YOUR API KEY}
curl https://abstracts.nucleati.com/api/v1/articles?year=1995&apikey={YOUR API KEY}
	                	7534103
	                	7534102
	                	98345443323
	                
	            curl -X POST https://abstracts.nucleati.com/api/v1/articles?apikey={YOUR API KEY} --data-binary "7534103
	                7534102
	            98345443323"
