« Bash api » : différence entre les versions

Page créée avec « ==== openstreetmap ==== Recherche localisation <syntaxhighlight lang="bash" copy> curl "https://nominatim.openstreetmap.org/search?q=Eiffel+Tower&format=json" | jq </syntaxhighlight> ==== Devises ==== Exchange Rates <syntaxhighlight lang="bash" copy> curl "https://api.exchangerate-api.com/v4/latest/EUR" | jq '.rates.USD' </syntaxhighlight> ==== Météo ==== open-meteo.com <syntaxhighlight lang="bash" copy> curl -s "https://api.open-meteo.com/v1/forecast?latitud... »
 
Aucun résumé des modifications
Ligne 1 : Ligne 1 :
=== Météo ===
==== Par défaut (3 jours). ====
<syntaxhighlight lang="bash" copy>
curl wttr.in/paris
</syntaxhighlight>
==== Résumé ultra-condensé : Paris: 🌦 +17°C. ====
<syntaxhighlight lang="bash" copy>
curl "wttr.in/paris?format=3&lang=fr"
</syntaxhighlight>
==== Données brutes (JSON) ====
<syntaxhighlight lang="bash" copy>
curl "wttr.in/paris?format=j1&lang=fr"
</syntaxhighlight>
==== Météo actuelle ====
<syntaxhighlight lang="bash" copy>
curl "wttr.in/paris?0&lang=fr"
</syntaxhighlight>
==== Affiche les nuits (pour + de détails). ====
<syntaxhighlight lang="bash" copy>
curl "wttr.in/paris?n&lang=fr"
</syntaxhighlight>
==== Affiche en français  ====
<syntaxhighlight lang="bash" copy>
curl "wttr.in/paris?lang=fr&v2"
</syntaxhighlight>
==== Affiche les phases de la Lune ====
<syntaxhighlight lang="bash" copy>
curl wttr.in/Moon
</syntaxhighlight>
==== Affiche une adresse précise avec les coordonnées GPS ====
<syntaxhighlight lang="bash" copy>
curl "wttr.in/48.8566,2.3522"
</syntaxhighlight>
==== Affiche un graphique détaillé ====
<syntaxhighlight lang="bash" copy>
curl "wttr.in/48.8566,2.3522?format=v2"
</syntaxhighlight>
==== openstreetmap ====
==== openstreetmap ====
Recherche localisation
Recherche localisation