AI-Search
了解如何使用 AI 搜索网络。用简单英语描述你的需求,让工具为你处理搜索。
最后更新于
这有帮助吗?
这有帮助吗?
pip install oxylabs-ai-studiofrom oxylabs_ai_studio.apps.ai_search import AiSearch
search = AiSearch(api_key="<API_KEY>")
query = "lasagna recipes"
result = search.search(
query=query,
limit=5,
render_javascript=False,
return_content=True,
)
print(result.data)
# Or for fast search
result = search.instant_search(
query=query,
limit=10,
)
print(result.data)[
{
"url": "https://www.spendwithpennies.com/easy-homemade-lasagna/",
"title": "Easy Homemade Lasagna Recipe - Spend With Pennies",
"description": "Rating 5.0 (3,349) · 1 hr 45 min This is the best LASAGNA RECIPE! Pasta, an easy meat sauce, and ricotta cheese are layered and then topped with more cheese before baking.",
"content": null
},
{
"url": "https://www.simplyrecipes.com/recipes/lasagna/",
"title": "The Best Homemade Lasagna - Simply Recipes",
"description": "Rating 4.9 (115) · 1 hr 45 min This classic lasagna recipe is made with an easy meat sauce as the base. Layer the sauce with noodles and cheese, then bake until bubbly!",
"content": null
},
{
"url": "https://www.seriouseats.com/12-lasagna-recipes-11808722",
"title": "12 Must-Try Lasagna Recipes Featuring Crispy Edges and Gooey ...",
"description": "Whether you have a taste for meaty classics like a lasagna alla Bolognese or an indulgent creamy vegetarian spinach lasagna, we've rounded up our favorite ...",
"content": null
},
{
"url": "https://bakerbynature.com/the-best-homemade-lasagna-recipe/",
"title": "The Best Easy Homemade Lasagna Recipe - Baker by Nature",
"description": "Rating 5.0 (71) · 2 hr 45 min Dec 12, 2025 · This is the ONLY lasagna recipe you'll ever need... from perfectly cooked noodles to rich tomato sauce and layers of cheese.",
"content": null
},
{
"url": "https://www.allrecipes.com/recipe/23600/worlds-best-lasagna/",
"title": "World's Best Lasagna Recipe (with Video) - Allrecipes",
"description": "Rating 4.8 (20,950) · 3 hr 15 min Feb 5, 2026 · This lasagna recipe from John Chandler is our most popular recipe! With sausage, ground beef, basil, and 3 types of cheese, it lives up to ...",
"content": null
}
]