Call Acronym Lookup API

This page uses a Hashtag Call to send a submitted Acronym to a Lookup API.   A Hashtag Print Bucket command is used to inspect the values from the JSON-decoded response.  
Note:  The Acronym Lookup API is provided by a 3rd party, and is not affiliated with the Hashtag Foundation.  
This Form submits back to the current page, setting the sf value in the URL.
Acronym:

    BMI


Processed this Hashtag Markup:
<#

call "http://www.nactem.ac.uk/software/acromine/dictionary.py?sf=<#[get.sf as url]#>" to response;

#>
<ul>
	<h3><#[get.sf as uppercase as html]#></h3>
	<# start loop for response.0.lfs; #>
	<li><# value.lf as html #></li>
	<# end loop #>
</ul>

Processing this Hashtag Markup:
<# print bucket response; #>

response: Array
(
)

Note:  Hashtag Markup is shown below <# in bold #>.   The value generated by processing the Hashtag Markup, and applying any Variable Contexts, is injected into this HTML page after the ⇒ symbol.  
<#[response.0.lfs.0.lf as html]#> ⇒ 


The Hashtag Markup Language provides methods to Call external APIs, and process any response.

The response text is saved to the named Hashtag Variable.   If the response is JSON encoded, it will be decoded into Hashtag Buckets.  

Optional parameters can be sent with the call.   The values in the named Hashtag Bucket will be sent with the request as HTTP POST variables.