API
Search Query Autocomplete API
The Search Query Autocomplete API is designed to enhance search experiences across various applications by delivering autocomplete suggestions from popular search engines, including Google, Bing, DuckDuckGo, and YouTube.
The API caters to a wide range of programming languages, including but not limited to: C, Clojure, C#, GO, Java, JavaScript, Kotlin, Node.js, Objective-C, OCaml, PHP, PowerShell, Python, R, RapidQL, Ruby, Shell, and Swift.
Introduction
API Overview
By providing instant, relevant suggestions, this API streamlines user queries and improves overall engagement, making it an excellent tool for any application requiring search functionality.
Key Features:
Multi-Engine Support: Choose from four major search engines to offer tailored autocomplete suggestions, providing flexibility based on user needs and application context.
Google Autocomplete: Access Google’s highly accurate autocomplete suggestions for general search needs.
Bing Autocomplete: Deliver relevant suggestions from Bing for a Microsoft-powered search experience.
DuckDuckGo Autocomplete: Offer privacy-friendly autocomplete results with DuckDuckGo’s search.
YouTube Autocomplete: Get instant autocomplete suggestions for video content, ideal for media or content-driven platforms.
Additional Highlights:
Simple Integration: Both GET
and POST
requests are supported for seamless integration into any application.
Error Handling: Comprehensive error management with detailed error messages enables smooth troubleshooting and consistent performance.
Flexible Use Cases: Suitable for e-commerce, content discovery, productivity apps, and any project benefiting from enhanced search capabilities.
Endpoints
Endpoints Overview
Bing Search Autocomplete
These endpoints return autocomplete suggestions from Bing search.
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
query | string | Yes | The search query for which autocomplete suggestions are desired. |
Python Requests Example:
import requests url = "https://search-query-autocomplete-api.p.rapidapi.com/bing" querystring = {"query":"how to"} headers = { "x-rapidapi-key": "Sign Up for Key", "x-rapidapi-host": "search-query-autocomplete-api.p.rapidapi.com" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Response Example:
{ "requestID": "82b84c33-6429-458b-8db3-56ac84ea7939", "results": [ "how to make a screenshot", "how to deal with bullies", "how to screenshot on pc", "how to download", "how to get free robux", "how to copy and paste", "how to connect ps4 controller to pc", "how to get voice chat in roblox", "how to screen record on pc", "how to take a screenshot on a pc" ], "status": "success", "timestamp": "2024-11-03T11:35:58.158071" }
Google Search Autocomplete
These endpoints return autocomplete suggestions from Google search.
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
query | string | Yes | The search query for which autocomplete suggestions are desired. |
Python Requests Example:
import requests url = "https://search-query-autocomplete-api.p.rapidapi.com/google" querystring = {"query":"how to"} headers = { "x-rapidapi-key": "Sign Up for Key", "x-rapidapi-host": "search-query-autocomplete-api.p.rapidapi.com" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Response Example:
{ "requestID": "9d7eb39d-517a-4be2-840f-143e501a67c2", "results": [ "how to make millions before grandma dies", "how to lose a guy in 10 days", "how to train your dragon", "how to prestige bo6", "how to evolve inkay", "how to make a screenshot on windows", "how to tie a tie", "how to talk to kids", "how to draw", "how to win friends and influence people" ], "status": "success", "timestamp": "2024-11-03T20:08:21.092605" }
YouTube Search Autocomplete
These endpoints return autocomplete suggestions from YouTube search.
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
query | string | Yes | The search query for which autocomplete suggestions are desired. |
Python Requests Example:
import requests url = "https://search-query-autocomplete-api.p.rapidapi.com/youtube" querystring = {"query":"how to"} headers = { "x-rapidapi-key": "Sign Up for Key", "x-rapidapi-host": "search-query-autocomplete-api.p.rapidapi.com" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Response Example:
{ "requestID": "71fb3bf0-18cd-4a02-ad48-4564bcfed809", "results": [ "how to make millions before grandma dies", "how to lose a guy in 10 days", "how to prestige bo6", "how to train your dragon", "how to evolve inkay", "how to get away with a murderer", "how to tie a tie", "how to evolve inkay pokemon go", "how to make a screenshot on windows", "how to lose face fat", "how to draw", "how to delete instagram account", "how to solve rubiks cube", "how to screen record on windows" ], "status": "success", "timestamp": "2024-11-03T20:10:53.685026" }
DuckDuckGo Search Autocomplete
These endpoints return autocomplete suggestions from DuckDuckGo search.
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
query | string | Yes | The search query for which autocomplete suggestions are desired. |
Python Requests Example:
import requests url = "https://search-query-autocomplete-api.p.rapidapi.com/duckduckgo" querystring = {"query":"how to"} headers = { "x-rapidapi-key": "Sign Up for Key", "x-rapidapi-host": "search-query-autocomplete-api.p.rapidapi.com" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Response Example:
{ "requestID": "69c7cb6b-2775-4f8b-861f-c2cf7e497667", "results": [ "how to screenshot on pc", "how to deal with bullies", "how to type", "how to draw", "how to train your dragon", "how to get free robux", "how to install optifine", "how to relieve eye strain" ], "status": "success", "timestamp": "2024-11-03T20:14:47.764009" }
DuckDuckGo AI Chat
Send a message or question to an AI model and receive a response.
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
keywords | string | Yes | The message or question for the AI. |
model | string | Optional | The AI model to use. Valid values are 'gpt-3.5', 'claude-3-haiku', 'llama-3-70b', 'mixtral-8x7b'. |
Python Requests Example:
import requests url = "https://search-query-autocomplete-api.p.rapidapi.com/ddgs/ai" querystring = {"keywords":"Hello, how are you?","model":"claude-3-haiku"} headers = { "x-rapidapi-key": "Sign Up for Key", "x-rapidapi-host": "search-query-autocomplete-api.p.rapidapi.com" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Response Example:
{ "model": "claude-3-haiku", "query": "Hello, how are you?", "requestID": "d5d3fed0-73c7-49c6-9800-fc0c6d21f1cc", "response": "Hello! As an AI language model, I don't have personal experiences or feelings, but I'm here to assist you to the best of my abilities. How can I help you today?", "status": "success", "timestamp": "2024-11-03T20:30:57.300904" }
DuckDuckGo Search
Perform a search using DuckDuckGo and return the results.
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
q | string | Yes | The search query. |
limit | int | Optional | The maximum number of results to return. Must be a positive integer. |
Python Requests Example:
import requests url = "https://search-query-autocomplete-api.p.rapidapi.com/ddgs/search" querystring = {"q":"iOS 18","limit":"10"} headers = { "x-rapidapi-key": "Sign Up for Key", "x-rapidapi-host": "search-query-autocomplete-api.p.rapidapi.com" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Response Example:
{ "query": "iOS 18", "requestID": "2136f630-0a9e-4669-bf3c-7d51ba599309", "results": [ { "body": "iOS 18. Yours. Truly. Customize your iPhone in more ways than ever, stay connected with friends and family, and relive your favorite moments. And with Apple Intelligence, the things you do every day become even more magical. On all iPhone 16 models, iPhone 15 Pro, and iPhone 15 Pro Max, iOS 18 introduces Apple Intelligence, which draws on your ...", "title": "iOS 18 - Apple", "url": "https://www.apple.com/ios/ios-18/" }, { "body": "iOS 18 is now available, bringing iPhone users around the world new ways to personalize their iPhone with deeper customization to the Home Screen and Control Center; the biggest-ever redesign to Photos, making it even easier to find and relive special moments; and major enhancements to Messages and Mail. Starting next month, iOS 18 will introduce Apple Intelligence, the personal intelligence ...", "title": "iOS 18 is available today, making iPhone more personal and ... - Apple", "url": "https://www.apple.com/newsroom/2024/09/ios-18-is-available-today-making-iphone-more-personal-and-capable-than-ever/" }, { "body": "Truly. iOS 18 is the eighteenth and current major release of Apple 's iOS operating system for the iPhone. [3][4][5][6] It was announced on June 10, 2024, at the 2024 Worldwide Developers Conference (WWDC). It was made publicly available on September 16, 2024, as a free software update for supported iOS devices. [7]", "title": "iOS 18 - Wikipedia", "url": "https://en.wikipedia.org/wiki/IOS_18" }, { "body": "The first Apple Intelligence features will come in the iOS 18.1 beta that Apple is testing. iOS 18.1 includes Writing Tools, Siri 's new design, Smart Replies in Messages and Mail, Memory Maker ...", "title": "Just Install iOS 18? Here Are 10 Things to Do First - MacRumors", "url": "https://www.macrumors.com/guide/ios-18-what-to-do-first/" }, { "body": "Apple Intelligence. (iOS 18.1) Apple Intelligence combines the power of generative models with an understanding of your personal context to deliver intelligence that's useful and relevant. Apple Intelligence can prioritize and summarize notifications, mail, and messages, let you interact with Siri in new and more natural ways, search your ...", "title": "What's new in iOS 18 - Apple Support", "url": "https://support.apple.com/guide/iphone/whats-new-in-ios-18-iphfed2c4091/ios" }, { "body": "iOS 18 brings the kind of enhancements you'd expect from Apple's annual software update, with plenty of hits (like the improved Notes app) amid more controversial changes like the Photos app redesign.", "title": "iOS 18 review: A solid update with Apple's first steps toward AI", "url": "https://www.tomsguide.com/phones/iphones/ios-18" }, { "body": "iOS 18 brings new ways to customize the iPhone experience, relive special moments, and stay connected. Customize your iPhone further by arranging your Home Screen, your Lock Screen, and Control Center in all-new ways. Photos delivers the biggest redesign ever to make it even easier to relive your special moments. Staying connected with friends and family is even better with new ways to express ...", "title": "About iOS 18 Updates - Apple Support", "url": "https://support.apple.com/en-us/121161" }, { "body": "Apple is set to release iOS 18.2 in December, bringing the second round of Apple Intelligence features to iPhone 15 Pro and iPhone 16 models. This update brings several major advancements to Apple ...", "title": "iOS 18 Features: The Ultimate Mega Guide - MacRumors", "url": "https://www.macrumors.com/guide/ios-18-ultimate-guide/" }, { "body": "Learn more about iOS 18. Download iOS 18. When you download the latest version of iOS, your data and settings remain unchanged. Update iPhone automatically. To turn on automatic updates: Go to Settings > General > Software Update > Automatic Updates. Turn on iOS Updates below Automatically Install and Automatically Download.", "title": "How to download iOS 18 - Apple Support", "url": "https://support.apple.com/en-us/104985" }, { "body": "Because iOS 18 is adding support for the RCS messaging standard, images and videos will be delivered at a higher resolution, so you can actually see the cute video of, say, your nieces and nephews ...", "title": "iOS 18 Is Out Now. Here Are the Best New Features.", "url": "https://www.nytimes.com/wirecutter/reviews/ios-18-best-new-features/" } ], "status": "success", "timestamp": "2024-11-03T20:35:34.610242" }
DuckDuckGo Proxy Search
Perform a search using DuckDuckGo via a specified proxy and return the results.
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
q | string | Yes | The search query. |
proxy | string | Yes | The proxy to use for the search. Format should be protocol://user:password@host:port. |
limit | int | Optional | The maximum number of results to return. Must be a positive integer. |
Python Requests Example:
import requests url = "https://search-query-autocomplete-api.p.rapidapi.com/ddgs/proxy/search" querystring = {"q":"School","limit":"10","proxy":"socks5://user:password@geo.iproyal.com:32325"} headers = { "x-rapidapi-key": "Sign Up for Key", "x-rapidapi-host": "search-query-autocomplete-api.p.rapidapi.com" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Response Example:
{ "query": "School", "requestID": "ef200bac-9e09-466f-a9ee-2e65bbc4a620", "results": [ { "body": "Our first batch of alumni have finished college this year, and nearly 85% of eligible students are working or pursuing their Masters! iTeach Schools. 22, Gaurishankar Bungalow, Shivaji Co-operative Housing Society, Pune, Maharashtra 411016. Contact: +91-9067982924.", "title": "Home | iTeach Schools", "url": "https://www.iteachschools.org/" }, { "body": "Students Award. Kothari International school has received various prestigious awards in the Education Sector. Learn More. Kothari International School. Fountain Road. Kharadi Pune. Maharashtra 411014. 9767016996 / 8446031010. admission@kispune.com.", "title": "Kothari International School", "url": "https://kispune.com/" }, { "body": "Mahindra International School (MIS) is a private, co-educational, not for profit school located in Pune, India. The school was the first in India to be authorized by the International Baccalaureate (IB) Organization to offer the IB Primary Years Programme (PYP), IB Middle Years Programme (MYP), and IB Diploma Programme (DP).", "title": "Home - Mahindra International School", "url": "https://misp.org/" }, { "body": "With about 2 decades of experience, The Orchid School has emerged as a trusted educational brand for holistic development. We at TOS blend curriculum, innovative teaching methodologies, and cutting-edge approach seamlessly, making us a standout choice. Provide a positive, caring, and engaging learning environment.", "title": "The Orchid School", "url": "https://theorchidschool.org/" }, { "body": "Contact Info. Army Public School, Near Ghorpadi Market, Opposite Bank of Maharashtra Ghorpadi, Pune, Maharashtra - 411 001. Contact : 2255 (ARMY), 020-29990101 (CIV) Meeting hours: 10AM-12PM. Note: Meeting with Principal with prior appointment. apspune01@gmail.com.", "title": "Army Public School, Pune", "url": "https://apspune.com/" }, { "body": "MARY'S SCHOOL & JUNIOR COLLEGE, PUNE Results of ICSE & ISC - 2024. We are proud to announce that in keeping with the tradition of St. Mary's School, our ICSE & ISC students have secured 100% pass results. The earnest efforts and dedication of the entire staff at St. Mary's School, along with the perseverance of the students through ...", "title": "St. Mary's School, Pune", "url": "https://www.smspune.com/" }, { "body": "Student Portal. To Capture Student Information. School Portal. An online system for gathering school Information. Staff Portal. Information of teaching and non teaching staff", "title": "SARAL", "url": "https://education.maharashtra.gov.in/" }, { "body": "BKBCE is a world class Senior Secondary Co- Ed Day cum Boys Residential School affiliated to the CBSE, New Delhi and follows the CBSE/NCERT syllabus. Contact info. +91 8380968333, 8380968444. info@bkbirlacentre.co.in. B K Birla Centre For Education Post Box No: 1, Talegaon Dabhade Taluka Maval, Dist. Pune - 410506.", "title": "B.K. Birla Centre for Education", "url": "https://bkbirlacentre.com/" }, { "body": "Circular for Nursery Admission (Non-Sibling Category) 2024-25. Dear Parents, Please click \"Admission\" Tab on the website (https://davaundhpune.org) on 15.01.2024 for the circular related to Admission to Nursery Class (Non-Sibling Category) for the academic year 2024-25.", "title": "DAV Public School, Aundh", "url": "https://davaundhpune.org/" }, { "body": "Welcome to the Indira National School. We are a part of Shree Chanakya Education Society, which has a strong presence on the education map of Pune. The Trust has been associated with Management education since 1994. The school segment has been operational since 2004. Today we are a full fledged CBSE affiliated school with student strength 3821 ...", "title": "Indira National School", "url": "https://indiranationalschool.ac.in/" } ], "status": "success", "timestamp": "2024-11-04T01:27:00.808708" }
DuckDuckGo Blaze Search
Perform a customized search using DuckDuckGo with additional parameters and return the results.
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
keywords | string | Yes | The search keywords. |
region | string | Optional | The region to search within. -> wt-wt, us-en, uk-en, ru-ru, etc. |
safesearch | string | Optional | SafeSearch setting. Valid values are 'on', 'moderate', 'off'. |
timelimit | string | Optional | Limit the search to a specific time frame. Valid values are 'd' (day), 'w' (week), 'm' (month), 'y' (year). |
backend | string | Optional | The backend to use for the search. Valid values are 'api', 'html', 'lite'. |
max_results | int | Optional | The maximum number of results to return. |
Python Requests Example:
import requests url = "https://search-query-autocomplete-api.p.rapidapi.com/ddgs/blaze/search" querystring = {"keywords":"Python programming","region":"us-en","safesearch":"off","timelimit":"m","backend":"api","max_results":"10"} headers = { "x-rapidapi-key": "Sign Up for Key", "x-rapidapi-host": "search-query-autocomplete-api.p.rapidapi.com" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Response Example:
{ "keywords": "Python programming", "params": { "backend": "api", "max_results": 10, "region": "us-en", "safesearch": "off", "timelimit": "m" }, "requestID": "647ca87a-1728-4a09-a640-b90fe13b62d6", "results": [ { "body": "More control flow tools in Python 3. Experienced programmers in any other language can pick up Python very quickly, and beginners find the clean syntax and indentation structure easy to learn. Whet your appetite with our Python 3 overview. Python is a programming language that lets you work quickly and integrate systems more effectively.", "title": "Welcome to Python.org", "url": "https://www.python.org/?downloads/" }, { "body": "A comprehensive guide to learn Python programming from basics to advanced level, covering syntax, data types, operators, loops, functions, OOPs, exceptions, and more. Includes examples, quizzes, and tips for beginners and professionals.", "title": "Python Tutorial | Learn Python Programming Language - GeeksforGeeks", "url": "https://www.geeksforgeeks.org/python-programming-language-tutorial/" }, { "body": "Real Python offers in-depth articles, video courses, quizzes, and books to help you learn Python of all skill levels. Explore topics such as Python 3.13, data science, web scraping, GUI, and more.", "title": "Python Tutorials - Real Python", "url": "https://realpython.com/" }, { "body": "In this section you'll find Python tutorials that teach you advanced concepts so you can be on your way to become a master of the Python programming language. Once you're past the intermediate-level you can start digging into these tutorials that will teach you advanced Python concepts and patterns. Becoming a Python expert takes time, but ...", "title": "Advanced Python Tutorials", "url": "https://realpython.com/tutorials/advanced/" }, { "body": "Learn Python programming with articles and tutorials designed for beginners. Find fundamental concepts, exercises, projects, and tips to get started on your Python career.", "title": "Python Basics - Real Python", "url": "https://realpython.com/tutorials/basics/" }, { "body": "Python is a very powerful and high-level object-oriented programming language and due to its versatile nature, it is the most popular one. Python's dynamic typing and elegant syntax, together with its interpreted nature, make it a perfect language for scripting and application development in many areas.", "title": "Python Projects for Beginner to Advanced - GeeksforGeeks", "url": "https://www.geeksforgeeks.org/python-projects-beginner-to-advanced/" }, { "body": "Python's sys.argv provides a simple way to handle command-line arguments, enhancing script flexibility. By accessing arguments dynamically, you can customize Python scripts for various use cases. Whether you're building utilities, automating tasks, or just experimenting, sys.argv is a core tool to know in Python programming.", "title": "Python sys.argv: Handling Command-Line Arguments - PyTutorial", "url": "https://pytutorial.com/python-sysargv-handling-command-line-arguments/" }, { "body": "Course. Learn basic programming with Python, one of the most versatile and widely used programming languages! You'll first learn core programming concepts and fundamental Python syntax by writing code to make a virtual \"turtle\" robot draw colorful shapes on the screen. You'll then learn how to write Python functions, run Python from a Command ...", "title": "Online Python Programming Training Course | Udacity", "url": "https://www.udacity.com/course/intro-to-programming-with-python-one--cd0228" }, { "body": "Course. Learn Python programming fundamentals such as data types and structures, variables, loops, and functions. Download Syllabus. Beginner. 4 weeks. Real-world Projects. Completion Certificate. Last Updated May 30, 2024.", "title": "Introduction to Python - Udacity", "url": "https://www.udacity.com/course/introduction-to-python--cd0024" }, { "body": "Hello, Python learners, My Learn to Code by Solving Problems book uses Python to teach you how to program. About once a year, a new Python version is released with new features and improvements. And here we are with the latest version of Python, version 3.13! As always with Python, you can continue to program as you have before. But I make a h...", "title": "Learn to Code by Solving Problems: A Python Programming Primer ...", "url": "https://www.danielzingaro.com/ltc/" } ], "status": "success", "timestamp": "2024-11-04T01:45:53.075664" }
DuckDuckGo Image Search
Perform a customized image search using DuckDuckGo with additional parameters and return the results.
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
keywords | string | Yes | The search keywords. |
region | string | Optional | The region to search within. -> wt-wt, us-en, uk-en, ru-ru, etc. |
safesearch | string | Optional | SafeSearch setting. Valid values are 'on', 'moderate', 'off'. |
timelimit | string | Optional | Time limit for image search. Possible values: 'Day', 'Week', 'Month', 'Year'. |
size | string | Optional | Size of images. Possible values: 'Small', 'Medium', 'Large', 'Wallpaper'. |
color | string | Optional | Color filter for images. Possible values: 'color', 'Monochrome', 'Red', 'Orange', 'Yellow', 'Green', 'Blue', 'Purple', 'Pink', 'Brown', 'Black', 'Gray', 'Teal', 'White'. |
type | string | Optional | Type of image. Possible values: 'photo', 'clipart', 'gif', 'transparent', 'line'. |
layout | string | Optional | Layout of images. Possible values: 'Square', 'Tall', 'Wide'. |
license | string | Optional | License type for images. Possible values: 'any', 'Public', 'Share', 'ShareCommercially', 'Modify', 'ModifyCommercially'. |
max_results | int | Optional | The maximum number of results to return. |
Python Requests Example:
import requests url = "https://search-query-autocomplete-api.p.rapidapi.com/ddgs/images" querystring = {"keywords":"nature","safesearch":"off","timelimit":"m","size":"Medium","color":"color","type":"photo","max_results":"10"} headers = { "x-rapidapi-key": "Sign Up for Key", "x-rapidapi-host": "search-query-autocomplete-api.p.rapidapi.com" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Response Example:
{ "keywords": "nature", "params": { "color": "color", "layout": null, "license": null, "max_results": 10, "region": "wt-wt", "safesearch": "off", "size": "Medium", "timelimit": "Month", "type": "photo" }, "requestID": "3bfd51df-c63f-47cd-8290-e6d06a2f8f89", "results": [], "status": "success", "timestamp": "2024-11-04T01:58:36.633619" }
DuckDuckGo Video Search
Perform a customized video search using DuckDuckGo with additional parameters and return the results.
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
keywords | string | Yes | The search keywords. |
region | string | Optional | The region to search within. -> wt-wt, us-en, uk-en, ru-ru, etc. |
safesearch | string | Optional | SafeSearch setting. Valid values are 'on', 'moderate', 'off'. |
timelimit | string | Optional | Limit the search to a specific time frame. Valid values are 'd' (day), 'w' (week), 'm' (month), 'y' (year). |
resolution | string | Optional | Video resolution. Possible values: 'high', 'standard'. |
duration | string | Optional | Video duration. Possible values: 'short', 'medium', 'long'. |
license | string | Optional | License type for images. Possible values: 'creativeCommon', 'youtube'. |
max_results | int | Optional | The maximum number of results to return. |
Python Requests Example:
import requests url = "https://search-query-autocomplete-api.p.rapidapi.com/ddgs/videos" querystring = {"keywords":"nature","region":"us-en","safesearch":"off","timelimit":"m","resolution":"high","duration":"short","license":"youtube","max_results":"10"} headers = { "x-rapidapi-key": "Sign Up for Key", "x-rapidapi-host": "search-query-autocomplete-api.p.rapidapi.com" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Response Example:
{ "keywords": "nature", "params": { "duration": "short", "license": "youtube", "max_results": 10, "region": "us-en", "resolution": "high", "safesearch": "off", "timelimit": "m" }, "requestID": "5d7c3941-8df2-41ad-9bbf-aa3f28f47b86", "results": [ { "content": "https://www.youtube.com/watch?v=sG7O8ptRNk8", "description": "Explore the wonders of nature in this captivating video that takes you on a journey through some of the most breathtaking natural landscapes and wildlife. From serene forests to majestic mountains, crystal-clear lakes, and exotic animals, this video is a perfect escape into the world of natural beauty. Experience the peaceful sounds of nature ...", "duration": "0:18", "embed_html": "<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/sG7O8ptRNk8?autoplay=1\" frameborder=\"0\" allowfullscreen></iframe>", "embed_url": "https://www.youtube.com/embed/sG7O8ptRNk8?autoplay=1", "image_token": "88a7f3d46bcdc3f4461c4dcc3335965a28424475a2a8a35d7218c4506e10da37", "images": { "large": "https://tse2.mm.bing.net/th?id=OVF.FOe3eAECu4b%2bfvyP9%2btvcw&pid=Api", "medium": "https://tse2.mm.bing.net/th?id=OVF.FOe3eAECu4b%2bfvyP9%2btvcw&pid=Api", "motion": "", "small": "https://tse2.mm.bing.net/th?id=OVF.FOe3eAECu4b%2bfvyP9%2btvcw&pid=Api" }, "provider": "Bing", "published": "2024-11-01T09:15:05.0000000", "publisher": "YouTube", "statistics": { "viewCount": 4824 }, "title": "Nature's BIGGEST Secret Revealed \ud83c\udf34\ud83d\udd4a\ufe0f\ud83c\udf39", "uploader": "Creative Tech Daily" }, { "content": "https://www.youtube.com/watch?v=I2dHYSbH0a4", "description": "As a young lioness rekindles with her aunt, she is taught how to hunt giraffes. Please LIKE and SUBSCRIBE if you enjoyed it! http://bit.ly/1Adl6ht **More info & videos below** \"Lions of the Skeleton Coast\" premieres November 13, 2024, at 8|7c on PBS and YouTube. --------------- For full NATURE episodes, check out http://www.pbs.org/wnet ...", "duration": "1:44", "embed_html": "<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/I2dHYSbH0a4?autoplay=1\" frameborder=\"0\" allowfullscreen></iframe>", "embed_url": "https://www.youtube.com/embed/I2dHYSbH0a4?autoplay=1", "image_token": "024af2ef9daa1331b8b8e253d016835b1ed3a52b3433870acb244adfbd515510", "images": { "large": "https://tse1.mm.bing.net/th?id=OVF.BfL%2fhaspdDvMUQDS8GZM%2bQ&pid=Api", "medium": "https://tse1.mm.bing.net/th?id=OVF.BfL%2fhaspdDvMUQDS8GZM%2bQ&pid=Api", "motion": "", "small": "https://tse1.mm.bing.net/th?id=OVF.BfL%2fhaspdDvMUQDS8GZM%2bQ&pid=Api" }, "provider": "Bing", "published": "2024-11-03T15:00:26.0000000", "publisher": "YouTube", "statistics": { "viewCount": 1768 }, "title": "Young Lionness Learns to Hunt Giraffes", "uploader": "Nature on PBS" }, { "content": "https://www.youtube.com/watch?v=ACITS4mgRUQ", "description": "Explore the wonders of nature in this captivating video that takes you on a journey through some of the most breathtaking natural landscapes and wildlife. From serene forests to majestic mountains, crystal-clear lakes, and exotic animals, this video is a perfect escape into the world of natural beauty. Experience the peaceful sounds of nature ...", "duration": "0:08", "embed_html": "<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/ACITS4mgRUQ?autoplay=1\" frameborder=\"0\" allowfullscreen></iframe>", "embed_url": "https://www.youtube.com/embed/ACITS4mgRUQ?autoplay=1", "image_token": "a931e0c22ee5b3adf028b52bad3e12690454a2e16757edc64388060bb3c57b73", "images": { "large": "https://tse4.mm.bing.net/th?id=OVF.37ROLh5kY%2bXeDjOn6tEUjg&pid=Api", "medium": "https://tse4.mm.bing.net/th?id=OVF.37ROLh5kY%2bXeDjOn6tEUjg&pid=Api", "motion": "", "small": "https://tse4.mm.bing.net/th?id=OVF.37ROLh5kY%2bXeDjOn6tEUjg&pid=Api" }, "provider": "Bing", "published": "2024-10-31T01:56:32.0000000", "publisher": "YouTube", "statistics": { "viewCount": 46 }, "title": "Nature's BIGGEST Secret Revealed \ud83c\udf34\ud83d\udd4a\ufe0f\ud83c\udf39", "uploader": "Creative Tech Daily" }, { "content": "https://www.youtube.com/watch?v=ushFmTmjITw", "description": "Explore the wonders of nature in this captivating video that takes you on a journey through some of the most breathtaking natural landscapes and wildlife. From serene forests to majestic mountains, crystal-clear lakes, and exotic animals, this video is a perfect escape into the world of natural beauty. Experience the peaceful sounds of nature ...", "duration": "0:13", "embed_html": "<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/ushFmTmjITw?autoplay=1\" frameborder=\"0\" allowfullscreen></iframe>", "embed_url": "https://www.youtube.com/embed/ushFmTmjITw?autoplay=1", "image_token": "d4f73e9c43f209f165bb16bc2495cecbfb4917be8b97cc9726b1bb65d94950a2", "images": { "large": "https://tse4.mm.bing.net/th?id=OVF.qCr1bn8WykD%2f4CSk%2b37XXg&pid=Api", "medium": "https://tse4.mm.bing.net/th?id=OVF.qCr1bn8WykD%2f4CSk%2b37XXg&pid=Api", "motion": "", "small": "https://tse4.mm.bing.net/th?id=OVF.qCr1bn8WykD%2f4CSk%2b37XXg&pid=Api" }, "provider": "Bing", "published": "2024-10-28T12:43:57.0000000", "publisher": "YouTube", "statistics": { "viewCount": 529 }, "title": "Nature's BIGGEST Secret Revealed \ud83c\udf34\ud83d\udd4a\ufe0f\ud83c\udf39", "uploader": "Creative Tech Daily" }, { "content": "https://www.tiktok.com/@randonnebensliman/video/7429416792348544261", "description": "Embark on a thrilling adventure through the picturesque landscapes of Benslimane with this nature travel video. Discover the wonders of Ain Laksab and immerse yourself in the beauty of this voyage. #randonn\u00e9e #voyage #nature #benslimane #ainlaksab randonn\u00e9e benslimane khalid(@randonnebensliman). son original - randonn\u00e9e benslimane khalid. # ...", "duration": "0:42", "embed_html": "", "embed_url": "", "image_token": "e2049735687e355fe6781d5e6b648a28a521bb12b28734c9de279669771be355", "images": { "large": "https://tse2.mm.bing.net/th?id=OVP.7CixGxS6ABQIR6m3x0XPHQFRJY&pid=Api", "medium": "https://tse2.mm.bing.net/th?id=OVP.7CixGxS6ABQIR6m3x0XPHQFRJY&pid=Api", "motion": "https://tse4.mm.bing.net/th?id=OM.V6NyO2BpWLJ89A&pid=Api", "small": "https://tse2.mm.bing.net/th?id=OVP.7CixGxS6ABQIR6m3x0XPHQFRJY&pid=Api" }, "provider": "Bing", "published": "2024-10-24T18:51:41.0000000", "publisher": "TikTok", "statistics": { "viewCount": 88700 }, "title": "Exploring the Beauty of Benslimane Through Hiking", "uploader": "randonnebensliman" }, { "content": "https://www.tiktok.com/@lacey_spalding/video/7428994004823313710", "description": "Discover the enchanting beauty of the Hoh forest in Washington State through this immersive video. Get lost in the stunning wilderness and serene nature. #WashingtonState #HohForest #NatureExploration Lacey Spalding(@lacey_spalding). Rainforest - Nature Radiance & Nature Sounds. Exploring the Hoh forest in Washington State \ud83c\udf32\ud83e\udd7e", "duration": "0:10", "embed_html": "", "embed_url": "", "image_token": "cdec796ebbb8a56a5e44f5d0100956fb50cde3aeb0fe219ec89372da44802c82", "images": { "large": "https://tse4.mm.bing.net/th?id=OVP.9wrKVapry0-m518qx5BW6wFRJY&pid=Api", "medium": "https://tse4.mm.bing.net/th?id=OVP.9wrKVapry0-m518qx5BW6wFRJY&pid=Api", "motion": "https://tse1.mm.bing.net/th?id=OM.XXVdCECKfXGGIw&pid=Api", "small": "https://tse4.mm.bing.net/th?id=OVP.9wrKVapry0-m518qx5BW6wFRJY&pid=Api" }, "provider": "Bing", "published": "2024-10-23T15:31:03.0000000", "publisher": "TikTok", "statistics": { "viewCount": 1200000 }, "title": "Exploring the Hoh Forest in Washington State", "uploader": "lacey_spalding" }, { "content": "https://www.youtube.com/watch?v=dofVsckbs80", "description": "Explore the wonders of nature in this captivating video that takes you on a journey through some of the most breathtaking natural landscapes and wildlife. From serene forests to majestic mountains, crystal-clear lakes, and exotic animals, this video is a perfect escape into the world of natural beauty. Experience the peaceful sounds of nature ...", "duration": "0:08", "embed_html": "<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/dofVsckbs80?autoplay=1\" frameborder=\"0\" allowfullscreen></iframe>", "embed_url": "https://www.youtube.com/embed/dofVsckbs80?autoplay=1", "image_token": "90a0318d2a020e6e0556523c420d436e2f57851fb51d1533cc9fb5aadb6fb36b", "images": { "large": "https://tse3.mm.bing.net/th?id=OVF.P%2f5MtVQQcrm6cNPcGHziAA&pid=Api", "medium": "https://tse3.mm.bing.net/th?id=OVF.P%2f5MtVQQcrm6cNPcGHziAA&pid=Api", "motion": "", "small": "https://tse3.mm.bing.net/th?id=OVF.P%2f5MtVQQcrm6cNPcGHziAA&pid=Api" }, "provider": "Bing", "published": "2024-10-30T05:00:25.0000000", "publisher": "YouTube", "statistics": { "viewCount": 30 }, "title": "Nature's BIGGEST Secret Revealed \ud83c\udf34\ud83d\udd4a\ufe0f\ud83c\udf39", "uploader": "Creative Tech Daily" }, { "content": "https://www.youtube.com/watch?v=CrEgIcoKBcU", "description": "Explore the wonders of nature in this captivating video that takes you on a journey through some of the most breathtaking natural landscapes and wildlife. From serene forests to majestic mountains, crystal-clear lakes, and exotic animals, this video is a perfect escape into the world of natural beauty. Experience the peaceful sounds of nature ...", "duration": "0:08", "embed_html": "<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/CrEgIcoKBcU?autoplay=1\" frameborder=\"0\" allowfullscreen></iframe>", "embed_url": "https://www.youtube.com/embed/CrEgIcoKBcU?autoplay=1", "image_token": "8da7a67b91783d73c0dc0451a67dd617ebf3142c791fa558cea9bdc60fe32d34", "images": { "large": "https://tse2.mm.bing.net/th?id=OVF.LrlH2P2MZCmpK35fpxlJOg&pid=Api", "medium": "https://tse2.mm.bing.net/th?id=OVF.LrlH2P2MZCmpK35fpxlJOg&pid=Api", "motion": "", "small": "https://tse2.mm.bing.net/th?id=OVF.LrlH2P2MZCmpK35fpxlJOg&pid=Api" }, "provider": "Bing", "published": "2024-10-28T12:42:57.0000000", "publisher": "YouTube", "statistics": { "viewCount": 818 }, "title": "Nature's BIGGEST Secret Revealed \ud83c\udf34\ud83d\udd4a\ufe0f\ud83c\udf39", "uploader": "Creative Tech Daily" }, { "content": "https://www.youtube.com/watch?v=59dv9-MkGaU", "description": "Explore the wonders of nature in this captivating video that takes you on a journey through some of the most breathtaking natural landscapes and wildlife. From serene forests to majestic mountains, crystal-clear lakes, and exotic animals, this video is a perfect escape into the world of natural beauty. Experience the peaceful sounds of nature ...", "duration": "0:08", "embed_html": "<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/59dv9-MkGaU?autoplay=1\" frameborder=\"0\" allowfullscreen></iframe>", "embed_url": "https://www.youtube.com/embed/59dv9-MkGaU?autoplay=1", "image_token": "d0dc2a14dba9dcc7968f799de713be25d4ea384bbd5a9f4deb1c33f17290488e", "images": { "large": "https://tse1.mm.bing.net/th?id=OVF.km3czZrcy95K%2fmJ1I9hmMg&pid=Api", "medium": "https://tse1.mm.bing.net/th?id=OVF.km3czZrcy95K%2fmJ1I9hmMg&pid=Api", "motion": "", "small": "https://tse1.mm.bing.net/th?id=OVF.km3czZrcy95K%2fmJ1I9hmMg&pid=Api" }, "provider": "Bing", "published": "2024-11-01T08:21:38.0000000", "publisher": "YouTube", "statistics": { "viewCount": 492 }, "title": "Nature's BIGGEST Secret Revealed \ud83c\udf34\ud83d\udd4a\ufe0f\ud83c\udf39", "uploader": "Creative Tech Daily" }, { "content": "https://www.youtube.com/watch?v=Mte8SCkz-GA", "description": "The world's biggest nature conservation conference closed in Colombia on Saturday with no agreement on a roadmap to ramp up funding for species protection. With other successes under its belt, the 16th Conference of Parties (COP16) to the UN's Convention on Biological Diversity (CBD) was suspended by its president Susana Muhamad as negotiations ...", "duration": "1:47", "embed_html": "<iframe width=\"1280\" height=\"720\" src=\"https://www.youtube.com/embed/Mte8SCkz-GA?autoplay=1\" frameborder=\"0\" allowfullscreen></iframe>", "embed_url": "https://www.youtube.com/embed/Mte8SCkz-GA?autoplay=1", "image_token": "477eccbcbb9085954e26db2c4d50c2901e3eb47c0aa3e52171679ab332ae2d03", "images": { "large": "https://tse2.mm.bing.net/th?id=OVF.zmO3rockOlur1jkttLV2Kw&pid=Api", "medium": "https://tse2.mm.bing.net/th?id=OVF.zmO3rockOlur1jkttLV2Kw&pid=Api", "motion": "", "small": "https://tse2.mm.bing.net/th?id=OVF.zmO3rockOlur1jkttLV2Kw&pid=Api" }, "provider": "Bing", "published": "2024-11-03T14:07:50.0000000", "publisher": "YouTube", "statistics": { "viewCount": 638 }, "title": "UN biodiversity preservation talks end without deal on financing \u2022 FRANCE 24 English", "uploader": "FRANCE 24 English" } ], "status": "success", "timestamp": "2024-11-04T02:32:19.360035" }
DuckDuckGo News
Search for news articles based on specified parameters.
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
keywords | string | Yes | The search keywords. |
region | string | Optional | The region to search within. -> wt-wt, us-en, uk-en, ru-ru, etc. |
safesearch | string | Optional | SafeSearch setting. Valid values are 'on', 'moderate', 'off'. |
timelimit | string | Optional | Limit the search to a specific time frame. Valid values are 'd' (day), 'w' (week), 'm' (month), 'y' (year). |
max_results | int | Optional | The maximum number of results to return. |
Python Requests Example:
import requests url = "https://search-query-autocomplete-api.p.rapidapi.com/ddgs/news" querystring = {"keywords":"technology","region":"us-en","safesearch":"off","timelimit":"d","max_results":"10"} headers = { "x-rapidapi-key": "Sign Up for Key", "x-rapidapi-host": "search-query-autocomplete-api.p.rapidapi.com" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Response Example:
{ "keywords": "technology", "params": { "max_results": 10, "region": "us-en", "safesearch": "off", "timelimit": "d" }, "requestID": "905985aa-4692-44d4-8135-298486ae78d7", "results": [ { "body": "Copyright 2024 The Associated Press. All Rights Reserved. A 98-inch TCL QM-8 Q-Class Mini-LED QLED 4K HDR Smart TV is displayed at the Pepcom Holiday Spectacular ...", "date": "2024-11-03T12:50:53+00:00", "image": "https://dims.apnews.com/dims4/default/a0655b0/2147483647/strip/true/crop/5760x3240+0+300/resize/1440x810!/quality/90/?url=https://assets.apnews.com/cd/d7/4dc9bb0d4edb39b44e815701f02c/9c05f00dd8264314ac463843df47c75c", "source": "Associated Press on MSN.com", "title": "TV screens are getting bigger as technology improves and prices fall", "url": "https://www.msn.com/en-us/news/technology/a-tv-as-big-as-a-bed-with-the-holidays-approaching-stores-stock-more-supersize-sets/ar-AA1tqwwo" }, { "body": "The cuts will account for about 10 per cent of employees in the technology division. Read more at straitstimes.com.", "date": "2024-11-04T02:05:00+00:00", "image": "https://static1.straitstimes.com.sg/s3fs-public/styles/large30x20/public/articles/2024/11/04/rrsph0411.jpg?VersionId=Srf2z2no3klyqAn8FGaaHW6Je_GZTy_v&h=40abc946", "source": "The Straits Times", "title": "SPH Media lays off 34 employees amid restructuring of technology division", "url": "https://www.straitstimes.com/singapore/sph-media-lays-off-34-employees-amid-restructuring-of-technology-division" }, { "body": "Technology News Today Live Updates: In an era dominated by rapid technological evolution, staying informed with the latest technology news is essential. This segment offers a comprehensive look at the newest advancements and breakthroughs shaping our world.", "date": "2024-11-04T00:19:00+00:00", "image": "https://www.livemint.com/lm-img/img/2024/11/03/1600x900/AI-Regulation-Connecticut-0_1714817153159_1730653576108.jpg", "source": "Mint", "title": "Technology News Today Live: Mint Primer: What if ChatGPT's AI search engine clicks with users?", "url": "https://www.livemint.com/technology/latest-technology-news-today-on-november-4-2024-live-updates-11730678414071.html" }, { "body": "SHANGHAI (Reuters) - Chinese autonomous driving technology developer DeepRoute.ai has raised $100 million from an automaker, the company said on Monday, as it looks to bolster mass adoption of its systems on vehicles ahead of Tesla in China.", "date": "2024-11-04T02:16:00+00:00", "image": "", "source": "U.S. News & World Report", "title": "China's DeepRoute.ai Raises $100 Million as Smart Driving Adoption Speeds Up", "url": "https://www.usnews.com/news/technology/articles/2024-11-03/chinas-deeproute-ai-raises-100-million-as-smart-driving-adoption-speeds-up" }, { "body": "Chinese autonomous driving technology developer DeepRoute.ai has raised $100 million from an automaker, the company said on Monday, as it looks to bolster mass adoption of its systems on vehicles ahead of Tesla in China.", "date": "2024-11-04T00:56:00+00:00", "image": "", "source": "Reuters", "title": "China's DeepRoute.ai raises $100 mln as smart driving adoption speeds up", "url": "https://www.reuters.com/technology/artificial-intelligence/chinas-deeprouteai-raises-100-mln-smart-driving-adoption-speeds-up-2024-11-04/" }, { "body": "SINGAPORE (Reuters) - Indonesian sovereign wealth fund INA and Singapore-based venture capital firm Granite Asia said on Monday they will jointly invest up to $1.2 billion in Indonesia's technology sector and in businesses with strong ties to the Southeast Asian nation.", "date": "2024-11-04T02:21:00+00:00", "image": "", "source": "U.S. News & World Report", "title": "Wealth Fund INA and VC Firm Granite Plan to Invest $1.2 Billion in Indonesia Tech", "url": "https://www.usnews.com/news/technology/articles/2024-11-03/wealth-fund-ina-and-vc-firm-granite-plan-to-invest-1-2-billion-in-indonesia-tech" }, { "body": "Endeavour Group has named Harinder Saluja as its new chief transformation officer, overseeing the program to separate from Woolworths systems and simplify technology. The drinks group previously had a chief strategy and transformation officer role, held by Ilana Stringer who will step down in February 2025.", "date": "2024-11-04T02:19:00+00:00", "image": "https://i.nextmedia.com.au/News/boardroom.jpg", "source": "IT News For Australia Business", "title": "Endeavour Group to switch exec running tech split from Woolworths", "url": "https://www.itnews.com.au/news/endeavour-group-to-switch-exec-running-tech-split-from-woolworths-612813" }, { "body": "SINGAPORE, Nov 4 (Reuters) - Indonesian sovereign wealth fund INA and Singapore-based venture capital firm Granite Asia said on Monday they will jointly invest up to $1.2 billion in Indonesia's technology sector and in businesses with strong ties to the ...", "date": "2024-11-04T00:00:00+00:00", "image": "", "source": "Reuters", "title": "Wealth fund INA and VC firm Granite plan to invest $1.2 bln in Indonesia tech", "url": "https://www.reuters.com/technology/wealth-fund-ina-vc-firm-granite-plan-invest-12-bln-indonesia-tech-2024-11-04/" }, { "body": "The Art of Technology Lagos (AOT Lagos) returns for its 6th edition on December 5, 2024, at the Landmark Event Centre, Lagos. AOT Lagos 6.0 promises to be a groundbreaking, one-day conference focused on the transformative power of Artificial Intelligence (AI) and its role in shaping the digital future of Lagos and the African continent.", "date": "2024-11-03T13:51:00+00:00", "image": "https://www.bellanaija.com/wp-content/uploads/2024/11/AOT-Key-Visual-Image-1000x600.jpeg", "source": "BellaNaija", "title": "Art of Technology Lagos Returns for Its 6th Edition, Exploring the Future of AI in Lagos' Digital Landscape", "url": "https://www.bellanaija.com/2024/11/art-of-technology-lagos-6th-edition/" }, { "body": "The office's cyber security delivery is currently overseen by CISO Dan Barron while digital delivery is handled by Ben Foster, both of whom are in acting roles.", "date": "2024-11-03T19:48:00+00:00", "image": "https://i.nextmedia.com.au/News/iStock-942451862.jpg", "source": "IT News For Australia Business", "title": "ATO seeks new CIO amid technology delivery shake-up", "url": "https://www.itnews.com.au/news/ato-seeks-new-cio-amid-technology-delivery-shake-up-612773" } ], "status": "success", "timestamp": "2024-11-04T02:38:22.877338" }
DuckDuckGo Maps
Retrieve map search results based on specified keywords and optional location parameters.
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
keywords | string | Yes | The search keywords. |
place | string | Optional | Specific place to search. |
street | string | Optional | Street address. |
city | string | Optional | City of search. |
county | string | Optional | County of search. |
state | string | Optional | State of search. |
country | string | Optional | Country of search. |
postalcode | string | Optional | Postal code of search. |
latitude | string | Optional | Geographic coordinate (north-south position). |
longitude | string | Optional | Geographic coordinate (east-west position). |
radius | string | Optional | Expand the search radius by the distance in kilometers. |
max_results | int | Optional | The maximum number of results to return. |
Python Requests Example:
import requests url = "https://search-query-autocomplete-api.p.rapidapi.com/ddgs/maps" querystring = {"keywords":"school","city":"New York","state":"NY","country":"US","max_results":"10"} headers = { "x-rapidapi-key": "Sign Up for Key", "x-rapidapi-host": "search-query-autocomplete-api.p.rapidapi.com" } response = requests.get(url, headers=headers, params=querystring) print(response.json())
Response Example:
{ "keywords": "school", "requestID": "1b20db4d-f295-43fd-ac3b-144344f6b2fe", "results": [ { "address": "29 Fort Greene Pl, Brooklyn, NY 11217", "category": "Middle schools & high schools", "country_code": null, "desc": "", "facebook": "", "hours": "", "image": "", "instagram": "", "latitude": 40.6890016, "longitude": -73.9764243, "phone": "+17188046400", "source": "https://www.yelp.com/biz/brooklyn-technical-high-school-brooklyn?adjust_creative=duckduckgo&utm_campaign=yelp_feed&utm_medium=feed_v2&utm_source=duckduckgo", "title": "Brooklyn Technical High School", "twitter": "", "url": "https://www.bths.edu" }, { "address": "6 MetroTech Ctr, Brooklyn, NY 11201", "category": "Colleges & universities", "country_code": null, "desc": "", "facebook": "", "hours": { "Fri": "07:00:00\u201323:00:00", "Mon": "07:00:00\u201323:00:00", "Sat": "09:00:00\u201321:00:00", "Sun": "09:00:00\u201321:00:00", "Thu": "07:00:00\u201323:00:00", "Tue": "07:00:00\u201323:00:00", "Wed": "07:00:00\u201323:00:00", "closes_soon": 0, "is_open": 0, "opens_soon": 0, "state_switch_time": "07:00" }, "image": "", "instagram": "", "latitude": 40.6941103, "longitude": -73.9866114, "phone": "+17182603600", "source": "https://www.yelp.com/biz/new-york-university-tandon-school-of-engineering-brooklyn-2?adjust_creative=duckduckgo&utm_campaign=yelp_feed&utm_medium=feed_v2&utm_source=duckduckgo", "title": "New York University - Tandon school of engineering", "twitter": "", "url": "https://engineering.nyu.edu" }, { "address": "227 W 27th St, New York, NY 10001", "category": "Colleges & universities", "country_code": null, "desc": "", "facebook": "", "hours": "", "image": "", "instagram": "", "latitude": 40.74748, "longitude": -73.99508, "phone": "+12122177999", "source": "https://www.yelp.com/biz/fashion-institute-of-technology-new-york-2?adjust_creative=duckduckgo&utm_campaign=yelp_feed&utm_medium=feed_v2&utm_source=duckduckgo", "title": "Fashion Institute of Technology", "twitter": "", "url": "https://www.fitnyc.edu" }, { "address": "345 Chambers St, New York, NY 10282", "category": "Middle schools & high schools", "country_code": null, "desc": "", "facebook": "", "hours": { "Fri": "07:30:00\u201315:30:00", "Mon": "07:30:00\u201315:30:00", "Thu": "07:30:00\u201315:30:00", "Tue": "07:30:00\u201315:30:00", "Wed": "07:30:00\u201315:30:00", "closes_soon": 0, "is_open": 0, "opens_soon": 0, "state_switch_time": "07:30" }, "image": "", "instagram": "", "latitude": 40.7177535, "longitude": -74.013809, "phone": "+12123124800", "source": "https://www.yelp.com/biz/stuyvesant-high-school-new-york?adjust_creative=duckduckgo&utm_campaign=yelp_feed&utm_medium=feed_v2&utm_source=duckduckgo", "title": "Stuyvesant High School", "twitter": "", "url": "http://www.stuy.edu" }, { "address": "44 E 2nd St, New York City, NY 10003", "category": "Preschools", "country_code": null, "desc": "", "facebook": "", "hours": "", "image": "", "instagram": "", "latitude": 40.7248899, "longitude": -73.98964, "phone": "+12126002010", "source": "https://www.yelp.com/biz/nord-anglia-international-school-new-york-new-york-city?adjust_creative=duckduckgo&utm_campaign=yelp_feed&utm_medium=feed_v2&utm_source=duckduckgo", "title": "Nord Anglia International School - New York", "twitter": "", "url": "https://www.nordangliaeducation.com/our-schools/new-york" }, { "address": "30 W 16th St, New York, NY 10011", "category": "Middle schools & high schools", "country_code": null, "desc": "", "facebook": "", "hours": { "Fri": "07:00:00\u201321:00:00", "Mon": "07:00:00\u201321:00:00", "Thu": "07:00:00\u201321:00:00", "Tue": "07:00:00\u201321:00:00", "Wed": "07:00:00\u201321:00:00", "closes_soon": 0, "is_open": 0, "opens_soon": 0, "state_switch_time": "07:00" }, "image": "", "instagram": "", "latitude": 40.7380819, "longitude": -73.994851, "phone": "+12129247900", "source": "https://www.yelp.com/biz/xavier-high-school-new-york-2?adjust_creative=duckduckgo&utm_campaign=yelp_feed&utm_medium=feed_v2&utm_source=duckduckgo", "title": "Xavier High School", "twitter": "", "url": "https://www.xavierhs.org" }, { "address": "41 Broad St, New York, NY 10004", "category": "Preschools", "country_code": null, "desc": "", "facebook": "", "hours": "", "image": "", "instagram": "", "latitude": 40.7057608, "longitude": -74.01122, "phone": "+12122320266", "source": "https://www.yelp.com/biz/leman-manhattan-preparatory-school-new-york-2?adjust_creative=duckduckgo&utm_campaign=yelp_feed&utm_medium=feed_v2&utm_source=duckduckgo", "title": "Leman Manhattan Preparatory School", "twitter": "", "url": "https://www.lemanmanhattan.org" }, { "address": "2450 Fdr Dr, New York, NY 10010", "category": "Elementary schools", "country_code": null, "desc": "", "facebook": "", "hours": "", "image": "", "instagram": "", "latitude": 40.7362798, "longitude": -73.9731628, "phone": "+12126847400", "source": "https://www.yelp.com/biz/united-nations-international-school-new-york-3?adjust_creative=duckduckgo&utm_campaign=yelp_feed&utm_medium=feed_v2&utm_source=duckduckgo", "title": "United Nations International School", "twitter": "", "url": "https://www.unis.org" }, { "address": "525 East Houston St, New York, NY 10002", "category": "Middle schools & high schools", "country_code": null, "desc": "", "facebook": "", "hours": "", "image": "", "instagram": "", "latitude": 40.718276, "longitude": -73.9760921, "phone": "+12129958479", "source": "https://www.yelp.com/biz/bard-high-school-early-college-new-york?adjust_creative=duckduckgo&utm_campaign=yelp_feed&utm_medium=feed_v2&utm_source=duckduckgo", "title": "Bard High School Early College", "twitter": "", "url": "https://bhsec.bard.edu/manhattan/" }, { "address": "8301 Shore Rd, Brooklyn, NY 11209", "category": "Middle schools & high schools", "country_code": null, "desc": "", "facebook": "", "hours": "", "image": "", "instagram": "", "latitude": 40.6271225, "longitude": -74.0393341, "phone": "+17187481537", "source": "https://www.yelp.com/biz/fort-hamilton-high-school-brooklyn?adjust_creative=duckduckgo&utm_campaign=yelp_feed&utm_medium=feed_v2&utm_source=duckduckgo", "title": "Fort Hamilton High School", "twitter": "", "url": "https://www.fthhs.org" } ], "status": "success", "timestamp": "2024-11-04T02:48:39.935462" }
DuckDuckGo Translate
Translate keywords from one language to another.
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
keywords | string | Yes | The search keywords. |
from | string | Optional | Language to translate from. Defaults automatically if not provided. |
to | string | Optional | Language to translate to. Default is English. |
Python Requests Example:
import requests
url = "https://search-query-autocomplete-api.p.rapidapi.com/ddgs/translate"
querystring = {"keywords":"So, how was school today?","from":"en","to":"de"}
headers = {
"x-rapidapi-key": "Sign Up for Key",
"x-rapidapi-host": "search-query-autocomplete-api.p.rapidapi.com"
}
response = requests.get(url, headers=headers, params=querystring)
print(response.json())
Response Example:
{
"keywords": "So, how was school today?",
"requestID": "1bc2373a-0383-4809-930f-b8d96ffa3ea0",
"status": "success",
"timestamp": "2024-11-04T02:55:29.262549",
"translations": [
{
"detected_language": null,
"original": "So, how was school today?",
"translated": "Also, wie war die Schule heute?"
}
]
}
Subscribe to Search Query Autocomplete API
Subscribe to Search Query Autocomplete API
Subscribe to Search Query Autocomplete API
Subscribe to Search Query Autocomplete API