(NOTES) NOTES (2024)

How to create full list of Google API

I have uploaded my code to https://github.com/Alex-1347/FullListOfGoogleApi/blob/main/GoogleDiscovery/GoogleDiscovery/Module1.vb


   1:  Imports System
   2:  Imports System.Threading.Tasks
   3:  Imports Google
   4:  Imports Google.Apis.Discovery.v1
   5:  Imports Google.Apis.Discovery.v1.Data
   6:  Imports Google.Apis.Services
   7:  Module Module1
   8:      Dim ApiKey As String = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
   9:      Dim ResultName As String = IO.Path.Combine(My.Computer.FileSystem.CurrentDirectory, "GoogleApi.html")
  10:      Dim Title As String = "Google API list"
  11:   
  12:      Sub Main()
  13:          Console.WriteLine("Discovery API Sample")
  14:          Console.WriteLine("====================")
  15:          Dim ApiList As List(Of Tuple(Of String, String, String, String))
  16:          Try
  17:              ApiList = Run().Result
  18:          Catch ex As AggregateException
  19:              For Each e In ex.InnerExceptions
  20:                  Console.WriteLine("ERROR: " & e.Message)
  21:              Next
  22:          End Try
  23:          My.Computer.FileSystem.WriteAllText(ResultName, $"<html><title>{Title}</title><style>{CSS}</style><body><table>", False)
  24:          ApiList.Sort(Function(X, Y) X.Item2.CompareTo(Y.Item2))
  25:          Dim Body As New Text.StringBuilder
  26:          ApiList.ForEach(Sub(X) Body.Append($"<tr><td>{X.Item2}</td><td><a href='{X.Item3}'>{X.Item3}</a></td><td><a href='{X.Item4}'>{X.Item1}</a></td></tr>"))
  27:          My.Computer.FileSystem.WriteAllText(ResultName, Body.ToString, True)
  28:          My.Computer.FileSystem.WriteAllText(ResultName, "</table></body></html>", True)
  29:          Console.WriteLine($"Result write to {ResultName}")
  30:          Console.ReadKey()
  31:      End Sub
  32:   
  33:      Async Function Run() As Task(Of List(Of Tuple(Of String, String, String, String)))
  34:          Dim ApiList As New List(Of Tuple(Of String, String, String, String))
  35:          Dim Service = New DiscoveryService(New BaseClientService.Initializer With {
  36:              .ApplicationName = Title,
  37:              .ApiKey = ApiKey
  38:          })
  39:          Console.WriteLine("Executing a list request...")
  40:          Dim Result = Await Service.Apis.List().ExecuteAsync()
  41:          If Result.Items IsNot Nothing Then
  42:              Dim I As Integer = 0
  43:              For Each Api As DirectoryList.ItemsData In Result.Items
  44:                  I = I + 1
  45:                  Console.WriteLine($"{I}. {Api.Id} - {Api.Title}")
  46:                  ApiList.Add(New Tuple(Of String, String, String, String)(Api.Id, Api.Title, Api.DocumentationLink, Api.DiscoveryRestUrl))
  47:              Next
  48:          End If
  49:          Return ApiList
  50:      End Function
  51:   
  52:      Dim CSS As String = "table {
  53:    counter-reset: rowNumber;
  54:  }
  55:  table tr::before {
  56:    display: table-cell;
  57:    counter-increment: rowNumber;
  58:    content: counter(rowNumber) '.';
  59:    padding-right: 0.3em;
  60:    text-align: right;
  61:  }"
  62:   
  63:   
  64:  End Module

This is instruction to receive Google API key https://github.com/Alex-1347/FullListOfGoogleApi/blob/main/README.md

And this is result GoogleApi.html




