Node.js wrapper for the Infermedica Covid-18 API.
See the Infermedica API Reference for method schemas.
- diagnosis
- triage
- search
- symptoms
- riskFactors
- locations
You will need to obtain an App ID and App Key from Infermedica.
# create authenticated client
const covid = require('infermedica-covid')('APP_ID', 'APP_KEY')
// ...
# start using API methods
const initialDiagnosis = await covid.diagnosis({
sex: 'male',
age: 30,
evidence: []
})
See the examples directory for ideas on getting started. The Infermedica API Reference explains each method in great detail.
The Infermedica API is copyrighted by Infermedica.
This library is released under the MIT License.