This folder contains everything you need to call — and experiment with — the two complementary REST/JSON services 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 Tag Mapping Service (Concept → Tags) |
TagSearch_Readme.md |
Guide for the Tags Service search endpoint |
SnoMed_Readme.md |
Full guide for the SnoMed Mapping Service (Tag → Concepts) |
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 Mapping Service (concepts ⇐ tag) | SnoMed_Readme.md |
Tag ID 65 |
SnoMed Mapping Service | |
Concept ID 409794001 |
Tag Mapping Service (tags ⇐ concept) | Tags_Readme.md |
Concept Term "Antifungal agent resistant fungi" |
Tag Mapping Service | |
Tag Search Term "Antifungal" |
Tags Service (search) | TagSearch_Readme.md |
Both endpoints are read-only and stateless; a single query-string parameter is all that’s required.
https://healthtags.buffa.ly
(Dev and staging hosts may differ.)AuthToken: <jwt | opaque string>https://static.buffa.ly/js/JsonMethod.js<script src="https://static.buffa.ly/js/JsonMethod.js"></script>
<!-- Tag service -->
<script src="/JsonWs/HealthTags.TagMappingService.ashx.js"></script>
<!-- SnoMed service -->
<script src="/JsonWs/HealthTags.SnoMedMappingService.ashx.js"></script>
TagMappingServiceValidatorsFields or
SnoMedMappingServiceValidatorsFields before loading the proxy file.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, error-handling
guidelines, and validator extension points.
{
"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.