Maybe a blunt question;
Why is the rate not in the response when using a forward query, do I have to give any extra parameter to receive this info?;
query:
from opencage.geocoder import OpenCageGeocode
geocoder = OpenCageGeocode('[APIpassword]
address = 'Azalealaan 5701CM Helmond'
geocoder.geocode(address)
response:
[{'annotations': {'DMS': {'lat': "51° 28' 38.32536'' N", 'lng': "5° 40' 20.22276'' E"}, 'MGRS': '31UFT8556706292', 'Maidenhead': 'JO21ul04qn', 'Mercator': {'x': 631435.778, 'y': 6672712.321}, 'OSM': {'edit_url': 'https://www.openstreetmap.org/edit?way=7142970#map=16/51.47731/5.67228', 'note_url': 'https://www.openstreetmap.org/note/new#map=16/51.47731/5.67228&layers=N', 'url': 'https://www.openstreetmap.org/?mlat=51.47731&mlon=5.67228#map=16/51.47731/5.67228'}, 'UN_M49': {'regions': {'EUROPE': '150', 'NL': '528', 'WESTERN_EUROPE': '155', 'WORLD': '001'}, 'statistical_groupings': ['MEDC']}, 'callingcode': 31, 'currency': {'alternate_symbols': [], 'decimal_mark': ',', 'html_entity': '€', 'iso_code': 'EUR', 'iso_numeric': '978', 'name': 'Euro', 'smallest_denomination': 1, 'subunit': 'Cent', 'subunit_to_unit': 100, 'symbol': '€', 'symbol_first': 0, 'thousands_separator': '.'}, 'flag': '🇳🇱', 'geohash': 'u1hhc54mjf9ddw676dst', 'qibla': 125.68, 'roadinfo': {'drive_on': 'right', 'road': 'Azalealaan', 'road_type': 'residential', 'speed_in': 'km/h'}, 'sun': {'rise': {'apparent': 1625974500, 'astronomical': 0, 'civil': 1625971800, 'nautical': 1625967780}, 'set': {'apparent': 1626033000, 'astronomical': 0, 'civil': 1626035700, 'nautical': 1626039720}}, 'timezone': {'name': 'Europe/Amsterdam', 'now_in_dst': 1, 'offset_sec': 7200, 'offset_string': '+0200', 'short_name': 'CEST'}, 'what3words': {'words': 'paths.smile.journals'}}, 'bounds': {'northeast': {'lat': 51.4777108, 'lng': 5.6741281}, 'southwest': {'lat': 51.4766618, 'lng': 5.6711463}}, 'components': {'ISO_3166-1_alpha-2': 'NL', 'ISO_3166-1_alpha-3': 'NLD', '_category': 'road', '_type': 'road', 'city': 'Helmond', 'continent': 'Europe', 'country': 'Netherlands', 'country_code': 'nl', 'neighbourhood': 'Beisterveld', 'political_union': 'European Union', 'postcode': '5701 CM', 'region': 'Netherlands', 'road': 'Azalealaan', 'road_type': 'residential', 'state': 'North Brabant', 'state_code': 'NB'}, 'confidence': 9, 'formatted': 'Azalealaan, 5701 CM Helmond, Netherlands', 'geometry': {'lat': 51.4773126, 'lng': 5.6722841}}, {'annotations': {'DMS': {'lat': "51° 28' 54.01200'' N", 'lng': "5° 39' 39.99600'' E"}, 'MGRS': '31UFT8477406748', 'Maidenhead': 'JO21tl95io', 'Mercator': {'x': 630191.883, 'y': 6673489.141}, 'OSM': {'note_url': 'https://www.openstreetmap.org/note/new#map=16/51.48167/5.66111&layers=N', 'url': 'https://www.openstreetmap.org/?mlat=51.48167&mlon=5.66111#map=16/51.48167/5.66111'}, 'UN_M49': {'regions': {'EUROPE': '150', 'NL': '528', 'WESTERN_EUROPE': '155', 'WORLD': '001'}, 'statistical_groupings': ['MEDC']}, 'callingcode': 31, 'currency': {'alternate_symbols': [], 'decimal_mark': ',', 'html_entity': '€', 'iso_code': 'EUR', 'iso_numeric': '978', 'name': 'Euro', 'smallest_denomination': 1, 'subunit': 'Cent', 'subunit_to_unit': 100, 'symbol': '€', 'symbol_first': 0, 'thousands_separator': '.'}, 'flag': '🇳🇱', 'geohash': 'u1hhbgfq3qved5m0mr3y', 'qibla': 125.67, 'roadinfo': {'drive_on': 'right', 'speed_in': 'km/h'}, 'sun': {'rise': {'apparent': 1625974500, 'astronomical': 0, 'civil': 1625971800, 'nautical': 1625967780}, 'set': {'apparent': 1626033000, 'astronomical': 0, 'civil': 1626035700, 'nautical': 1626039720}}, 'timezone': {'name': 'Europe/Amsterdam', 'now_in_dst': 1, 'offset_sec': 7200, 'offset_string': '+0200', 'short_name': 'CEST'}, 'what3words': {'words': 'youngest.speaker.anyway'}}, 'bounds': {'northeast': {'lat': 51.501278, 'lng': 5.7168505}, 'southwest': {'lat': 51.452526, 'lng': 5.623887}}, 'components': {'ISO_3166-1_alpha-2': 'NL', 'ISO_3166-1_alpha-3': 'NLD', '_category': 'place', '_type': 'city', 'continent': 'Europe', 'country': 'Netherlands', 'country_code': 'nl', 'county': 'Helmond', 'political_union': 'European Union', 'state': 'Noord-Brabant', 'state_code': 'NB', 'town': 'Helmond'}, 'confidence': 7, 'formatted': 'Helmond, Netherlands', 'geometry': {'lat': 51.48167, 'lng': 5.66111}}]