infermedica-covid-symptom-checker
Version:
Symptom checker library using the Infermedica API
43 lines (28 loc) • 1.03 kB
Markdown
Node.js wrapper for the [Infermedica Covid-18 API](https://developer.infermedica.com/docs/covid-19).
See the [Infermedica API Reference](https://developer.infermedica.com/docs/api) for method schemas.
- diagnosis
- triage
- search
- symptoms
- riskFactors
- locations
You will need to [obtain an App ID and App Key](https://developer.infermedica.com/signup) from Infermedica.
```js
const covid = require('infermedica-covid')('APP_ID', 'APP_KEY')
// ...
const initialDiagnosis = await covid.diagnosis({
sex: 'male',
age: 30,
evidence: []
})
```
See the [examples](examples) directory for ideas on getting started. The [Infermedica API Reference](https://developer.infermedica.com/docs/api) explains each method in great detail.
The Infermedica API is copyrighted by [Infermedica](http://infermedica.com/).
This library is released under the [MIT License](LICENSE).