Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Alternative to google place api? [closed]

I'm developing an iphone app that is using Google Place API. As far as I know, Google allows 1000 queries per 24 hour for this Place API, and 100,000 queries per 24 hour if the account is verified with a credit card. Exceeding 100,000 queries per 24 hour will incur extra charge.

I'm asking if there is any another option rather than using this Google Place API? Which can support unlimited queries. If there is, what is the charge?

I've heard of openStreetMap is free. But i'm not sure if there is any party providing the Place API base on this OpenStreetMap, and the limit.

Thanks

like image 933
Quoc Nguyen Avatar asked Dec 15 '22 20:12

Quoc Nguyen


1 Answers

The Google Places API will not charge you for exceeding your quota, even with billing enabled you will simple receive "status": "OVER_QUERY_LIMIT"

As per the Usage Limits section of the Places API Documentation:

  • Users with an API key are allowed 1 000 requests per 24 hour period.

  • Users who have also verified their identity through the APIs console are allowed 100 000 requests per 24 hour period. A credit card is required for verification, by enabling billing in the console. Your card will not be charged for use of the Places API.

If you would like to request more than 100 000 queries per day, log in and fill out the Places API Quota Uplift Request form with your application details, we will then review your application to ensure it meets our Terms and Requirements after which we will contact you shortly with the result of your request.

like image 50
Chris Green Avatar answered Dec 28 '22 06:12

Chris Green