Zhinkk
Zhinkk

Reputation: 347

Where do I find my youtube v3 data API quota limit?

on this page (https://developers.google.com/youtube/v3/getting-started) google says:

You can find the quota available to your application in the Developers Console.

I went to my Developer Console, and it shows me how many requests I made, but it does not show my exact quota (for my free account). Does anybody know how to access this information? The url for the developer console is https://console.developers.google.com/

Thanks!

Upvotes: 13

Views: 17502

Answers (3)

anjandash
anjandash

Reputation: 817

🔰🔰 For server/web-based apps 🔰🔰

The valid steps as of February 21, 2021:

  • Go to Console: https://console.developers.google.com/ & check if correct project is selected*

  • Click on the Library option on the left menu

  • Click on the YouTube Data API 3 option

  • Click on the Manage button on the Youtube Data API 3 page

  • Then click on Quotas on the left menu on the Manage page

Lastly, expand the Queries section to see the quota usage.


*Make sure the project/service is selected which is using the YouTube API

Upvotes: 8

Verma
Verma

Reputation: 8439

  • Navigate to your Developer Console
  • Under "APIs & Services" (default page) click on the API you're looking for
  • Click "Quotas" in the left hand side bar

This will give you a generalized view of your usage over time for that particular API.


Update for July 2020

Check out the IAM Admin/Quotas page for a simplified view of your usage against your total quotas.

You can change your project in the left of the top bar and search per API with the dropdown options on the page.

Clicking any of the listed quotas will show you additional metrics, e.g. a graph of requests over time.

Upvotes: 18

CodeToLife
CodeToLife

Reputation: 4151

go to :

https://console.developers.google.com/apis/dashboard?project=your_app_name

where the your_app_name is your lowcased youtube api application's name.

Click at top left's three lined menu icon. In to-right slided menu hover/click the IAM&Admin list item and in an another list you will see that 'quota'!

Upvotes: 1

Related Questions