infermedica-covid-symptom-checker
v0.0.1
Published
Symptom checker library using the Infermedica API
Downloads
2
Maintainers
Readme
Infermedica Covid Symptom Checker
Node.js wrapper for the Infermedica Covid-18 API.
Available methods
See the Infermedica API Reference for method schemas.
- diagnosis
- triage
- search
- symptoms
- riskFactors
- locations
Usage
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: []
})
Examples
See the examples directory for ideas on getting started. The Infermedica API Reference explains each method in great detail.
Legal
The Infermedica API is copyrighted by Infermedica.
This library is released under the MIT License.