Skip to main content

SERP API

Introduction​

The SERP API retrieves search results from Google based on specified query parameters. It allows you to perform Google searches programmatically while customizing aspects such as the search query, location, language, device, and more.

To use this API, subscribe to a plan here and connect to:


GET https://api.ujeebu.com/serp

Parameters​

NameTypeDescriptionDefault Value
urlstringURL of the search page to retrieve (this or search are required: either provide the search term or the Google search page URL).-
searchstringThe search query to perform on Google (this or url are required: either provide the search term or the Google search page URL).-
search_typestringSpecifies the type of search. Possible values include 'text', 'images', 'news', 'videos' or 'maps'.text
langstringLanguage of search results. Expects an ISO 639-1 language code (e.g., 'en' for English, 'es' for Spanish).en
locationstringGeographic location for the search (e.g., 'fr', 'uk').us
devicestringThe type of device to simulate during the search. Possible values: 'desktop', 'mobile', 'tablet'.desktop
results_countnumberThe maximum number of results to retrieve per page.10
pagenumberThe specific results page to retrieve, for paginated searches.1
extra_paramsstringAdditional custom query parameters to include in the search query (e.g., '&safe=active').-

Responses​

StatusMeaningDescriptionSchema
200OKsuccessful operationSuccessResponse
400Bad RequestInvalid parameter valueAPIResponseError

Schemas​

Success Response Schema​

The response schema depends on the specified search type (e.g., text, images, news, videos, or maps). Each search type has a unique response structure. Please refer to the example sections below to see the specific schema for each search type.

For a text search type, the response schema is as follows:

{
"knowledge_graph": {
"born": "July 10, 1856, Smiljan, Croatia",
"died": "January 7, 1943 (age 86\u00a0years), The New Yorker A Wyndham Hotel, New York, NY",
"education": "TU Graz (1875\u20131878), Gimnazija Karlovac (1870\u20131873)",
"height": "6\u2032 2\u2033",
"parents": "Milutin Tesla, \u0110uka Tesla",
"siblings": "Dane Tesla, Angelina Tesla, Milka Tesla, Marica Kosanovi\u0107",
"title": "Nikola Tesla",
"type": "Engineer and futurist"
},
"metadata": {
"google_url": "https:\/\/www.google.com\/search?gl=US&hl=en&num=10&q=Nikola+Tesla&sei=defQZ8riGZOt5NoPk7_S4AU",
"number_of_results": 36800000,
"query_displayed": "Nikola Tesla",
"results_time": "0.29 seconds"
},
"organic_results": [
{
"cite": "https:\/\/en.wikipedia.org \u203a wiki \u203a Nikola_Tesla",
"link": "https:\/\/en.wikipedia.org\/wiki\/Nikola_Tesla",
"position": 1,
"site_name": "Wikipedia",
"title": "Nikola Tesla"
},
{
"cite": "https:\/\/www.britannica.com \u203a ... \u203a Matter & Energy",
"link": "https:\/\/www.britannica.com\/biography\/Nikola-Tesla",
"position": 2,
"site_name": "Britannica",
"title": "Nikola Tesla | Biography, Facts, & Inventions"
},
...
],
"pagination": {
"google": {
"current": "https:\/\/google.com\/search?gl=US&hl=en&num=10&q=Nikola+Tesla&",
"next": "https:\/\/google.com\/search?gl=US&hl=en&num=10&q=Nikola+Tesla&start=20&tbm=&",
"other_pages": {
"3": "https:\/\/google.com\/search?gl=US&hl=en&num=10&q=Nikola+Tesla&start=30&tbm=&",
"4": "https:\/\/google.com\/search?gl=US&hl=en&num=10&q=Nikola+Tesla&start=40&tbm=&",
...
}
},
"api": {
"current": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=US&page=1&results_count=10&search=Nikola+Tesla&",
"next": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=US&page=2&results_count=10&search=Nikola+Tesla&",
"other_pages": {
"3": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=US&page=3&results_count=10&search=Nikola+Tesla&",
"4": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=US&page=4&results_count=10&search=Nikola+Tesla&",
...
}
}
},
"related_questions": [
"What is Nikola Tesla famous for?",
"How much money did Nikola Tesla have when he died?",
...
],
"top_stories": [],
"videos": [
{
"author": "BMResearch",
"date": "1 month ago",
"link": "https:\/\/www.google.com\/search?gl=US&hl=en&num=10&q=Nikola+Tesla&sei=defQZ8riGZOt5NoPk7_S4AU#",
"title": "Nikola Tesla: The Forgotten Genius of Electricity! (1856\u20131943)"
},
...
]
}

Error Response Schema​

{
"status": "error",
"message": "Description of the error.",
"code": 400
}

Credits​

All SERP requests are billed at 25 credit per successful request.

info

Consumed credits are returned in the Ujb-credits header

Examples​

Use the following example to perform a standard web search on Google. Pass parameters like search term, language, and results count as needed.

curl --location 'https://api.ujeebu.com/serp?timeout=90000&lang=en&results_count=10&search=Nikola%20Tesla' \
--header 'ApiKey: <API Key>'
curl --location 'https://api.ujeebu.com/serp?timeout=90000&lang=en&results_count=10&search=Nikola%20Tesla' \
--header 'ApiKey: <API Key>'

The example code provided returns a JSON response formatted as follows:

