1 |
GET |
curl -G --data-urlencode labels="label1|label2" "https://pubdictionaries.org/find_ids.json?dictionary=UBERON-AE-2023" |
|
2 |
POST |
curl -d labels="label1|label2" "https://pubdictionaries.org/find_ids.json?dictionary=UBERON-AE-2023" |
|
3 |
POST |
curl -H "content-type:application/json" -d '["label1", "label2"]' "https://pubdictionaries.org/find_ids.json?dictionary=UBERON-AE-2023" |
|
4 |
POST |
curl -H "content-type:text/plain" -d "label1|label2" "https://pubdictionaries.org/find_ids.json?dictionary=UBERON-AE-2023" |
|
5 |
POST |
curl -H "content-type:text/plain" --data-binary @filename "https://pubdictionaries.org/find_ids.json?dictionary=UBERON-AE-2023" |
|