BadgetNet ICD10 codes

I need an API to get the ICD10 codes for BadgerNet text. I can’t find any details related to BadgerNet data.

Many thanks,

Anshita

Sorry no idea what BadgerNet is.

But there is an API to query ICD10 codes see: The NHS England terminology server - NHS England Digital

Thank you so much. I don’t know what I am dong wrong, but I am not able to get any text of these ICD-10 codes. It would be very helpful if you could give me some ICD-10 codes which definitely works or correct URL please. Thanks

Q790 Q790 GET ValueSet/$expand?url=ICD-10&filter=Q790 ICD-10 Not found No ICD-10 lookup variant returned a match.
Q791 Q791 GET ValueSet/$expand?url=ICD-10&filter=Q791 ICD-10 Not found No ICD-10 lookup variant returned a match.

This topic has been solved

When connecting to our server the best way to query a code is to use GET CodeSystem/$lookup …

The URL for the ICD-10 code system on our server is http://hl7.org/fhir/sid/icd-10-uk.

The full URL to query a specific ICD-10 code of Q79 is:

https://ontology.nhs.uk/production1/fhir/CodeSystem/$lookup?system=http://hl7.org/fhir/sid/icd-10-uk&code=Q79

NOTE: when querying a code it will give the direct children of that code, if they exist. Searching for code Q79 will give you the children codes of Q79.0, Q79.1, …

The full URL to query the code Q790 is actually the code should be represented as Q79.0 thus the URL to query Q79.0 is:

https://ontology.nhs.uk/production1/fhir/CodeSystem/$lookup?system=http://hl7.org/fhir/sid/icd-10-uk&code=Q79.0

Hope that helps.

Thank you very much, really appreciate your help. I also managed to download from TRUD account. I will try this link as well. Thank you again for your time.