{
"knowledge_graph": {
"born": "July 10, 1856, Smiljan, Croatia",
"died": "January 7, 1943 (age 86\u00a0years), The New Yorker A Wyndham Hotel, New York, NY",
"education": "TU Graz (1875\u20131878), Gimnazija Karlovac (1870\u20131873)",
"height": "6\u2032 2\u2033",
"parents": "Milutin Tesla, \u0110uka Tesla",
"siblings": "Dane Tesla, Angelina Tesla, Milka Tesla, Marica Kosanovi\u0107",
"title": "Nikola Tesla",
"type": "Engineer and futurist"
},
"metadata": {
"google_url": "https:\/\/www.google.com\/search?gl=US&hl=en&num=10&q=Nikola+Tesla&sei=defQZ8riGZOt5NoPk7_S4AU",
"number_of_results": 36800000,
"query_displayed": "Nikola Tesla",
"results_time": "0.29 seconds"
},
"organic_results": [
{
"cite": "https:\/\/en.wikipedia.org \u203a wiki \u203a Nikola_Tesla",
"link": "https:\/\/en.wikipedia.org\/wiki\/Nikola_Tesla",
"position": 1,
"site_name": "Wikipedia",
"title": "Nikola Tesla"
},
{
"cite": "https:\/\/www.britannica.com \u203a ... \u203a Matter & Energy",
"link": "https:\/\/www.britannica.com\/biography\/Nikola-Tesla",
"position": 2,
"site_name": "Britannica",
"title": "Nikola Tesla | Biography, Facts, & Inventions"
},
{
"cite": "https:\/\/theoatmeal.com \u203a comics \u203a tesla",
"link": "https:\/\/theoatmeal.com\/comics\/tesla",
"position": 3,
"site_name": "The Oatmeal",
"title": "Why Nikola Tesla was the greatest geek who ever lived"
},
{
"cite": "https:\/\/www.biography.com \u203a inventors \u203a nikola-tesla",
"link": "https:\/\/www.biography.com\/inventors\/nikola-tesla",
"position": 4,
"site_name": "Biography",
"title": "Nikola Tesla: An Electric Inventor"
},
{
"cite": "https:\/\/tesla-museum.org \u203a ...",
"description": "Explore the priceless scientific heritage. The Nikola Tesla Museum inherits the original archive of the famous scientist. UNESCO included this rich collection\u00a0...",
"link": "https:\/\/tesla-museum.org\/en\/home\/",
"position": 5,
"site_name": "\u041c\u0443\u0437\u0435\u0458 \u041d\u0438\u043a\u043e\u043b\u0435 \u0422\u0435\u0441\u043b\u0435",
"title": "Welcome to the Nikola Tesla Museum."
},
{
"cite": "http:\/\/www.teslasociety.com \u203a biography",
"link": "http:\/\/www.teslasociety.com\/biography.htm",
"position": 6,
"site_name": "Tesla Memorial Society of New York",
"title": "Tesla's Biography"
},
{
"cite": "https:\/\/teslasciencecenter.org \u203a nikola-tesla-inventions",
"link": "https:\/\/teslasciencecenter.org\/nikola-tesla-inventions\/",
"position": 7,
"site_name": "Tesla Science Center at Wardenclyffe -",
"title": "Nikola Tesla Inventions"
},
{
"cite": "https:\/\/lemelson.mit.edu \u203a resources \u203a nikola-tesla",
"link": "https:\/\/lemelson.mit.edu\/resources\/nikola-tesla",
"position": 8,
"site_name": "Lemelson-MIT Program",
"title": "Nikola Tesla - Lemelson-MIT Program"
},
{
"cite": "https:\/\/www.amazon.com \u203a Wizard-Nikola-Biography-...",
"link": "https:\/\/www.amazon.com\/Wizard-Nikola-Biography-Genius-Citadel\/dp\/0806519606",
"position": 9,
"site_name": "Amazon.com",
"title": "Wizard: The Life and Times of Nikola Tesla : Biography ..."
}
],
"pagination": {
"google": {
"current": "https:\/\/google.com\/search?gl=US&hl=en&num=10&q=Nikola+Tesla&",
"next": "https:\/\/google.com\/search?gl=US&hl=en&num=10&q=Nikola+Tesla&start=20&tbm=&",
"other_pages": {
"3": "https:\/\/google.com\/search?gl=US&hl=en&num=10&q=Nikola+Tesla&start=30&tbm=&",
"4": "https:\/\/google.com\/search?gl=US&hl=en&num=10&q=Nikola+Tesla&start=40&tbm=&",
"5": "https:\/\/google.com\/search?gl=US&hl=en&num=10&q=Nikola+Tesla&start=50&tbm=&",
"6": "https:\/\/google.com\/search?gl=US&hl=en&num=10&q=Nikola+Tesla&start=60&tbm=&",
"7": "https:\/\/google.com\/search?gl=US&hl=en&num=10&q=Nikola+Tesla&start=70&tbm=&",
"8": "https:\/\/google.com\/search?gl=US&hl=en&num=10&q=Nikola+Tesla&start=80&tbm=&"
}
},
"api": {
"current": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=US&page=1&results_count=10&search=Nikola+Tesla&",
"next": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=US&page=2&results_count=10&search=Nikola+Tesla&",
"other_pages": {
"3": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=US&page=3&results_count=10&search=Nikola+Tesla&",
"4": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=US&page=4&results_count=10&search=Nikola+Tesla&",
"5": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=US&page=5&results_count=10&search=Nikola+Tesla&",
"6": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=US&page=6&results_count=10&search=Nikola+Tesla&",
"7": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=US&page=7&results_count=10&search=Nikola+Tesla&",
"8": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=US&page=8&results_count=10&search=Nikola+Tesla&"
}
}
},
"related_questions": [
"What is Nikola Tesla famous for?",
"How much money did Nikola Tesla have when he died?",
"Why was Tesla's work destroyed?",
"Who was Nikola Tesla to Elon Musk?"
],
"top_stories": null,
"videos": [
{
"author": "BMResearch",
"date": "1 month ago",
"link": "https:\/\/www.google.com\/search?gl=US&hl=en&num=10&q=Nikola+Tesla&sei=defQZ8riGZOt5NoPk7_S4AU#",
"title": "Nikola Tesla: The Forgotten Genius of Electricity! (1856\u20131943)"
},
{
"author": "Newsthink",
"date": "Jul 16, 2020",
"link": "https:\/\/www.google.com\/search?gl=US&hl=en&num=10&q=Nikola+Tesla&sei=defQZ8riGZOt5NoPk7_S4AU#",
"title": "The Tragic Story of Nikola Tesla"
},
{
"author": "Dare to do. Motivation",
"date": "2 weeks ago",
"link": "https:\/\/www.google.com\/search?gl=US&hl=en&num=10&q=Nikola+Tesla&sei=defQZ8riGZOt5NoPk7_S4AU#",
"title": "The Story Of Nikola Tesla And The Broken Lightbulb"
}
]
}

If you want to perform a Google News search, you can use the following example query. This retrieves results specific to news articles based on the specified search term.

curl --location 'https://api.ujeebu.com/serp?results_count=20&search_type=news&search=Donald%20Trump' \
--header 'ApiKey: <API Key>'
curl --location 'https://api.ujeebu.com/serp?results_count=20&search_type=news&search=Donald%20Trump' \
--header 'ApiKey: <API Key>'

The example code provided returns a JSON response formatted as follows:

