This folder contains everything you need to call — and experiment with — the three complementary REST/JSON helpers that sit behind Health Tags.
Use the management pages when integrating with your own tools. They provide simple forms for searching tags and SNOMED concepts while also showing the underlying API requests. If you only want to explore the endpoints, the API test pages offer quick harnesses for manual experimentation.
| File | What it is |
|---|---|
Tags_Readme.md |
Full guide for the Tags Service (Concept → Tags & tag lookups) |
TagSearch_Readme.md |
Guide for the Tags Service search endpoint |
SnoMed_Readme.md |
Full guide for the SnoMed Service (Tag → Concepts & concept lookups) |
Readme.md |
This overview document |
tag-search.html – search tags via the Tags Serviceconcept-search.html – search SNOMED conceptsTags.html – query tags by Concept ID or TermSnoMed.html – query concepts by Tag ID or Name| Input you have | Call this service | Docs |
|---|---|---|
Tag Name "Antifungal medicines" |
SnoMed Service (concepts ⇐ tag) | SnoMed_Readme.md |
Tag ID 65 |
SnoMed Service | |
Concept ID 409794001 |
Tags Service (tags ⇐ concept) | Tags_Readme.md |
Concept Term "Antifungal agent resistant fungi" |
Tags Service | |
Tag Search Term "Antifungal" |
Tags Service (search) | TagSearch_Readme.md |
Both endpoints are read-only and stateless; a single query-string parameter or JSON payload is all that’s required.
https://healthtags.buffa.ly (Dev and staging hosts may differ.)AuthToken: <jwt | opaque string>JsonMethod.js bootstrap (served from //static.buffa.ly/js/JsonMethod.js?v=2
in these samples) to call the services without manual fetch plumbing.<!-- JsonWS bootstrap + generated proxies -->
<script src="//static.buffa.ly/js/JsonMethod.js?v=2"></script>
<script src="/JsonWS/HealthTags.TagsService.ashx.js"></script>
<script src="/JsonWS/HealthTags.SnoMedService.ashx.js"></script>
<!-- Page-specific helpers -->
<script src="/projects/HealthTags/TagSearch.js"></script>
<script src="/projects/HealthTags/conceptsearch.js"></script>
Open the harness pages in your browser:
Tags.html Query tags by Concept ID or TermSnoMed.html Query concepts by Tag ID or Nameconcept-search.html Search SNOMED conceptsNo build step required—just drop them under the site root.
Tags_Readme.mdSnoMed_Readme.mdThose files include SDK usage, raw fetch/curl examples, and request/response
payloads.
{
"IsBroadParentTag": "false",
"TagID": "65",
"TagName": "Antifungal medicines",
"Alternates": ["Antifungal agent", "Antifungal drug"],
"Concepts": [
{
"ConceptID": "409794001",
"IsDisorder": "false",
"PreferredTerm": "Antifungal agent resistant fungi"
},
{
"ConceptID": "773126007",
"IsDisorder": "false",
"PreferredTerm": "Application of topical antifungal agent to skin"
},
{
"ConceptID": "292800009",
"IsDisorder": "false",
"PreferredTerm": "Antifungal drug adverse reaction"
},
{
"ConceptID": "410575005",
"IsDisorder": "false",
"PreferredTerm": "Intravitreal antifungal drug injection"
}
]
}
© 2025 Intelligence Factory.