Find Terms by their IDs
Demo
Dictionary Selection
Selected Unselected  
FMA
HPO
MAT
www
REST API for lookup
GET|POST
https://pubdictionaries.org/find_terms.json?dictionary=Allie-Shortform-Literal-URI-Pairs

Example cURL command

1 GET
curl -G --data-urlencode ids="id1|id2" "https://pubdictionaries.org/find_terms.json?dictionary=Allie-Shortform-Literal-URI-Pairs"
2 POST
curl -d ids="id1|id2" "https://pubdictionaries.org/find_terms.json?dictionary=Allie-Shortform-Literal-URI-Pairs"
3 POST
curl -H "content-type:application/json" -d '["id1", "id2"]' "https://pubdictionaries.org/find_terms.json?dictionary=Allie-Shortform-Literal-URI-Pairs"
4 POST
curl -H "content-type:text/plain" -d "id1|id2" "https://pubdictionaries.org/find_terms.json?dictionary=Allie-Shortform-Literal-URI-Pairs"
5 POST
curl -H "content-type:text/plain" --data-binary @filename "https://pubdictionaries.org/find_terms.json?dictionary=Allie-Shortform-Literal-URI-Pairs"
  • In the case of 1, 2 and 4, either the Tab, or vertical bar ('|') letter can be used to delimit multiple IDs.
  • In the case of 5, the newline letter also can be used to delimit multiple IDs, which is convenient to read IDs from a file. For a more detail, you are recommended to read the manual of curl.