{
"metadata": {
"google_url": "https:\/\/www.google.com\/search?gl=US&hl=en&num=10&q=Donald+Trump&tbm=nws",
"number_of_results": 62800000,
"query_displayed": "Donald Trump",
"results_time": "0.25 seconds"
},
"news": [
{
"date": "LIVE2 hours ago",
"description": "The House has passed the spending measure to fund the government through September 30. Meanwhile, President Volodymyr Zelensky said Ukraine...",
"favicon": "data:image\/png;base64,iVBOR...",
"image": "data:image\/jpeg;base64,\/9j\/4AA...",
"link": "https:\/\/www.cnn.com\/politics\/live-news\/trump-administration-presidency-ukraine-03-11-2025\/index.html",
"position": 1,
"siteName": "CNN",
"title": "Live updates: Trump tariff threats; Government funding bill House vote; US-Ukraine talks"
},
{
"date": "30 minutes ago",
"description": "President Donald Trump's threat to double his planned tariffs on steel and aluminum from 25% to 50% for Canada has led the provincial...",
"favicon": "data:image\/png;base64,iVBOR...",
"image": "data:image\/jpeg;base64,\/9j\/4AA...",
"link": "https:\/\/apnews.com\/article\/trump-economy-tariffs-stock-musk-business-8a5f28d9bb16e0b8a924d99ead0907fa",
"position": 2,
"siteName": "AP News",
"title": "Trump halts doubling of tariffs on Canadian metals after Ontario suspends electricity price hikes"
},
{
"date": "45 minutes ago",
"description": "Elon Musk has told the White House he plans to give $100 million to President Trump's political operation, according to a person familiar...",
"favicon": "data:image\/png;base64,iVBOR...",
"image": "data:image\/jpeg;base64,\/9j\/4AA...",
"link": "https:\/\/www.axios.com\/2025\/03\/12\/musk-trump-100-million-donation-political-operation",
"position": 3,
"siteName": "Axios",
"title": "Musk plans to give Trump's political operation $100 million"
},
{
"date": "46 minutes ago",
"description": "Voting was extended at some polling stations amid high voter turnout in an election dominated by Trump's control pledge.",
"favicon": "data:image\/png;base64,iVBOR...",
"image": "data:image\/jpeg;base64,\/9j\/4AA...",
"link": "https:\/\/www.aljazeera.com\/news\/2025\/3\/12\/greenland-votes-in-election-dominated-by-trumps-pledge-to-control-island",
"position": 4,
"siteName": "Al Jazeera",
"title": "Greenland votes in election dominated by Trump\u2019s pledge to control island"
},
{
"date": "11 hours ago",
"description": "President Trump's sweeping promises are running headlong into the reality of governing.",
"favicon": "data:image\/png;base64,iVBOR...",
"image": "data:image\/jpeg;base64,\/9j\/4AA...",
"link": "https:\/\/www.nytimes.com\/2025\/03\/10\/us\/politics\/trump-tariffs-fox-news-recession.html",
"position": 5,
"siteName": "The New York Times",
"title": "Trump Promised Americans Booming Wealth. Now He\u2019s Changing His Tune."
},
{
"date": "4 hours ago",
"description": "President Donald Trump on Tuesday turned the South Lawn of the White House into a temporary Tesla showroom in a conspicuous favor to his...",
"favicon": "data:image\/png;base64,iVBOR...",
"image": "data:image\/jpeg;base64,\/9j\/4AA...",
"link": "https:\/\/www.nbcnews.com\/tech\/elon-musk\/trump-musk-tesla-white-house-showroom-buys-car-rcna195905",
"position": 6,
"siteName": "NBC News",
"title": "Trump turns the White House lawn into a Tesla showroom"
},
{
"date": "3 hours ago",
"description": "President shares more than 100 Truth Social posts as stock markets react shakily to his refusal to rule out recession.",
"favicon": "data:image\/png;base64,iVBOR...",
"image": "data:image\/jpeg;base64,\/9j\/4AA...",
"link": "https:\/\/www.theguardian.com\/us-news\/2025\/mar\/11\/trump-truth-social-economy-stock-market",
"position": 7,
"siteName": "The Guardian",
"title": "Trump makes flurry of posts as global markets fall amid fears of US recession"
},
{
"date": "3 hours ago",
"description": "Indian Americans are increasingly optimistic about India's future, but hold deep concerns about US-India relations under a second Donald...",
"favicon": "data:image\/png;base64,iVBOR...",
"image": "data:image\/jpeg;base64,\/9j\/4AA...",
"link": "https:\/\/www.bbc.com\/news\/articles\/cx2g4g9qp2no",
"position": 8,
"siteName": "BBC",
"title": "Donald Trump: Indian Americans worried over US ties under new administration, survey shows"
},
{
"date": "4 hours ago",
"description": "Donald Trump shared a headline that said 'Shut Up About Egg Prices' as poultry costs continue to climb and his controversial economic agenda...",
"favicon": "data:image\/png;base64,iVBOR...",
"image": "data:image\/jpeg;base64,\/9j\/4AA...",
"link": "https:\/\/people.com\/donald-trump-shut-up-about-egg-prices-recession-fears-11694805",
"position": 9,
"siteName": "People.com",
"title": "Donald Trump Amplifies Stunning Message amid Looming Recession Fears: 'Shut Up About Egg Prices'"
},
{
"date": "1 hour ago",
"description": "The president defended his policies as he met the CEOs of America's biggest companies, including many whose market value has dipped in...",
"favicon": "data:image\/png;base64,iVBOR...",
"image": "data:image\/jpeg;base64,\/9j\/4AA...",
"link": "https:\/\/www.reuters.com\/world\/us\/trump-meets-corporate-america-economic-fears-nip-stocks-2025-03-11\/",
"position": 10,
"siteName": "Reuters",
"title": "Trump defends tariffs before corporate America as stocks sell off"
}
],
"pagination": {
"google": {
"current": "https:\/\/google.com\/search?gl=US&hl=en&num=10&q=Donald+Trump&tbm=nws&",
"next": "https:\/\/google.com\/search?gl=US&hl=en&num=10&q=Donald+Trump&start=20&tbm=&",
"other_pages": {
"3": "https:\/\/google.com\/search?gl=US&hl=en&num=10&q=Donald+Trump&start=30&tbm=&",
"4": "https:\/\/google.com\/search?gl=US&hl=en&num=10&q=Donald+Trump&start=40&tbm=&",
"5": "https:\/\/google.com\/search?gl=US&hl=en&num=10&q=Donald+Trump&start=50&tbm=&",
"6": "https:\/\/google.com\/search?gl=US&hl=en&num=10&q=Donald+Trump&start=60&tbm=&",
"7": "https:\/\/google.com\/search?gl=US&hl=en&num=10&q=Donald+Trump&start=70&tbm=&",
"8": "https:\/\/google.com\/search?gl=US&hl=en&num=10&q=Donald+Trump&start=80&tbm=&"
}
},
"api": {
"current": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=US&page=1&results_count=10&search=Donald+Trump&",
"next": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=US&page=2&results_count=10&search=Donald+Trump&",
"other_pages": {
"3": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=US&page=3&results_count=10&search=Donald+Trump&",
"4": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=US&page=4&results_count=10&search=Donald+Trump&",
"5": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=US&page=5&results_count=10&search=Donald+Trump&",
"6": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=US&page=6&results_count=10&search=Donald+Trump&",
"7": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=US&page=7&results_count=10&search=Donald+Trump&",
"8": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=US&page=8&results_count=10&search=Donald+Trump&"
}
}
}
}

To search for videos on Google programmatically, use the search_type=videos parameter along with other query parameters like language and results count. Below is an example:

curl --location 'https://api.ujeebu.com/serp?search=Bitcoin&timeout=90000&lang=en&results_count=10&search_type=videos' \
--header 'ApiKey: <API Key>'
curl --location 'https://api.ujeebu.com/serp?search=Bitcoin&timeout=90000&lang=en&results_count=10&search_type=videos' \
--header 'ApiKey: <API Key>'

