×
Easy-ICD API
SEND json request:
curl -X POST -H "Content-type: application/json" -d "[{\"clinical_note\": \"This is my first clinical note for the api\",\"note_id\": 123},{\"clinical_note\": \"This is my second clinical note for the api\",\"note_id\": 124}]" "https://easy-icd.ehealthresearch.no/api"
JSON format :
- [
- {
- "clinical_note": "This is my first clinical note for the api",
- "note_id":123
- },
- {
- "clinical_note": "This is my second clinical note for the api",
- "note_id":124
- }
- ]
GET back json:
- [
- [
- 123,
- {
- "K02.2": "K02.2 | karies i cementet",
- "K22.0": "K22.0 | achalasia cardiae",
- "K22.2": "K22.2 | obstruktion av esofagus",
- "K22.4": "K22.4 | esofagusdyskinesi",
- "K22.7": "K22.7 | barretts esofagus",
- "K22.9": "K22.9 | sjukdom i esofagus, ospecificerad",
- "K90.0": "K90.0 | celiaki"
- }
- ],
- [
- 124,
- {
- "K22.2": "K22.2 | obstruktion av esofagus",
- "K22.2": "K22.2 | obstruktion av esofagus",
- "K22.4": "K22.4 | esofagusdyskinesi",
- "K22.9": "K22.9 | sjukdom i esofagus, ospecificerad",
- "K90.0": "K90.0 | celiaki"
- }
- ]
- ]