Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Gmail API Pricing

Tags:

c#

.net

gmail-api

I'm using the Gmail API in a .Net project using the client_secret.json file.

Is that totally free, or is there any cost we need to pay for using Gmail API?

Also how long is the client_secret.json valid? Is there any expiry of the file?

like image 674
vandana Avatar asked Mar 08 '23 04:03

vandana


2 Answers

The Gmail API, like Gmail itself, is (currently) a free service from Google.

(Note that Google does offer additional features for various apps, and charges for those features. See "Gsuite": https://gsuite.google.com/pricing.html?tab_activeEl=tabset-companies)

There are quota (usage) limits on the API.

For client-secrets.json (credentials used for server-to-server authentication), there is no expiration. Of course, a given client secret will stop working if you revoke it (delete it) through the Google developer console.

like image 145
payne Avatar answered Mar 12 '23 14:03

payne


There is no billing marked for the Gmail API however there are usage limits: https://developers.google.com/gmail/api/v1/reference/quota

like image 30
Reed Avatar answered Mar 12 '23 13:03

Reed