The example code provided returns a JSON response formatted as follows:

{
"metadata": {
"google_url": "https:\/\/www.google.com\/search?gl=US&hl=en&num=10&q=Bitcoin&udm=7",
"query_displayed": "Bitcoin"
},
"pagination": {
"google": {
"current": "https:\/\/google.com\/search?gl=US&hl=en&num=10&q=Bitcoin&tbm=vid&",
"next": "https:\/\/google.com\/search?gl=US&hl=en&num=10&q=Bitcoin&start=20&tbm=&",
"other_pages": {
"3": "https:\/\/google.com\/search?gl=US&hl=en&num=10&q=Bitcoin&start=30&tbm=&",
"4": "https:\/\/google.com\/search?gl=US&hl=en&num=10&q=Bitcoin&start=40&tbm=&",
"5": "https:\/\/google.com\/search?gl=US&hl=en&num=10&q=Bitcoin&start=50&tbm=&",
"6": "https:\/\/google.com\/search?gl=US&hl=en&num=10&q=Bitcoin&start=60&tbm=&",
"7": "https:\/\/google.com\/search?gl=US&hl=en&num=10&q=Bitcoin&start=70&tbm=&",
"8": "https:\/\/google.com\/search?gl=US&hl=en&num=10&q=Bitcoin&start=80&tbm=&"
}
},
"api": {
"current": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=US&page=1&results_count=10&search=Bitcoin&",
"next": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=US&page=2&results_count=10&search=Bitcoin&",
"other_pages": {
"3": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=US&page=3&results_count=10&search=Bitcoin&",
"4": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=US&page=4&results_count=10&search=Bitcoin&",
"5": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=US&page=5&results_count=10&search=Bitcoin&",
"6": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=US&page=6&results_count=10&search=Bitcoin&",
"7": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=US&page=7&results_count=10&search=Bitcoin&",
"8": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=US&page=8&results_count=10&search=Bitcoin&"
}
}
},
"videos": [
{
"author": "7 hours ago",
"date": "7 hours ago",
"description": "On today's episode of CNBC Crypto World, bitcoin jumps back above $80000 after a Monday sell-off. Plus, senators reintroduce the GENIUS Act\u00a0...",
"position": 1,
"provider": "CNBC",
"site": "www.cnbc.com",
"summary": "Bitcoin rebounds after falling to its lowest level since November on CNBC. Play on CNBC. 10:02. 7 hours ago",
"title": "Bitcoin rebounds after falling to its lowest level since November",
"url": "https:\/\/www.cnbc.com\/video\/2025\/03\/11\/bitcoin-rebounds-after-lowest-level-since-november-crypto-world.html"
},
{
"author": "CNBC Television",
"date": "6 hours ago",
"description": "On today's episode of CNBC Crypto World, bitcoin jumps back above $80000 after a Monday sell-off. Plus, senators reintroduce the GENIUS Act\u00a0...",
"position": 2,
"provider": "YouTube",
"site": "www.youtube.com",
"summary": "Bitcoin rebounds after falling to its lowest level since ... by CNBC Television on YouTube. Play on YouTube. 10:03. 6 hours ago",
"title": "Bitcoin rebounds after falling to its lowest level since ...",
"url": "https:\/\/www.youtube.com\/watch?v=ts0VTnXMs9I"
},
{
"author": "Swan Bitcoin",
"date": "5 hours ago",
"description": "Trump just signed an executive order making Bitcoin a strategic reserve asset\u2014yet the market reacted by dumping. Why?",
"position": 3,
"provider": "YouTube",
"site": "www.youtube.com",
"summary": "Historic WIN For Bitcoin - What's Happening With the Price? by Swan Bitcoin on YouTube. Play on Google. 11:33. 5 hours ago",
"title": "Historic WIN For Bitcoin - What's Happening With the Price?",
"url": "https:\/\/www.youtube.com\/watch?v=NnE544z1JL0"
},
{
"author": "DataDash",
"date": "1 day ago",
"description": "Bitcoin #Crypto #Altcoins If you enjoyed this video, consider dropping a like! Get 20% off the Dash Report:\u00a0...",
"position": 4,
"provider": "YouTube",
"site": "www.youtube.com",
"summary": "Bitcoin Is Collapsing | Here's What You Need To Know by DataDash on YouTube. Play on Google. 30:38. 1 day ago",
"title": "Bitcoin Is Collapsing | Here's What You Need To Know",
"url": "https:\/\/www.youtube.com\/watch?v=K3b9_HjFCzY"
},
{
"author": "Anthony Pompliano",
"date": "5 hours ago",
"description": "Jack Mallers is the Founder & CEO of Strike. This conversation was recorded at Bitcoin Investor Week in New York.",
"position": 5,
"provider": "YouTube",
"site": "www.youtube.com",
"summary": "Bitcoin Could 400x From Here! | Jack Mallers by Anthony Pompliano on YouTube. Play on YouTube. 32:00. 5 hours ago",
"title": "Bitcoin Could 400x From Here! | Jack Mallers",
"url": "https:\/\/www.youtube.com\/watch?v=I4uYUQI-gBE"
},
{
"author": "Scott Melker",
"date": "12 hours ago",
"description": "Is Bitcoin set to drop even further below $80K and test $70K? What's happening with the concept of the crypto capital, and why are Bitcoin\u00a0...",
"position": 6,
"provider": "YouTube",
"site": "www.youtube.com",
"summary": "Bitcoin Crash Alert: Could $70K Be the Next Painful Stop? by Scott Melker on YouTube. Play on Google. 43:54. 12 hours ago",
"title": "Bitcoin Crash Alert: Could $70K Be the Next Painful Stop?",
"url": "https:\/\/www.youtube.com\/watch?v=1wDSsr8zb2k"
},
{
"author": "Bitcoin Magazine",
"date": "5 hours ago",
"description": "Jack Mallers, Strike CEO, offers closing remarks on the Strategic Bitcoin Reserve at \"Bitcoin for America\" by the Bitcoin Policy Institute.",
"position": 7,
"provider": "YouTube",
"site": "www.youtube.com",
"summary": "Jack Mallers \"The American Monetary Revolution\" | Bitcoin for ... by Bitcoin Magazine on YouTube. Play on Google. 9:58. 5 hours ago",
"title": "Jack Mallers \"The American Monetary Revolution\" | Bitcoin for ...",
"url": "https:\/\/www.youtube.com\/watch?v=n1ZZLk1UCNY"
},
{
"author": "Crypto World",
"date": "4 hours ago",
"description": "BITCOIN & CRYPTO: WATCH BEFORE TOMORROW!!!!! Bitcoin News Today, Ethereum, Solana, XRP & Chainlink *Toobit* https:\/\/bit.ly\/TOOBIT\u00a0...",
"position": 8,
"provider": "YouTube",
"site": "www.youtube.com",
"summary": "BITCOIN & CRYPTO: WATCH BEFORE TOMORROW ... by Crypto World on YouTube. Play on YouTube. 23:32. 4 hours ago",
"title": "BITCOIN & CRYPTO: WATCH BEFORE TOMORROW ...",
"url": "https:\/\/www.youtube.com\/watch?v=EZNnDhYwmqo"
},
{
"author": "Crypto Kid",
"date": "6 hours ago",
"description": "The gap is closed the rsi low we oversold big money coming into crypto market simple we moving up .",
"position": 9,
"provider": "YouTube",
"site": "www.youtube.com",
"summary": "BITCOIN JUST BOTTOMED!!! [DO NOT BE FOOLED] by Crypto Kid on YouTube. Play on Google. 11:10. 6 hours ago",
"title": "BITCOIN JUST BOTTOMED!!! [DO NOT BE FOOLED]",
"url": "https:\/\/www.youtube.com\/watch?v=JyKrdiEprq4"
},
{
"author": "Anthony Pompliano",
"date": "3 days ago",
"description": "Jordi Visser is a macro investor with over 30 years of Wall Street experience. He also writes a Substack called \u201cVisserLabs\u201d and puts out\u00a0...",
"position": 10,
"provider": "YouTube",
"site": "www.youtube.com",
"summary": "Why Bitcoin CRASHED After Trump Strategic Reserve News by Anthony Pompliano on YouTube. Play on Google. 51:56. 3 days ago",
"title": "Why Bitcoin CRASHED After Trump Strategic Reserve News",
"url": "https:\/\/www.youtube.com\/watch?v=6uVifVHs2GM"
}
]
}