Abusive Experience Report APIhttps://developers.google.com/abusive-experience-report/abusiveexperiencereport:v1
Accelerated Mobile Pages (AMP) URL APIhttps://developers.google.com/amp/cache/acceleratedmobilepageurl:v1
Access Approval APIhttps://cloud.google.com/assured-workloads/access-approval/docsaccessapproval:v1
Access Context Manager APIhttps://cloud.google.com/access-context-manager/docs/reference/rest/accesscontextmanager:v1
ACME DNS APIhttps://developers.google.com/domains/acme-dns/acmedns:v1
Ad Exchange Buyer API IIhttps://developers.google.com/authorized-buyers/apis/reference/rest/adexchangebuyer2:v2beta1
Ad Experience Report APIhttps://developers.google.com/ad-experience-report/adexperiencereport:v1
Address Validation APIhttps://developers.google.com/maps/documentation/addressvalidationaddressvalidation:v1
Admin SDK APIhttps://developers.google.com/admin-sdk/admin:datatransfer_v1
Admin SDK APIhttps://developers.google.com/admin-sdk/admin:directory_v1
Admin SDK APIhttps://developers.google.com/admin-sdk/admin:reports_v1
AdMob APIhttps://developers.google.com/admob/api/admob:v1beta
AdMob APIhttps://developers.google.com/admob/api/admob:v1
AdSense Host APIhttps://developers.google.com/adsense/host/indexadsensehost:v4.1
AdSense Management APIhttps://developers.google.com/adsense/management/adsense:v2
Advisory Notifications APIhttps://cloud.google.com/advisory-notificationsadvisorynotifications:v1
AI Platform Training & Prediction APIhttps://cloud.google.com/ml/ml:v1
AlloyDB APIhttps://cloud.google.com/alloydb/alloydb:v1alpha
AlloyDB APIhttps://cloud.google.com/alloydb/alloydb:v1beta
AlloyDB APIhttps://cloud.google.com/alloydb/alloydb:v1
Analytics Hub APIhttps://cloud.google.com/bigquery/docs/analytics-hub-introductionanalyticshub:v1beta1
Analytics Hub APIhttps://cloud.google.com/bigquery/docs/analytics-hub-introductionanalyticshub:v1
Analytics Reporting APIhttps://developers.google.com/analytics/devguides/reporting/core/v4/analyticsreporting:v4
Android Device Provisioning Partner APIhttps://developers.google.com/zero-touch/androiddeviceprovisioning:v1
Android Management APIhttps://developers.google.com/android/managementandroidmanagement:v1
API Discovery Servicehttps://developers.google.com/discoverydiscovery:v1
API Gateway APIhttps://cloud.google.com/api-gateway/docsapigateway:v1
API Gateway APIhttps://cloud.google.com/api-gateway/docsapigateway:v1beta
API Keys APIhttps://cloud.google.com/api-keys/docsapikeys:v2
Apigee APIhttps://cloud.google.com/apigee-api-management/apigee:v1
Apigee Registry APIhttps://cloud.google.com/apigee/docs/api-hub/what-is-api-hubapigeeregistry:v1
App Engine Admin APIhttps://cloud.google.com/appengine/docs/admin-api/appengine:v1beta
App Engine Admin APIhttps://cloud.google.com/appengine/docs/admin-api/appengine:v1
App Engine Admin APIhttps://cloud.google.com/appengine/docs/admin-api/appengine:v1alpha
App Hub APIhttps://cloud.google.com/app-hub/docs/apphub:v1alpha
App Hub APIhttps://cloud.google.com/app-hub/docs/apphub:v1
Application Integration APIhttps://cloud.google.com/application-integrationintegrations:v1
Apps Script APIhttps://developers.google.com/apps-script/api/script:v1
Area120 Tables APIhttps://support.google.com/area120-tables/answer/10011390area120tables:v1alpha1
Artifact Registry APIhttps://cloud.google.com/artifacts/docs/artifactregistry:v1
Artifact Registry APIhttps://cloud.google.com/artifacts/docs/artifactregistry:v1beta2
Artifact Registry APIhttps://cloud.google.com/artifacts/docs/artifactregistry:v1beta1
Assured Workloads APIhttps://cloud.google.com/learnmoreurlassuredworkloads:v1
Assured Workloads APIhttps://cloud.google.com/learnmoreurlassuredworkloads:v1beta1
Authorized Buyers Marketplace APIhttps://developers.google.com/authorized-buyers/apis/marketplace/reference/rest/authorizedbuyersmarketplace:v1
Backup and DR Service APIhttps://cloud.google.com/backup-disaster-recoverybackupdr:v1
Backup for GKE APIhttps://cloud.google.com/kubernetes-engine/docs/add-on/backup-for-gkegkebackup:v1
Bare Metal Solution APIhttps://cloud.google.com/bare-metalbaremetalsolution:v2
Batch APIhttps://cloud.google.com/batch/batch:v1
BeyondCorp APIhttps://cloud.google.com/beyondcorp:v1
BeyondCorp APIhttps://cloud.google.com/beyondcorp:v1alpha
BigLake APIhttps://cloud.google.com/bigquery/biglake:v1
BigQuery APIhttps://cloud.google.com/bigquery/bigquery:v2
BigQuery Connection APIhttps://cloud.google.com/bigquery/docs/connections-api-introbigqueryconnection:v1beta1
BigQuery Connection APIhttps://cloud.google.com/bigquery/docs/connections-api-introbigqueryconnection:v1
BigQuery Data Policy APIhttps://cloud.google.com/bigquery/docs/column-data-maskingbigquerydatapolicy:v1
BigQuery Data Transfer APIhttps://cloud.google.com/bigquery-transfer/bigquerydatatransfer:v1
BigQuery Reservation APIhttps://cloud.google.com/bigquery/bigqueryreservation:v1
Binary Authorization APIhttps://cloud.google.com/binary-authorization/binaryauthorization:v1
Binary Authorization APIhttps://cloud.google.com/binary-authorization/binaryauthorization:v1beta1
Blockchain Node Engine APIhttps://cloud.google.com/blockchain-node-engineblockchainnodeengine:v1
Blogger APIhttps://developers.google.com/blogger/docs/3.0/getting_startedblogger:v3
Blogger APIhttps://developers.google.com/blogger/docs/3.0/getting_startedblogger:v2
Books APIhttps://code.google.com/apis/books/docs/v1/getting_started.htmlbooks:v1
Business Profile Performance APIhttps://developers.google.com/my-business/businessprofileperformance:v1
Campaign Manager 360 APIhttps://developers.google.com/doubleclick-advertisers/dfareporting:v3.5
Campaign Manager 360 APIhttps://developers.google.com/doubleclick-advertisers/dfareporting:v4
Certificate Authority APIhttps://cloud.google.com/privateca:v1
Certificate Authority APIhttps://cloud.google.com/privateca:v1beta1
Certificate Manager APIhttps://cloud.google.com/certificate-managercertificatemanager:v1
Checks APIhttps://developers.google.com/checkschecks:v1alpha
Chrome Management APIhttp://developers.google.com/chrome/management/chromemanagement:v1
Chrome Policy APIhttp://developers.google.com/chrome/policychromepolicy:v1
Chrome UX Report APIhttps://developers.google.com/web/tools/chrome-user-experience-report/api/referencechromeuxreport:v1
Chrome Verified Access APIhttps://developers.google.com/chrome/verified-accessverifiedaccess:v1
Chrome Verified Access APIhttps://developers.google.com/chrome/verified-accessverifiedaccess:v2
Cloud Asset APIhttps://cloud.google.com/asset-inventory/docs/quickstartcloudasset:v1p7beta1
Cloud Asset APIhttps://cloud.google.com/asset-inventory/docs/quickstartcloudasset:v1beta1
Cloud Asset APIhttps://cloud.google.com/asset-inventory/docs/quickstartcloudasset:v1
Cloud Asset APIhttps://cloud.google.com/asset-inventory/docs/quickstartcloudasset:v1p5beta1
Cloud Asset APIhttps://cloud.google.com/asset-inventory/docs/quickstartcloudasset:v1p1beta1
Cloud Bigtable Admin APIhttps://cloud.google.com/bigtable/bigtableadmin:v2
Cloud Billing APIhttps://cloud.google.com/billing/docs/apiscloudbilling:v1beta
Cloud Billing APIhttps://cloud.google.com/billing/docs/apiscloudbilling:v1
Cloud Billing Budget APIhttps://cloud.google.com/billing/docs/how-to/budget-api-overviewbillingbudgets:v1
Cloud Billing Budget APIhttps://cloud.google.com/billing/docs/how-to/budget-api-overviewbillingbudgets:v1beta1
Cloud Build APIhttps://cloud.google.com/cloud-build/docs/cloudbuild:v1
Cloud Build APIhttps://cloud.google.com/cloud-build/docs/cloudbuild:v2
Cloud Channel APIhttps://cloud.google.com/channelcloudchannel:v1
Cloud Composer APIhttps://cloud.google.com/composer/composer:v1beta1
Cloud Composer APIhttps://cloud.google.com/composer/composer:v1
Cloud Controls Partner APIhttps://cloud.google.com/sovereign-controls-by-partners/docs/sovereign-partners/reference/restcloudcontrolspartner:v1beta
Cloud Controls Partner APIhttps://cloud.google.com/sovereign-controls-by-partners/docs/sovereign-partners/reference/restcloudcontrolspartner:v1
Cloud Data Fusion APIhttps://cloud.google.com/data-fusion/docsdatafusion:v1beta1
Cloud Data Fusion APIhttps://cloud.google.com/data-fusion/docsdatafusion:v1
Cloud Dataplex APIhttps://cloud.google.com/dataplex/docsdataplex:v1
Cloud Dataproc APIhttps://cloud.google.com/dataproc/dataproc:v1
Cloud Datastore APIhttps://cloud.google.com/datastore/datastore:v1beta3
Cloud Datastore APIhttps://cloud.google.com/datastore/datastore:v1
Cloud Datastore APIhttps://cloud.google.com/datastore/datastore:v1beta1
Cloud Deploy APIhttps://cloud.google.com/deploy/clouddeploy:v1
Cloud Deployment Manager V2 APIhttps://cloud.google.com/deployment-managerdeploymentmanager:alpha
Cloud Deployment Manager V2 APIhttps://cloud.google.com/deployment-managerdeploymentmanager:v2beta
Cloud Deployment Manager V2 APIhttps://cloud.google.com/deployment-managerdeploymentmanager:v2
Cloud DNS APIhttps://cloud.google.com/dns/docsdns:v1
Cloud DNS APIhttps://cloud.google.com/dns/docsdns:v1beta2
Cloud Document AI APIhttps://cloud.google.com/document-ai/docs/documentai:v1beta3
Cloud Document AI APIhttps://cloud.google.com/document-ai/docs/documentai:v1beta2
Cloud Document AI APIhttps://cloud.google.com/document-ai/docs/documentai:v1
Cloud Domains APIhttps://cloud.google.com/domains/domains:v1alpha2
Cloud Domains APIhttps://cloud.google.com/domains/domains:v1
Cloud Domains APIhttps://cloud.google.com/domains/domains:v1beta1
Cloud Filestore APIhttps://cloud.google.com/filestore/file:v1
Cloud Filestore APIhttps://cloud.google.com/filestore/file:v1beta1
Cloud Firestore APIhttps://cloud.google.com/firestorefirestore:v1beta2
Cloud Firestore APIhttps://cloud.google.com/firestorefirestore:v1
Cloud Firestore APIhttps://cloud.google.com/firestorefirestore:v1beta1
Cloud Functions APIhttps://cloud.google.com/functionscloudfunctions:v1
Cloud Functions APIhttps://cloud.google.com/functionscloudfunctions:v2
Cloud Functions APIhttps://cloud.google.com/functionscloudfunctions:v2alpha
Cloud Functions APIhttps://cloud.google.com/functionscloudfunctions:v2beta
Cloud Healthcare APIhttps://cloud.google.com/healthcarehealthcare:v1
Cloud Healthcare APIhttps://cloud.google.com/healthcarehealthcare:v1beta1
Cloud Identity APIhttps://cloud.google.com/identity/cloudidentity:v1
Cloud Identity APIhttps://cloud.google.com/identity/cloudidentity:v1beta1
Cloud Identity-Aware Proxy APIhttps://cloud.google.com/iapiap:v1
Cloud Identity-Aware Proxy APIhttps://cloud.google.com/iapiap:v1beta1
Cloud IDS APIhttps://cloud.google.com/ids:v1
Cloud Key Management Service (KMS) APIhttps://cloud.google.com/kms/cloudkms:v1
Cloud Life Sciences APIhttps://cloud.google.com/life-scienceslifesciences:v2beta
Cloud Logging APIhttps://cloud.google.com/logging/docs/logging:v2
Cloud Memorystore for Memcached APIhttps://cloud.google.com/memorystore/memcache:v1beta2
Cloud Memorystore for Memcached APIhttps://cloud.google.com/memorystore/memcache:v1
Cloud Monitoring APIhttps://cloud.google.com/monitoring/api/monitoring:v3
Cloud Monitoring APIhttps://cloud.google.com/monitoring/api/monitoring:v1
Cloud Natural Language APIhttps://cloud.google.com/natural-language/language:v2
Cloud Natural Language APIhttps://cloud.google.com/natural-language/language:v1
Cloud Natural Language APIhttps://cloud.google.com/natural-language/language:v1beta2
Cloud OS Login APIhttps://cloud.google.com/compute/docs/oslogin/oslogin:v1alpha
Cloud OS Login APIhttps://cloud.google.com/compute/docs/oslogin/oslogin:v1
Cloud OS Login APIhttps://cloud.google.com/compute/docs/oslogin/oslogin:v1beta
Cloud Profiler APIhttps://cloud.google.com/profiler/cloudprofiler:v2
Cloud Pub/Sub APIhttps://cloud.google.com/pubsub/docspubsub:v1beta2
Cloud Pub/Sub APIhttps://cloud.google.com/pubsub/docspubsub:v1beta1a
Cloud Pub/Sub APIhttps://cloud.google.com/pubsub/docspubsub:v1
Cloud Resource Manager APIhttps://cloud.google.com/resource-managercloudresourcemanager:v2
Cloud Resource Manager APIhttps://cloud.google.com/resource-managercloudresourcemanager:v3
Cloud Resource Manager APIhttps://cloud.google.com/resource-managercloudresourcemanager:v1beta1
Cloud Resource Manager APIhttps://cloud.google.com/resource-managercloudresourcemanager:v2beta1
Cloud Resource Manager APIhttps://cloud.google.com/resource-managercloudresourcemanager:v1
Cloud Run Admin APIhttps://cloud.google.com/run/run:v1
Cloud Run Admin APIhttps://cloud.google.com/run/run:v2
Cloud Runtime Configuration APIhttps://cloud.google.com/deployment-manager/runtime-configurator/runtimeconfig:v1beta1
Cloud Runtime Configuration APIhttps://cloud.google.com/deployment-manager/runtime-configurator/runtimeconfig:v1
Cloud Scheduler APIhttps://cloud.google.com/scheduler/cloudscheduler:v1beta1
Cloud Scheduler APIhttps://cloud.google.com/scheduler/cloudscheduler:v1
Cloud Search APIhttps://developers.google.com/cloud-search/docs/guides/cloudsearch:v1
Cloud Shell APIhttps://cloud.google.com/shell/docs/cloudshell:v1
Cloud Source Repositories APIhttps://cloud.google.com/source-repositories/docs/apissourcerepo:v1
Cloud Spanner APIhttps://cloud.google.com/spanner/spanner:v1
Cloud Speech-to-Text APIhttps://cloud.google.com/speech-to-text/docs/quickstart-protocolspeech:v1p1beta1
Cloud Speech-to-Text APIhttps://cloud.google.com/speech-to-text/docs/quickstart-protocolspeech:v1
Cloud SQL Admin APIhttps://developers.google.com/cloud-sql/sqladmin:v1
Cloud SQL Admin APIhttps://developers.google.com/cloud-sql/sqladmin:v1beta4
Cloud Storage APIhttps://cloud.google.com/storage/docs/apisstorage:v1
Cloud Storage for Firebase APIhttps://firebase.google.com/docs/storagefirebasestorage:v1beta
Cloud Talent Solution APIhttps://cloud.google.com/talent-solution/job-search/docs/jobs:v4
Cloud Talent Solution APIhttps://cloud.google.com/talent-solution/job-search/docs/jobs:v3p1beta1
Cloud Talent Solution APIhttps://cloud.google.com/talent-solution/job-search/docs/jobs:v3
Cloud Tasks APIhttps://cloud.google.com/tasks/cloudtasks:v2beta3
Cloud Tasks APIhttps://cloud.google.com/tasks/cloudtasks:v2beta2
Cloud Tasks APIhttps://cloud.google.com/tasks/cloudtasks:v2
Cloud Testing APIhttps://firebase.google.com/docs/test-lab/testing:v1
Cloud Text-to-Speech APIhttps://cloud.google.com/text-to-speech/texttospeech:v1
Cloud Text-to-Speech APIhttps://cloud.google.com/text-to-speech/texttospeech:v1beta1
Cloud Tool Results APIhttps://firebase.google.com/docs/test-lab/toolresults:v1beta3
Cloud TPU APIhttps://cloud.google.com/tpu/tpu:v1alpha1
Cloud TPU APIhttps://cloud.google.com/tpu/tpu:v2alpha1
Cloud TPU APIhttps://cloud.google.com/tpu/tpu:v1
Cloud TPU APIhttps://cloud.google.com/tpu/tpu:v2
Cloud Trace APIhttps://cloud.google.com/tracecloudtrace:v2beta1
Cloud Trace APIhttps://cloud.google.com/tracecloudtrace:v1
Cloud Trace APIhttps://cloud.google.com/tracecloudtrace:v2
Cloud Translation APIhttps://cloud.google.com/translate/docs/quickstartstranslate:v2
Cloud Translation APIhttps://cloud.google.com/translate/docs/quickstartstranslate:v3beta1
Cloud Translation APIhttps://cloud.google.com/translate/docs/quickstartstranslate:v3
Cloud Video Intelligence APIhttps://cloud.google.com/video-intelligence/docs/videointelligence:v1p3beta1
Cloud Video Intelligence APIhttps://cloud.google.com/video-intelligence/docs/videointelligence:v1beta2
Cloud Video Intelligence APIhttps://cloud.google.com/video-intelligence/docs/videointelligence:v1p1beta1
Cloud Video Intelligence APIhttps://cloud.google.com/video-intelligence/docs/videointelligence:v1p2beta1
Cloud Video Intelligence APIhttps://cloud.google.com/video-intelligence/docs/videointelligence:v1
Cloud Vision APIhttps://cloud.google.com/vision/vision:v1
Cloud Vision APIhttps://cloud.google.com/vision/vision:v1p1beta1
Cloud Vision APIhttps://cloud.google.com/vision/vision:v1p2beta1
Cloud Workstations APIhttps://cloud.google.com/workstationsworkstations:v1
Cloud Workstations APIhttps://cloud.google.com/workstationsworkstations:v1beta
Compute Engine APIhttps://developers.google.com/compute/docs/reference/latest/compute:beta
Compute Engine APIhttps://developers.google.com/compute/docs/reference/latest/compute:v1
Compute Engine APIhttps://developers.google.com/compute/docs/reference/latest/compute:alpha
Connectors APIhttps://cloud.google.com/apigee/docs/api-platform/connectors/about-connectorsconnectors:v1
Connectors APIhttps://cloud.google.com/apigee/docs/api-platform/connectors/about-connectorsconnectors:v2
Contact Center AI Insights APIhttps://cloud.google.com/contact-center/insights/docscontactcenterinsights:v1
Contact Center AI Platform APIhttps://cloud.google.com/solutions/contact-center-ai-platformcontactcenteraiplatform:v1alpha1
Container Analysis APIhttps://cloud.google.com/container-analysis/api/reference/rest/containeranalysis:v1beta1
Container Analysis APIhttps://cloud.google.com/container-analysis/api/reference/rest/containeranalysis:v1
Container Analysis APIhttps://cloud.google.com/container-analysis/api/reference/rest/containeranalysis:v1alpha1
Content API for Shoppinghttps://developers.google.com/shopping-content/v2/content:v2.1
Custom Search APIhttps://developers.google.com/custom-search/v1/introductioncustomsearch:v1
Data Labeling APIhttps://cloud.google.com/data-labeling/docs/datalabeling:v1beta1
Data Lineage APIhttps://cloud.google.com/data-catalogdatalineage:v1
Data pipelines APIhttps://cloud.google.com/dataflow/docs/guides/data-pipelinesdatapipelines:v1
Data Portability APIhttps://developers.google.com/data-portabilitydataportability:v1beta
Data Portability APIhttps://developers.google.com/data-portabilitydataportability:v1
Database Migration APIhttps://cloud.google.com/database-migration/datamigration:v1beta1
Database Migration APIhttps://cloud.google.com/database-migration/datamigration:v1
Dataflow APIhttps://cloud.google.com/dataflowdataflow:v1b3
Dataform APIhttps://cloud.google.com/dataform/docsdataform:v1beta1
Dataproc Metastore APIhttps://cloud.google.com/dataproc-metastore/docsmetastore:v1
Dataproc Metastore APIhttps://cloud.google.com/dataproc-metastore/docsmetastore:v1beta
Dataproc Metastore APIhttps://cloud.google.com/dataproc-metastore/docsmetastore:v1alpha
Datastream APIhttps://cloud.google.com/datastream/datastream:v1alpha1
Datastream APIhttps://cloud.google.com/datastream/datastream:v1
Dialogflow APIhttps://cloud.google.com/dialogflow/dialogflow:v3
Dialogflow APIhttps://cloud.google.com/dialogflow/dialogflow:v2
Dialogflow APIhttps://cloud.google.com/dialogflow/dialogflow:v3beta1
Dialogflow APIhttps://cloud.google.com/dialogflow/dialogflow:v2beta1
Digital Asset Links APIhttps://developers.google.com/digital-asset-links/digitalassetlinks:v1
Discovery Engine APIhttps://cloud.google.com/discovery-engine/docsdiscoveryengine:v1
Discovery Engine APIhttps://cloud.google.com/discovery-engine/docsdiscoveryengine:v1alpha
Discovery Engine APIhttps://cloud.google.com/discovery-engine/docsdiscoveryengine:v1beta
Display & Video 360 APIhttps://developers.google.com/display-video/displayvideo:v2
Display & Video 360 APIhttps://developers.google.com/display-video/displayvideo:v3
Document AI Warehouse APIhttps://cloud.google.com/document-warehousecontentwarehouse:v1
Domains RDAP APIhttps://developers.google.com/domains/rdap/domainsrdap:v1
DoubleClick Bid Manager APIhttps://developers.google.com/bid-manager/doubleclickbidmanager:v2
Drive Activity APIhttps://developers.google.com/drive/activity/driveactivity:v2
Drive APIhttps://developers.google.com/drive/drive:v2
Drive APIhttps://developers.google.com/drive/drive:v3
Drive Labels APIhttps://developers.google.com/drive/labelsdrivelabels:v2
Drive Labels APIhttps://developers.google.com/drive/labelsdrivelabels:v2beta
Enterprise License Manager APIhttps://developers.google.com/admin-sdk/licensing/licensing:v1
Error Reporting APIhttps://cloud.google.com/error-reporting/clouderrorreporting:v1beta1
Essential Contacts APIhttps://cloud.google.com/essentialcontacts/docs/essentialcontacts:v1
Eventarc APIhttps://cloud.google.com/eventarceventarc:v1
Fact Check Tools APIhttps://developers.google.com/fact-check/tools/api/factchecktools:v1alpha1
Firebase App Check APIhttps://firebase.google.com/docs/app-checkfirebaseappcheck:v1
Firebase App Check APIhttps://firebase.google.com/docs/app-checkfirebaseappcheck:v1beta
Firebase App Distribution APIhttps://firebase.google.com/products/app-distributionfirebaseappdistribution:v1alpha
Firebase App Distribution APIhttps://firebase.google.com/products/app-distributionfirebaseappdistribution:v1
Firebase Cloud Messaging APIhttps://firebase.google.com/docs/cloud-messagingfcm:v1
Firebase Cloud Messaging Data APIhttps://firebase.google.com/docs/cloud-messagingfcmdata:v1beta1
Firebase Dynamic Links APIhttps://firebase.google.com/docs/dynamic-links/firebasedynamiclinks:v1
Firebase Hosting APIhttps://firebase.google.com/docs/hosting/firebasehosting:v1
Firebase Hosting APIhttps://firebase.google.com/docs/hosting/firebasehosting:v1beta1
Firebase Management APIhttps://firebase.google.comfirebase:v1beta1
Firebase ML APIhttps://firebase.google.comfirebaseml:v1
Firebase ML APIhttps://firebase.google.comfirebaseml:v2beta
Firebase ML APIhttps://firebase.google.comfirebaseml:v1beta2
Firebase Realtime Database APIhttps://firebase.google.com/docs/reference/rest/database/database-management/rest/firebasedatabase:v1beta
Firebase Rules APIhttps://firebase.google.com/docs/storage/securityfirebaserules:v1
Fitness APIhttps://developers.google.com/fit/rest/v1/get-startedfitness:v1
GDC Virtual APIhttps://cloud.google.com/anthos/clusters/docs/on-prem/gkeonprem:v1
GKE Hub APIhttps://cloud.google.com/anthos/multicluster-management/connect/registering-a-clustergkehub:v2alpha
GKE Hub APIhttps://cloud.google.com/anthos/multicluster-management/connect/registering-a-clustergkehub:v1beta
GKE Hub APIhttps://cloud.google.com/anthos/multicluster-management/connect/registering-a-clustergkehub:v1beta1
GKE Hub APIhttps://cloud.google.com/anthos/multicluster-management/connect/registering-a-clustergkehub:v1
GKE Hub APIhttps://cloud.google.com/anthos/multicluster-management/connect/registering-a-clustergkehub:v1alpha
Gmail APIhttps://developers.google.com/gmail/api/gmail:v1
Gmail Postmaster Tools APIhttps://developers.google.com/gmail/postmastergmailpostmastertools:v1beta1
Gmail Postmaster Tools APIhttps://developers.google.com/gmail/postmastergmailpostmastertools:v1
Google Analytics Admin APIhttp://code.google.com/apis/analytics/docs/mgmt/home.htmlanalyticsadmin:v1alpha
Google Analytics Admin APIhttp://code.google.com/apis/analytics/docs/mgmt/home.htmlanalyticsadmin:v1beta
Google Analytics APIhttp://code.google.com/apis/analytics/docs/mgmt/home.htmlanalytics:v3
Google Analytics Data APIhttps://developers.google.com/analytics/devguides/reporting/data/v1/analyticsdata:v1beta
Google Calendar APIhttp://code.google.com/apis/calendar/v3/calendar:v3
Google Chat APIhttps://developers.google.com/hangouts/chatchat:v1
Google Civic Information APIhttps://developers.google.com/civic-information/civicinfo:v2
Google Classroom APIhttps://developers.google.com/classroomclassroom:v1
Google Cloud Data Catalog APIhttps://cloud.google.com/data-catalog/docs/datacatalog:v1beta1
Google Cloud Data Catalog APIhttps://cloud.google.com/data-catalog/docs/datacatalog:v1
Google Cloud Memorystore for Redis APIhttps://cloud.google.com/memorystore/docs/redis/redis:v1
Google Cloud Memorystore for Redis APIhttps://cloud.google.com/memorystore/docs/redis/redis:v1beta1
Google Cloud Support APIhttps://cloud.google.com/support/docs/apiscloudsupport:v2beta
Google Cloud Support APIhttps://cloud.google.com/support/docs/apiscloudsupport:v2
Google Docs APIhttps://developers.google.com/docs/docs:v1
Google Forms APIhttps://developers.google.com/forms/apiforms:v1
Google Keep APIhttps://developers.google.com/keep/apikeep:v1
Google Marketing Platform Admin APIhttps://developers.google.com/analytics/devguides/config/gmp/v1marketingplatformadmin:v1alpha
Google OAuth2 APIhttps://developers.google.com/accounts/docs/OAuth2oauth2:v2
Google Play Android Developer APIhttps://developers.google.com/android-publisherandroidpublisher:v3
Google Play Custom App Publishing APIhttps://developers.google.com/android/work/play/custom-app-api/playcustomapp:v1
Google Play Developer Reporting APIhttps://developers.google.com/play/developer/reportingplaydeveloperreporting:v1beta1
Google Play Developer Reporting APIhttps://developers.google.com/play/developer/reportingplaydeveloperreporting:v1alpha1
Google Play EMM APIandroidenterprise:v1
Google Play Game Managementhttps://developers.google.com/games/gamesManagement:v1management
Google Play Game Serviceshttps://developers.google.com/games/games:v1
Google Play Game Services Publishing APIhttps://developers.google.com/games/gamesConfiguration:v1configuration
Google Play Grouping APIhttps://cloud.google.com/playgrouping/playgrouping:v1alpha1
Google Play Integrity APIhttps://developer.android.com/google/play/integrityplayintegrity:v1
Google Search Console APIhttps://developers.google.com/webmaster-tools/search-console-api/searchconsole:v1
Google Sheets APIhttps://developers.google.com/sheets/sheets:v4
Google Slides APIhttps://developers.google.com/slides/slides:v1
Google Tasks APIhttps://developers.google.com/tasks/tasks:v1
Google Vault APIhttps://developers.google.com/vaultvault:v1
Google Wallet APIhttps://developers.google.com/pay/passeswalletobjects:v1
Google Workspace Alert Center APIhttps://developers.google.com/admin-sdk/alertcenter/alertcenter:v1beta1
Google Workspace Events APIhttps://developers.google.com/workspace/eventsworkspaceevents:v1
Google Workspace Reseller APIhttps://developers.google.com/google-apps/reseller/reseller:v1
Groups Migration APIhttps://developers.google.com/google-apps/groups-migration/groupsmigration:v1
Groups Settings APIhttps://developers.google.com/admin-sdk/groups-settingsgroupssettings:v1
HomeGraph APIhttps://developers.home.google.com/cloud-to-cloud/get-startedhomegraph:v1
IAM Service Account Credentials APIhttps://cloud.google.com/iam/docs/creating-short-lived-service-account-credentialsiamcredentials:v1
Identity and Access Management (IAM) APIhttps://cloud.google.com/iam/iam:v1
Identity and Access Management (IAM) APIhttps://cloud.google.com/iam/iam:v2
Identity and Access Management (IAM) APIhttps://cloud.google.com/iam/iam:v2beta
Identity Toolkit APIhttps://cloud.google.com/identity-platformidentitytoolkit:v1
Identity Toolkit APIhttps://cloud.google.com/identity-platformidentitytoolkit:v2
Identity Toolkit APIhttps://cloud.google.com/identity-platformidentitytoolkit:v3
Infrastructure Manager APIhttps://cloud.google.com/infrastructure-manager/docsconfig:v1
KMS Inventory APIhttps://cloud.google.com/kms/kmsinventory:v1
Knowledge Graph Search APIhttps://developers.google.com/knowledge-graph/kgsearch:v1
Kubernetes Engine APIhttps://cloud.google.com/container-engine/container:v1
Kubernetes Engine APIhttps://cloud.google.com/container-engine/container:v1beta1
Library Agent APIhttps://cloud.google.com/docs/quotalibraryagent:v1
Local Services APIhttps://ads.google.com/local-services-ads/localservices:v1
Looker (Google Cloud core) APIhttps://cloud.google.com/looker/docs/reference/rest/looker:v1
Managed Service for Microsoft Active Directory APIhttps://cloud.google.com/managed-microsoft-ad/managedidentities:v1
Managed Service for Microsoft Active Directory APIhttps://cloud.google.com/managed-microsoft-ad/managedidentities:v1beta1
Managed Service for Microsoft Active Directory APIhttps://cloud.google.com/managed-microsoft-ad/managedidentities:v1alpha1
Manufacturer Center APIhttps://developers.google.com/manufacturers/manufacturers:v1
Migration Center APIhttps://cloud.google.com/migration-centermigrationcenter:v1alpha1
Migration Center APIhttps://cloud.google.com/migration-centermigrationcenter:v1
My Business Account Management APIhttps://developers.google.com/my-business/mybusinessaccountmanagement:v1
My Business Business Information APIhttps://developers.google.com/my-business/mybusinessbusinessinformation:v1
My Business Lodging APIhttps://developers.google.com/my-business/mybusinesslodging:v1
My Business Notifications APIhttps://developers.google.com/my-business/mybusinessnotifications:v1
My Business Place Actions APIhttps://developers.google.com/my-business/mybusinessplaceactions:v1
My Business Q&A APIhttps://developers.google.com/my-business/mybusinessqanda:v1
My Business Verifications APIhttps://developers.google.com/my-business/mybusinessverifications:v1
Network Connectivity APIhttps://cloud.google.com/network-connectivity/docs/reference/networkconnectivity/restnetworkconnectivity:v1alpha1
Network Connectivity APIhttps://cloud.google.com/network-connectivity/docs/reference/networkconnectivity/restnetworkconnectivity:v1
Network Management APIhttps://cloud.google.com/networkmanagement:v1beta1
Network Management APIhttps://cloud.google.com/networkmanagement:v1
Network Security APIhttps://cloud.google.com/networkingnetworksecurity:v1
Network Security APIhttps://cloud.google.com/networkingnetworksecurity:v1beta1
Network Services APIhttps://cloud.google.com/networkingnetworkservices:v1
Network Services APIhttps://cloud.google.com/networkingnetworkservices:v1beta1
Notebooks APIhttps://cloud.google.com/notebooks/docs/notebooks:v2
Notebooks APIhttps://cloud.google.com/notebooks/docs/notebooks:v1
On-Demand Scanning APIhttps://cloud.google.com/container-analysis/docs/on-demand-scanning/ondemandscanning:v1
On-Demand Scanning APIhttps://cloud.google.com/container-analysis/docs/on-demand-scanning/ondemandscanning:v1beta1
Organization Policy APIhttps://cloud.google.com/orgpolicy/docs/reference/rest/index.htmlorgpolicy:v2
OS Config APIhttps://cloud.google.com/compute/docs/osconfig/restosconfig:v1beta
OS Config APIhttps://cloud.google.com/compute/docs/osconfig/restosconfig:v1alpha
OS Config APIhttps://cloud.google.com/compute/docs/osconfig/restosconfig:v1
PageSpeed Insights APIhttps://developers.google.com/speed/docs/insights/v5/aboutpagespeedonline:v5
Payments Reseller Subscription APIhttps://developers.google.com/payments/reseller/subscription/paymentsresellersubscription:v1
People APIhttps://developers.google.com/people/people:v1
Places API (New)https://mapsplatform.google.com/maps-products/#places-sectionplaces:v1
Policy Analyzer APIhttps://www.google.compolicyanalyzer:v1beta1
Policy Analyzer APIhttps://www.google.compolicyanalyzer:v1
Policy Simulator APIhttps://cloud.google.com/iam/docs/simulating-accesspolicysimulator:v1
Policy Simulator APIhttps://cloud.google.com/iam/docs/simulating-accesspolicysimulator:v1alpha
Policy Simulator APIhttps://cloud.google.com/iam/docs/simulating-accesspolicysimulator:v1beta
Policy Troubleshooter APIhttps://cloud.google.com/iam/policytroubleshooter:v1beta
Policy Troubleshooter APIhttps://cloud.google.com/iam/policytroubleshooter:v1
Poly APIhttps://developers.google.com/poly/poly:v1
Pub/Sub Lite APIhttps://cloud.google.com/pubsub/lite/docspubsublite:v1
Public Certificate Authority APIhttps://cloud.google.com/public-certificate-authority/docspublicca:v1alpha1
Public Certificate Authority APIhttps://cloud.google.com/public-certificate-authority/docspublicca:v1
Public Certificate Authority APIhttps://cloud.google.com/public-certificate-authority/docspublicca:v1beta1
Rapid Migration Assessment APIhttps://cloud.google.com/migration-centerrapidmigrationassessment:v1
Reader Revenue Subscription Linking APIhttps://developers.google.com/news/subscribe/subscription-linking/overviewreaderrevenuesubscriptionlinking:v1
Real-time Bidding APIhttps://developers.google.com/authorized-buyers/apis/realtimebidding/reference/rest/realtimebidding:v1alpha
Real-time Bidding APIhttps://developers.google.com/authorized-buyers/apis/realtimebidding/reference/rest/realtimebidding:v1
reCAPTCHA Enterprise APIhttps://cloud.google.com/recaptcha-enterprise/recaptchaenterprise:v1
Recommendations AI (Beta)https://cloud.google.com/recommendations-ai/docsrecommendationengine:v1beta1
Recommender APIhttps://cloud.google.com/recommender/docs/recommender:v1
Recommender APIhttps://cloud.google.com/recommender/docs/recommender:v1beta1
Resource Settings APIhttps://cloud.google.com/resource-manager/docs/resource-settings/overviewresourcesettings:v1
Safe Browsing APIhttps://developers.google.com/safe-browsing/safebrowsing:v4
Safe Browsing APIhttps://developers.google.com/safe-browsing/safebrowsing:v5
SAS Portal APIhttps://developers.google.com/spectrum-access-system/sasportal:v1alpha1
SAS Portal API (Testing)https://developers.google.com/spectrum-access-system/prod_tt_sasportal:v1alpha1
Search Ads 360 APIhttps://developers.google.com/search-adsdoubleclicksearch:v2
Search Ads 360 Reporting APIhttps://developers.google.com/search-ads/reportingsearchads360:v0
Secret Manager APIhttps://cloud.google.com/secret-manager/secretmanager:v1beta2
Secret Manager APIhttps://cloud.google.com/secret-manager/secretmanager:v1
Secret Manager APIhttps://cloud.google.com/secret-manager/secretmanager:v1beta1
Security Command Center APIhttps://cloud.google.com/security-command-centersecuritycenter:v1beta1
Security Command Center APIhttps://cloud.google.com/security-command-centersecuritycenter:v1beta2
Security Command Center APIhttps://cloud.google.com/security-command-centersecuritycenter:v1
Security Token Service APIhttp://cloud.google.com/iam/docs/workload-identity-federationsts:v1beta
Security Token Service APIhttp://cloud.google.com/iam/docs/workload-identity-federationsts:v1
Sensitive Data Protection (DLP)https://cloud.google.com/sensitive-data-protection/docs/dlp:v2
Serverless VPC Access APIhttps://cloud.google.com/vpc/docs/configure-serverless-vpc-accessvpcaccess:v1beta1
Serverless VPC Access APIhttps://cloud.google.com/vpc/docs/configure-serverless-vpc-accessvpcaccess:v1
Service Consumer Management APIhttps://cloud.google.com/service-consumer-management/docs/overviewserviceconsumermanagement:v1beta1
Service Consumer Management APIhttps://cloud.google.com/service-consumer-management/docs/overviewserviceconsumermanagement:v1
Service Control APIhttps://cloud.google.com/service-control/servicecontrol:v1
Service Control APIhttps://cloud.google.com/service-control/servicecontrol:v2
Service Directory APIhttps://cloud.google.com/service-directoryservicedirectory:v1
Service Directory APIhttps://cloud.google.com/service-directoryservicedirectory:v1beta1
Service Management APIhttps://cloud.google.com/service-management/servicemanagement:v1
Service Networking APIhttps://cloud.google.com/service-infrastructure/docs/service-networking/getting-startedservicenetworking:v1beta
Service Networking APIhttps://cloud.google.com/service-infrastructure/docs/service-networking/getting-startedservicenetworking:v1
Service Usage APIhttps://cloud.google.com/service-usage/serviceusage:v1beta1
Service Usage APIhttps://cloud.google.com/service-usage/serviceusage:v1
Site Verification APIhttps://code.google.com/apis/siteverification/siteVerification:v1
Smart Device Management APIhttps://developers.google.com/nest/device-accesssmartdevicemanagement:v1
Solar APIhttps://developers.google.com/maps/documentation/solarsolar:v1
Storage Transfer APIhttps://cloud.google.com/storage-transfer/docsstoragetransfer:v1
Street View Publish APIhttps://developers.google.com/streetview/publish/streetviewpublish:v1
Tag Manager APIhttps://developers.google.com/tag-managertagmanager:v2
Tag Manager APIhttps://developers.google.com/tag-managertagmanager:v1
Traffic Director APIhttps://cloud.google.com/traffic-directortrafficdirector:v2
Traffic Director APIhttps://cloud.google.com/traffic-directortrafficdirector:v3
Transcoder APIhttps://cloud.google.com/transcoder/docs/transcoder:v1
Travel Impact Model APIhttps://developers.google.com/travel/impact-modeltravelimpactmodel:v1
versionhistory.googleapis.com APIhttps://developers.chrome.com/versionhistoryversionhistory:v1
Vertex AI APIhttps://cloud.google.com/vertex-ai/aiplatform:v1
Vertex AI APIhttps://cloud.google.com/vertex-ai/aiplatform:v1beta1
Vertex AI Search for Retail APIhttps://cloud.google.com/recommendationsretail:v2alpha
Vertex AI Search for Retail APIhttps://cloud.google.com/recommendationsretail:v2beta
Vertex AI Search for Retail APIhttps://cloud.google.com/recommendationsretail:v2
VM Migration APIhttps://cloud.google.com/migrate/virtual-machinesvmmigration:v1
VM Migration APIhttps://cloud.google.com/migrate/virtual-machinesvmmigration:v1alpha1
VMware Engine APIhttps://cloud.google.com/solutions/vmware-as-a-servicevmwareengine:v1
Web Fonts Developer APIhttps://developers.google.com/fonts/docs/developer_apiwebfonts:v1
Web Risk APIhttps://cloud.google.com/web-risk/webrisk:v1
Web Search Indexing APIhttps://developers.google.com/search/apis/indexing-api/indexing:v3
Web Security Scanner APIhttps://cloud.google.com/security-command-center/docs/concepts-web-security-scanner-overview/websecurityscanner:v1alpha
Web Security Scanner APIhttps://cloud.google.com/security-command-center/docs/concepts-web-security-scanner-overview/websecurityscanner:v1beta
Web Security Scanner APIhttps://cloud.google.com/security-command-center/docs/concepts-web-security-scanner-overview/websecurityscanner:v1
Workflow Executions APIhttps://cloud.google.com/workflowsworkflowexecutions:v1beta
Workflow Executions APIhttps://cloud.google.com/workflowsworkflowexecutions:v1
Workflows APIhttps://cloud.google.com/workflowsworkflows:v1beta
Workflows APIhttps://cloud.google.com/workflowsworkflows:v1
Workload Manager APIhttps://cloud.google.com/workload-manager/docsworkloadmanager:v1
YouTube Analytics APIhttps://developers.google.com/youtube/analyticsyoutubeAnalytics:v2
YouTube Data API v3https://developers.google.com/youtube/youtube:v3
YouTube Reporting APIhttps://developers.google.com/youtube/reporting/v1/reports/youtubereporting:v1



Related page:

I have used a number of this API on my projects, for example :

In other case I like free Cloud service:



Comments ( )
<00>  <01>  <02>  <03>  <04>  <05>  <06>  <07>  <08>  <09>  <10>  <11>  <12>  <13>  <14>  <15>  <16>  <17>  <18>  <19>  <20>  <21>  <22>  <23
Link to this page: http://www.vb-net.com/GoogleApiDiscovery/Index.htm
<SITEMAP>  <MVC>  <ASP>  <NET>  <DATA>  <KIOSK>  <FLEX>  <SQL>  <NOTES>  <LINUX>  <MONO>  <FREEWARE>  <DOCS>  <ENG>  <CHAT ME>  <ABOUT ME>  < THANKS ME>