How do I get my google account data with API? - api

I would like to know how i can get my google account data directly with an API.
More precisely , I would like to get the result of "my list" with an API/endpoint call.
I know it is possible in a browser to just go to "https://www.google.com/save", But i don't know hos to get it with an API.
Regards,

Related

Get vehicle registration details from apisetu.gov.in API

I am trying to implement a feature in my website where user can input the Vehicle's Registration Number and pull out the details of the vehicle and owner. Similar to https://jankari.loconav.com/rc
There is an API provided by the government of India to achieve this - https://ndh.digitallocker.gov.in/public/api/transport#/APIs/drvlc but there is no documentations involved. I am not even sure how to use it in postman. There are no options to generate an API key etc. When you click the "try" button it just shows you a pre-written json which gives error after you execute it. Can some help me find a way to build something similar to https://jankari.loconav.com/rc using the http://apisetu.gov.in
Thanks in advance

Get Google Analytics data source uploads with API

Is it possible to get data from Google Analytics data source via API with a given id?
I use uploadData to upload data to GA: https://developers.google.com/analytics/devguides/config/mgmt/v3/mgmtReference/management/uploads/uploadData
After uploading i get some response like accountId, customDataSourceId, id, status and uploadTime. With this information i want to grab informations from GA to use it for a end to end test.
If you want to check that the upload itself went well, you can use the List method from the management API.
If you want to check that data you uploaded is properly being mapped inside GA, you should use the reporting API and query for whichever dimensions you uploaded.

eBay Daily Deals API

I'd like to use the eBay API to get the deals available in the "Deals & Special Offers" (Daily Deals) section of the site. But I can't find any functions or function parameters that would allow me to do that. It seems I can only retrieve the data available on the main site, i.e. things I can find by using the "Shop by category" menu on the eBay home page.
Is there any way to get the Daily Deals using the API?
please review
eBay Deals: New Feed
You should hit the official API, this is the new URL: http://api.epn.ebay.com/deals/v1/country/us/feed/json?feedType=json
Here's an example page of the output: http://www.fastsearchapps.com/deals

Is there a way to display google+ Zagat score on my website?

I am trying to display the Zagat review score that google displays on my site. is there a way to get that data maybe a service that return JSON with the score... thanks in advance for your help.
This isn't part of the Google Plus API, but you may find what you need as part of the Google Places API: https://developers.google.com/places/documentation/details
I have tried this - the Google Places API provides user rating 0.0 thru 5.0, but no Zagat ratings.
(Bummer!)
It does, however, provide a flag (at the end of the spec) that shows if it is a Zagat-recommended establishment.

Google Shopping API - multiple store information

We are developing an app for mobile, Mainly using Google Shopping API.
In the response we are getting one store info for one particular product.
Is there any other way to get multiple store info for one product in the response for Google Shopping API
Regards,
Bhat
if you figure out the GTIN for a product, then search by that GTIN as the query, then each result should come back as a different store
it just means usually you have to do a search on the query, grab the top most relevant GTIN, then make another request to get the store info. Thats how I have done it anyways, would be interested to know if you solved it any other way :)