To search for videos on Google programmatically, use the search_type=images parameter along with other query parameters like language and results count. Below is an example:

curl --location 'https://api.ujeebu.com/serp?search=Coffee&timeout=90000&lang=en&search_type=images' \
--header 'ApiKey: <API Key>'
curl --location 'https://api.ujeebu.com/serp?search=Coffee&timeout=90000&lang=en&search_type=images' \
--header 'ApiKey: <API Key>'

The example code provided returns a JSON response formatted as follows:

{
"images": [
{
"google_thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRkRapDtN6JSis1bWCnMbqn3pmIEDeDY9t8tg\u0026s",
"height": 2000,
"image": "https://upload.wikimedia.org/wikipedia/commons/e/e4/Latte_and_dark_coffee.jpg",
"link": "https://en.wikipedia.org/wiki/Coffee",
"position": 1,
"source": "Wikipedia",
"title": "Coffee - Wikipedia",
"width": 3200
},
{
"google_thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTsmD2K-wg4D2csngncAOMlxa1y5g_yToyicw\u0026s",
"height": 405,
"image": "https://somedayilllearn.com/wp-content/uploads/2020/05/cup-of-black-coffee-scaled-720x405.jpeg",
"link": "https://somedayilllearn.com/how-to-make-black-coffee/",
"position": 2,
"source": "Someday I'll Learn",
"title": "How to Make Black Coffee that Tastes Good",
"width": 720
},
{
"google_thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTb5bqC7IA8JdjL19Ko8baj61wNE8Qlab3GWw\u0026s",
"height": 2250,
"image": "https://www.royalcupcoffee.com/sites/default/files/images/blog/AdobeStock_159183621update.jpg",
"link": "https://www.royalcupcoffee.com/blog/articles/selecting-right-coffee-every-time-day",
"position": 3,
"source": "Royal Cup Coffee",
"title": "Royal Cup Coffee",
"width": 3000
},
{
"google_thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQZsjU7ngcDKxXFBHFwzs4a6y11MogHRGc4Xg\u0026s",
"height": 1125,
"image": "https://www.allrecipes.com/thmb/SUs7po94w7k2OwqYDjC3H_ZW3JQ=/1500x0/filters:no_upscale():max_bytes(150000):strip_icc()/96629-cafe-latte-ddmfs-hero-4x3-0288359d9c37485fa69afe5369dbcf2e.jpg",
"link": "https://www.allrecipes.com/recipe/96629/cafe-latte/",
"position": 4,
"source": "Allrecipes",
"title": "How to Make a Cafe Latte Recipe",
"width": 1500
},
{
"google_thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS0a-3uyQ9B4bVyJmbPEeawulA4SLxp7f2cXA\u0026s",
"height": 900,
"image": "https://upload.wikimedia.org/wikipedia/commons/thumb/c/c5/Roasted_coffee_beans.jpg/1200px-Roasted_coffee_beans.jpg",
"link": "https://en.wikipedia.org/wiki/Coffee_bean",
"position": 5,
"source": "Wikipedia",
"title": "Coffee bean - Wikipedia",
"width": 1200
},
{
"google_thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT0RyiFla98L-B6yXCLbOiELZktX5jHkwQdZw\u0026s",
"height": 1414,
"image": "https://www.spectrumhealth.ie/wp-content/uploads/2017/11/steamingcupofcoffeewithspiltcoffeebeans.jpg",
"link": "https://www.spectrumhealth.ie/blog/pros-and-cons-of-drinking-coffee",
"position": 6,
"source": "Spectrum Health",
"title": "Pros and Cons of drinking coffee ...",
"width": 2121
},
{
"google_thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSfzZP4tv7gizZ2PYHzkc79440789fyP1F8CA\u0026s",
"height": 1000,
"image": "https://www.health.com/thmb/YXxmAuCsJHtTWvSWPorjVx1F7AQ=/1500x0/filters:no_upscale():max_bytes(150000):strip_icc()/Health-GettyImages-TypesOfCoffee-b8f6f7382a1443109f74edb1050f9808.jpg",
"link": "https://www.health.com/types-of-coffee-8716877",
"position": 7,
"source": "Health",
"title": "Types of Coffee and Their Health Benefits",
"width": 1500
},
{
"google_thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSSgARldygWkeUJSXhp-YQNbV7UoTrC9onwqA\u0026s",
"height": 900,
"image": "https://upload.wikimedia.org/wikipedia/commons/thumb/4/45/A_small_cup_of_coffee.JPG/1200px-A_small_cup_of_coffee.JPG",
"link": "https://en.wikiquote.org/wiki/Coffee",
"position": 8,
"source": "Wikiquote",
"title": "Coffee - Wikiquote",
"width": 1200
},
{
"google_thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQbmTR2cAaSZCa-ECC75A4lMLI-8N_sME_99Q\u0026s",
"height": 307,
"image": "https://c.ndtvimg.com/2018-09/2crujfh8_black-coffee_625x300_24_September_18.PNG?downsize=545:307",
"link": "https://www.ndtv.com/health/10-benefits-of-consuming-black-coffee-first-thing-in-the-morning-4530902",
"position": 9,
"source": "NDTV",
"title": "10 Benefits Of Consuming Black Coffee ...",
"width": 545
},
{
"google_thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSU819DG6PHZ_ET83F4p04cuY6wxuHMTBXHGw\u0026s",
"height": 3312,
"image": "https://assets.kahlua.com/wp-content/uploads/2023/08/Coffee-2x5-1.png?tr=q-80,w-1320",
"link": "https://www.kahlua.com/en/drinks/kahlua-coffee/",
"position": 10,
"source": "Kahlua",
"title": "Kahlúa Coffee Drink Recipe - Kahlúa",
"width": 1320
},
{
"google_thumbnail": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRDo1gjSSoayBw0uQ0d2SuyfqGiE15p8sjMig\u0026s",
"height": 998,
"image": "https://media-cldnry.s-nbcnews.com/image/upload/newscms/2019_33/2203981/171026-better-coffee-boost-se-329p.jpg",
"link": "https://www.nbcnews.com/better/lifestyle/how-tap-health-benefits-coffee-ncna1096031",
"position": 11,
"source": "NBC News",
"title": "health benefits of coffee",
"width": 1500
},
...
],
"metadata": {
"google_url": "https://www.google.com/search?gl=US\u0026hl=en\u0026num=10\u0026q=Coffee\u0026udm=2",
"query_displayed": "Coffee"
},
"pagination": {
"google": {
"current": "https://google.com/search?gl=US\u0026hl=en\u0026num=10\u0026q=Coffee\u0026udm=2\u0026",
"next": "https://google.com/search?gl=US\u0026hl=en\u0026num=10\u0026q=Coffee\u0026start=20\u0026tbm=\u0026",
"other_pages": {
"3": "https://google.com/search?gl=US\u0026hl=en\u0026num=10\u0026q=Coffee\u0026start=30\u0026tbm=\u0026",
"4": "https://google.com/search?gl=US\u0026hl=en\u0026num=10\u0026q=Coffee\u0026start=40\u0026tbm=\u0026",
"5": "https://google.com/search?gl=US\u0026hl=en\u0026num=10\u0026q=Coffee\u0026start=50\u0026tbm=\u0026",
"6": "https://google.com/search?gl=US\u0026hl=en\u0026num=10\u0026q=Coffee\u0026start=60\u0026tbm=\u0026",
"7": "https://google.com/search?gl=US\u0026hl=en\u0026num=10\u0026q=Coffee\u0026start=70\u0026tbm=\u0026",
"8": "https://google.com/search?gl=US\u0026hl=en\u0026num=10\u0026q=Coffee\u0026start=80\u0026tbm=\u0026"
}
},
"api": {
"current": "https://api.ujeebu.com/serp?device=desktop\u0026lang=en\u0026location=US\u0026page=1\u0026results_count=10\u0026search=Coffee\u0026",
"next": "https://api.ujeebu.com/serp?device=desktop\u0026lang=en\u0026location=US\u0026page=2\u0026results_count=10\u0026search=Coffee\u0026",
"other_pages": {
"3": "https://api.ujeebu.com/serp?device=desktop\u0026lang=en\u0026location=US\u0026page=3\u0026results_count=10\u0026search=Coffee\u0026",
"4": "https://api.ujeebu.com/serp?device=desktop\u0026lang=en\u0026location=US\u0026page=4\u0026results_count=10\u0026search=Coffee\u0026",
"5": "https://api.ujeebu.com/serp?device=desktop\u0026lang=en\u0026location=US\u0026page=5\u0026results_count=10\u0026search=Coffee\u0026",
"6": "https://api.ujeebu.com/serp?device=desktop\u0026lang=en\u0026location=US\u0026page=6\u0026results_count=10\u0026search=Coffee\u0026",
"7": "https://api.ujeebu.com/serp?device=desktop\u0026lang=en\u0026location=US\u0026page=7\u0026results_count=10\u0026search=Coffee\u0026",
"8": "https://api.ujeebu.com/serp?device=desktop\u0026lang=en\u0026location=US\u0026page=8\u0026results_count=10\u0026search=Coffee\u0026"
}
}
},
"suggestions": [
{
"google_link": "https://www.google.com/search?sca_esv=ea93a93fa601efe3\u0026gl=US\u0026hl=en\u0026q=coffee+cup\u0026uds=ABqPDvztZD_Nu18FR6tNPw2cK_RRlbyHxIEdJnJjoCLMRKFTAnpUjFD6kn1ymoDzHKsO80vcFhXgksMfFVBBeRR2MuE2Cix3YIsFY9MejD3kbZ4L8qkJ7KpFsIoW3KCalUDlNyC0HCfH8bdd-ei5iC6q8-MkIEDG7A\u0026udm=2\u0026sa=X\u0026ved=2ahUKEwi5nPOPk-SLAxWFFlkFHQLFOAYQxKsJegQIDBAB\u0026ictx=0",
"position": 1,
"thumbnail": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAA...",
"title": "Cup",
"ujeebu_link": "https://api.ujeebu.com/serp?search_type=images\u0026search=coffee%20cup\u0026location=US\u0026lang=en\u0026extra_params=sca_esv%3Dea93a93fa601efe3%26uds%3DABqPDvztZD_Nu18FR6tNPw2cK_RRlbyHxIEdJnJjoCLMRKFTAnpUjFD6kn1ymoDzHKsO80vcFhXgksMfFVBBeRR2MuE2Cix3YIsFY9MejD3kbZ4L8qkJ7KpFsIoW3KCalUDlNyC0HCfH8bdd-ei5iC6q8-MkIEDG7A%26sa%3DX%26ved%3D2ahUKEwi5nPOPk-SLAxWFFlkFHQLFOAYQxKsJegQIDBAB%26ictx%3D0"
},
{
"google_link": "https://www.google.com/search?sca_esv=ea93a93fa601efe3\u0026gl=US\u0026hl=en\u0026q=cafe+coffee\u0026uds=ABqPDvztZD_Nu18FR6tNPw2cK_RRgPocZNJgYutdBYynNDH3jj10ASfPjVZGHjIp_5Mem90I96EAw2l52AFQWUMU4QjjyrBuo6amcJAfQs6L359oQi6DOuG-GKxm-l1flRJLPfSH9utnDmKUREpUQ8hqhnOkk2oeXQ\u0026udm=2\u0026sa=X\u0026ved=2ahUKEwi5nPOPk-SLAxWFFlkFHQLFOAYQxKsJegQICxAB\u0026ictx=0",
"position": 2,
"thumbnail": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAA...",
"title": "Cafe",
"ujeebu_link": "https://api.ujeebu.com/serp?search_type=images\u0026search=cafe%20coffee\u0026location=US\u0026lang=en\u0026extra_params=sca_esv%3Dea93a93fa601efe3%26uds%3DABqPDvztZD_Nu18FR6tNPw2cK_RRgPocZNJgYutdBYynNDH3jj10ASfPjVZGHjIp_5Mem90I96EAw2l52AFQWUMU4QjjyrBuo6amcJAfQs6L359oQi6DOuG-GKxm-l1flRJLPfSH9utnDmKUREpUQ8hqhnOkk2oeXQ%26sa%3DX%26ved%3D2ahUKEwi5nPOPk-SLAxWFFlkFHQLFOAYQxKsJegQICxAB%26ictx%3D0"
},
{
"google_link": "https://www.google.com/search?sca_esv=ea93a93fa601efe3\u0026gl=US\u0026hl=en\u0026q=coffee+wallpaper\u0026uds=ABqPDvztZD_Nu18FR6tNPw2cK_RRERO65r54e_IGm506TWGb5slkQCXNH4RnGfuXVSnYo0_IJFJAo8LQbehspFTAjMrrvpzNwWGp2148DhpLvI2wxwt3SbYZCMRh69j-S1pNyJF1eSzTkYkz4un3jnIeI-GIJcDGDA\u0026udm=2\u0026sa=X\u0026ved=2ahUKEwi5nPOPk-SLAxWFFlkFHQLFOAYQxKsJegQICRAB\u0026ictx=0",
"position": 3,
"thumbnail": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAA...",
"title": "Wallpaper",
"ujeebu_link": "https://api.ujeebu.com/serp?search_type=images\u0026search=coffee%20wallpaper\u0026location=US\u0026lang=en\u0026extra_params=sca_esv%3Dea93a93fa601efe3%26uds%3DABqPDvztZD_Nu18FR6tNPw2cK_RRERO65r54e_IGm506TWGb5slkQCXNH4RnGfuXVSnYo0_IJFJAo8LQbehspFTAjMrrvpzNwWGp2148DhpLvI2wxwt3SbYZCMRh69j-S1pNyJF1eSzTkYkz4un3jnIeI-GIJcDGDA%26sa%3DX%26ved%3D2ahUKEwi5nPOPk-SLAxWFFlkFHQLFOAYQxKsJegQICRAB%26ictx%3D0"
},
{
"google_link": "https://www.google.com/search?sca_esv=ea93a93fa601efe3\u0026gl=US\u0026hl=en\u0026q=clip+art+coffee\u0026uds=ABqPDvztZD_Nu18FR6tNPw2cK_RRERO65r54e_IGm506TWGb5mvAqyYawmwsA-Wl8eoaxYSExR4igVYeS1ezVqSC9oAijcdH6S5aS2WzjoivrM7lOUHmEItUNh9VFoaDc3hPgt48jDvEv7u2360lLyGttgzEjACz6Q\u0026udm=2\u0026sa=X\u0026ved=2ahUKEwi5nPOPk-SLAxWFFlkFHQLFOAYQxKsJegQIEBAB\u0026ictx=0",
"position": 4,
"thumbnail": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAA...",
"title": "Clip art",
"ujeebu_link": "https://api.ujeebu.com/serp?search_type=images\u0026search=clip%20art%20coffee\u0026location=US\u0026lang=en\u0026extra_params=sca_esv%3Dea93a93fa601efe3%26uds%3DABqPDvztZD_Nu18FR6tNPw2cK_RRERO65r54e_IGm506TWGb5mvAqyYawmwsA-Wl8eoaxYSExR4igVYeS1ezVqSC9oAijcdH6S5aS2WzjoivrM7lOUHmEItUNh9VFoaDc3hPgt48jDvEv7u2360lLyGttgzEjACz6Q%26sa%3DX%26ved%3D2ahUKEwi5nPOPk-SLAxWFFlkFHQLFOAYQxKsJegQIEBAB%26ictx%3D0"
},
{
"google_link": "https://www.google.com/search?sca_esv=ea93a93fa601efe3\u0026gl=US\u0026hl=en\u0026q=latte+coffee\u0026uds=ABqPDvztZD_Nu18FR6tNPw2cK_RR7ikD94Qga_KzuDbjgocVt7doCsa1VOoLc7e-SUBm43_UHFrjc2kaCCikl7nxsaq8zIVxPaZr0_283Syn4GWwg5kMe1osvA4zTAx-o787ZtH0B2gcxyqCTX1dWRiAtmlJSWf15w\u0026udm=2\u0026sa=X\u0026ved=2ahUKEwi5nPOPk-SLAxWFFlkFHQLFOAYQxKsJegQIDxAB\u0026ictx=0",
"position": 5,
"thumbnail": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAA...",
"title": "Latte",
"ujeebu_link": "https://api.ujeebu.com/serp?search_type=images\u0026search=latte%20coffee\u0026location=US\u0026lang=en\u0026extra_params=sca_esv%3Dea93a93fa601efe3%26uds%3DABqPDvztZD_Nu18FR6tNPw2cK_RR7ikD94Qga_KzuDbjgocVt7doCsa1VOoLc7e-SUBm43_UHFrjc2kaCCikl7nxsaq8zIVxPaZr0_283Syn4GWwg5kMe1osvA4zTAx-o787ZtH0B2gcxyqCTX1dWRiAtmlJSWf15w%26sa%3DX%26ved%3D2ahUKEwi5nPOPk-SLAxWFFlkFHQLFOAYQxKsJegQIDxAB%26ictx%3D0"
}
]
}

