Skip to content

Instantly share code, notes, and snippets.

@eSlider
Last active April 21, 2021 07:14
Show Gist options
  • Save eSlider/af2daad07324ed9112c81cfde7be56d5 to your computer and use it in GitHub Desktop.
Save eSlider/af2daad07324ed9112c81cfde7be56d5 to your computer and use it in GitHub Desktop.
Get location translations by Wiki ID
#!/bin/sh
WikiID=$(test -z $1 && echo "Q2090" || echo $1)
curl -X GET "https://www.wikidata.org/w/api.php?action=wbgetentities&ids=${WikiID}&format=json" | jq ".entities[].labels | map( {(.language): .value} )"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment