Reputation: 111
I want to get the address from latitude/longitude using Google Geocoding API. For that, I want to know, how many no of hit can be done with a free account?
Bellow link showing the 2,500 requests per 24 hour period free.
Kindly clear me, it is still free hit exist with Google Geocoding API or not. If no, then how many hits are free with this API?
Upvotes: 4
Views: 21798
Reputation: 255
To use Google's Geocoding service you need an account on the Google Maps Platform. The trial account as well as the Pay-as-you-go priced account which you will be forced to upgrade to after one year both feature ≥ 200 USD/month worth of service.
For both types of account a CreditCard is required.
200 USD worth of service allow for 40'000 Geocoding requests per month (see pricelist). Any additional request is billed at 0.005 USD/request.
The service for Geocoding has the SKU "Geocoding" and is part of the "Geocoding API" which in term is part of the product "Places" of the "Google Maps Platform".
The Geocoding service has a limit of 50 requests per second, but there is no (longer a) limit per day.
Upvotes: 1
Reputation: 92
It is expensive. It costs $5 per 1000 hits up to 100,000 hits. And onwards up to 500,000 hits, it will cost $4 per 1000 hits. Google gives initial $200 credit but you must have to restrict your APIs. Otherwise, your free credit will be exhausted within a week.
Upvotes: 2
Reputation: 1401
Upon setting up your billing account, you will be entitled to have one time $300 free credit (Usable for any Google Cloud Platform products) and a monthly recurring $200 free credit (Exclusive for Google Maps API only), the Geocoding API is currently priced at 0.005 USD, with that said, you may have the following requests as follows:
300 USD / 0.005 USD = 60,000 requests
200 USD / 0.005 = 40,000 requests
If you haven't used your one time $300 free credit, then you may have 100,000 geocoding requests for the first month, then for the succeeding months, you may have 40,000 geocoding requests that will be covered by the monthly recurring $200 free credit.
You may learn more about the pricing by visiting the pricing sheet
You may also use the Pricing Calculator if you'd wish to compute for other SKUs as well, note that this also take your free credit(monthly recurring $200 only) into account.
Upvotes: 7
Reputation: 116908
Google has changed their billing policy a while ago you should consult Usage and billing
Pay-As-You-Go Pricing
The Geocoding API uses a pay-as-you-go pricing model.
How usage and billing work under the pay-as-you-go model
- The Google Maps Platform APIs are billed by SKU.
- Usage is tracked for each Product SKU, and an API may have more than one Product SKU.
- Cost is calculated by: SKU Usage x Price per each use.
- For each billing account, for qualifying Google Maps Platform SKUs, a $200 USD Google 1. Maps Platform credit is available each month, and automatically applied to the qualifying SKUs.
See guide to understanding billing for more information.
Pricing for the Geocoding API
Under the pay-as-you-go pricing model, requests for the Geocoding API are billed using the SKU for Geocoding.
When you create a new account and connect a credit card to it you will be given $300 credit that you can use to test your application before you bring it live.
Upvotes: 4