You can also perform a Google Maps search by using the search_type=maps parameter. The example below shows how to retrieve map-related results programmatically:

curl --location 'https://api.ujeebu.com/serp?search=Italien%20restaurant&timeout=90000&lang=en&results_count=10&search_type=maps' \
--header 'ApiKey: <API Key>'
curl --location 'https://api.ujeebu.com/serp?search=ophtalmologue&timeout=90000&lang=en&results_count=10&search_type=maps' \
--header 'ApiKey: <API Key>'

The example code provided returns a JSON response formatted as follows:

{
"maps_results": [
{
"address": "Brampton, ON",
"category": "\u00b7",
"cid": "1322681635158113553",
"opening_hours": null,
"position": 1,
"rating": 4.7,
"reviews": 370,
"title": "La Pergola Ristorante"
},
{
"address": "Burnaby, BC",
"category": "Italian",
"cid": "5098284575974088326",
"opening_hours": null,
"position": 2,
"rating": 4.6,
"reviews": 598,
"title": "Trattoria by Italian Kitchen"
},
{
"address": "Vancouver, BC",
"category": "\u00b7",
"cid": "9175025857835411475",
"opening_hours": null,
"position": 3,
"rating": 4.8,
"reviews": 911,
"title": "Nonna's Cucina \"Italian Street Food\""
},
{
"address": "Oakville, ON",
"category": "Italian",
"cid": "11740765822713801139",
"opening_hours": "\u22c5 10\u202fp.m.",
"position": 4,
"rating": 4.5,
"reviews": 917,
"title": "Verace Italian Restaurant"
},
{
"address": "Vancouver, BC",
"category": "\u00b7",
"cid": "500700600868777342",
"opening_hours": null,
"position": 5,
"rating": 4.6,
"reviews": 3,
"title": "Osteria Savio Volpe"
},
{
"address": "Concord, ON",
"category": "\u00b7",
"cid": "17087782993958640487",
"opening_hours": "\u22c5 Opens 12\u202fp.m. Wed",
"position": 6,
"rating": 4.5,
"reviews": 2,
"title": "Grazie Ristorante"
},
{
"address": "Winnipeg, MB",
"category": "Italian",
"cid": "12991326649919268659",
"opening_hours": null,
"position": 7,
"rating": 4.4,
"reviews": 1,
"title": "Frankie's Italian Winnipeg"
},
{
"address": "Woodbridge, ON",
"category": "\u00b7",
"cid": "3530472571290195036",
"opening_hours": "\u22c5 10\u202fp.m.",
"position": 8,
"rating": 4.4,
"reviews": 825,
"title": "That's Italian Ristorante"
},
{
"address": "Toronto, ON",
"category": "Italian",
"cid": "7705419813227923263",
"opening_hours": null,
"position": 9,
"rating": 4.3,
"reviews": 1,
"title": "Cantina Mercatto"
},
{
"address": "Vancouver, BC",
"category": "\u00b7",
"cid": "3708110463777764519",
"opening_hours": null,
"position": 10,
"rating": 4.6,
"reviews": 2,
"title": "Ask For Luigi Restaurant"
},
{
"address": "Toronto, ON",
"category": "\u00b7",
"cid": "3895320006894906536",
"opening_hours": null,
"position": 11,
"rating": 4.3,
"reviews": 1,
"title": "Donatello Restaurant"
},
{
"address": "Winnipeg, MB",
"category": "\u00b7",
"cid": "3562220646451124472",
"opening_hours": "\u22c5 9:30\u202fp.m.",
"position": 12,
"rating": 4.5,
"reviews": 783,
"title": "Pasquale's Italian Ristorante"
},
{
"address": "Concord, ON",
"category": "\u00b7",
"cid": "15326713165381014317",
"opening_hours": "\u22c5 Opens 11\u202fa.m. Wed",
"position": 13,
"rating": 4.7,
"reviews": 367,
"title": "La Campagna Ristorante"
},
{
"address": "Etobicoke, ON",
"category": "Italian",
"cid": "17433843117493201167",
"opening_hours": "\u22c5 10:30\u202fp.m.",
"position": 14,
"rating": 4.5,
"reviews": 2,
"title": "La Vecchia Restaurant Lakeshore"
},
{
"address": "Edmonton, AB",
"category": "\u00b7",
"cid": "9615475802943086036",
"opening_hours": null,
"position": 15,
"rating": 4.4,
"reviews": 712,
"title": "Violino Restaurant"
},
{
"address": "Toronto, ON",
"category": "\u00b7",
"cid": "5763624489272981220",
"opening_hours": "\u22c5 10:30\u202fp.m.",
"position": 16,
"rating": 4.4,
"reviews": 2,
"title": "La Vecchia Restaurant Uptown"
},
{
"address": "Milton, ON",
"category": "\u00b7",
"cid": "17233801824043449122",
"opening_hours": "\u22c5 10\u202fp.m.",
"position": 17,
"rating": 4.6,
"reviews": 1,
"title": "Casa Americo Italian Bistro & Restaurant"
},
{
"address": "Vancouver, BC",
"category": "Italian",
"cid": "7592700970293815680",
"opening_hours": null,
"position": 18,
"rating": 4.4,
"reviews": 719,
"title": "Carlino Restaurant"
},
{
"address": "Vancouver, BC",
"category": "\u00b7",
"cid": "17972632261489366536",
"opening_hours": null,
"position": 19,
"rating": 4.5,
"reviews": 548,
"title": "Fiore Famiglia"
},
{
"address": "Calgary, AB",
"category": "Italian",
"cid": "3252632450816499861",
"opening_hours": null,
"position": 20,
"rating": 4.8,
"reviews": 247,
"title": "La Luna Rossa Ristorante"
}
],
"metadata": {
"google_url": "https:\/\/www.google.com\/search?gl=ca&hl=en&num=10&q=Italian+restaurant&tbm=lcl",
"query_displayed": "Italian restaurant"
},
"pagination": {
"google": {
"current": "https:\/\/google.com\/search?gl=ca&hl=en&num=10&q=Italian+restaurant&tbm=lcl&",
"next": "https:\/\/google.com\/search?gl=ca&hl=en&num=10&q=Italian+restaurant&start=20&tbm=&",
"other_pages": {
"3": "https:\/\/google.com\/search?gl=ca&hl=en&num=10&q=Italian+restaurant&start=30&tbm=&",
"4": "https:\/\/google.com\/search?gl=ca&hl=en&num=10&q=Italian+restaurant&start=40&tbm=&",
"5": "https:\/\/google.com\/search?gl=ca&hl=en&num=10&q=Italian+restaurant&start=50&tbm=&",
"6": "https:\/\/google.com\/search?gl=ca&hl=en&num=10&q=Italian+restaurant&start=60&tbm=&",
"7": "https:\/\/google.com\/search?gl=ca&hl=en&num=10&q=Italian+restaurant&start=70&tbm=&",
"8": "https:\/\/google.com\/search?gl=ca&hl=en&num=10&q=Italian+restaurant&start=80&tbm=&"
}
},
"api": {
"current": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=ca&page=1&results_count=10&search=Italian+restaurant&",
"next": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=ca&page=2&results_count=10&search=Italian+restaurant&",
"other_pages": {
"3": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=ca&page=3&results_count=10&search=Italian+restaurant&",
"4": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=ca&page=4&results_count=10&search=Italian+restaurant&",
"5": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=ca&page=5&results_count=10&search=Italian+restaurant&",
"6": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=ca&page=6&results_count=10&search=Italian+restaurant&",
"7": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=ca&page=7&results_count=10&search=Italian+restaurant&",
"8": "https:\/\/api.ujeebu.com\/serp?device=desktop&lang=en&location=ca&page=8&results_count=10&search=Italian+restaurant&"
}
}
}
}

Usage endpoint​

Introduction​

To keep track of how much credit you're using programmatically, you can use the /account endpoint in your program.

Calls to this endpoint will not affect your calls per second, but you can only make 10 /account calls per minute.

To use the API:


GET https://api.ujeebu.com/account

Usage Endpoint Code Example​

This will get the current usage of the account with the given ApiKey

curl --location --request GET 'https://api.ujeebu.com/account' \
--header 'ApiKey: <API Key>'

The code above will generate the following response:

{
"balance": 0,
"days_till_next_billing": 0,
"next_billing_date": null,
"plan": "TRIAL",
"quota": "5000",
"concurrent_requests": 1,
"total_requests": 14,
"used": 95,
"used_percent": 1.9,
"userid": "8155"
}