Performs web searches and returns ranked results with titles, URLs, and snippets.
searchnot measured/v1/search-tools:mojeek/search15m cache2 paramschecking key…// npm i zpi-sdk
import { ZpiClient } from "zpi-sdk";
const client = new ZpiClient({ apiKey: "zpi_xxxxxxxxxxxxxxxxxxxxxxxx" });
const data = await client.run("search-tools:mojeek", "search", {
"query": "pizza",
"page": 1
});
console.log(data);curl -X GET "https://api.zpi.web.id/v1/search-tools:mojeek/search?query=pizza&page=1" \
-H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"/v1/search-tools:mojeek/searchReturns web search results for a given query string.querystringrequiredpagenumberoptionalcurl -X GET "https://api.zpi.web.id/v1/search-tools:mojeek/search?query=pizza&page=1" \
-H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"{
"ok": true,
"query": "pizza",
"results": [
{
"url": "https://en.wikipedia.org/wiki/Pizza",
"title": "Pizza - Wikipedia",
"snippet": "The bottom of the pizza , called the \"crust\", may vary widely according to style—thin as in a typical hand-tossed Neapolitan pizza or thick as in a ..."
},
{
"url": "https://www.pizzahut.com/",
"title": "Pizza Delivery & Takeaway Near You | Pizza Hut UK",
"snippet": "Treat yourself to the best pizza , sides and desserts from your nearest Pizza Hut. Get delivery or takeaway today."
},
{
"url": "https://www.pizzaexpress.com/",
"title": "Italian Restaurants Near You | Book a Table or Order Pizza",
"snippet": "From our iconic Dough Balls to our thin and crispy Romana pizzas , enjoy all your favourites at home. ... them the good stuff with a pre-paid pizza ..."
},
{
"url": "https://www.joespizzanyc.com/",
"title": "Joe's Pizza",
"snippet": "Established in 1975 by Joe Pozzuoli, who is originally from Naples, Italy, the birthplace of pizza , Joe's Pizza is a \"Greenwich Village institution ..."
},
{
"url": "https://www.just-eat.co.uk/takeaway/nearme/pizza",
"title": "Pizza Near Me: Takeaways & Delivery from best Restaurants |",
"snippet": "Finding Pizza delivery or takeaway near you is easy with Just Eat! Simply enter your delivery address on our website or app, and we ll show you all ..."
},
{
"url": "https://www.seriouseats.com/pizza-recipes-5117816",
"title": "Pizza Recipes",
"snippet": "Our crisp, crunchy, chewy, and cheesy pizza recipes include everything from classic Neapolitan and New York pies to Sicilian and Detroit-style."
},
{
"url": "https://pdx.eater.com/maps/portland-oregon-best-pizza-pizzerias",
"title": "The Best Pizza in Portland, Oregon | Eater Portland",
"snippet": "The pizza residency inside Division’s Little Beast Brewing Beer Garden is a handsome match, as few things go together as well as craft beer and ..."
},
{
"url": "https://tonyspizzanapoletana.com/",
"title": "Tony’s Pizza Napoletana – Tony Gemignani – San Francisco,",
"snippet": "Tony ’ s Pizza Napoletana, founded by 13-time World Pizza Champion Tony Gemignani, was inspired by a pizzeria in Naples, Italy."
},
{
"url": "https://verygoodrecipes.com/pizza",
"title": "Very Good Recipes of Pizza",
"snippet": "Pizza night just got a cozy Italian twist with this cheesy pizza soup! Made with a rich tomato base, savory prosciutto, and golden broiled mozzarella ..."
},
{
"url": "https://www.scottspizzatours.com/",
"title": "New York City Pizza Tours and Events | Scott's Pizza Tours",
"snippet": "Round burnt bubbles on the top and edge of a pizza crust, often associated with Neapolitan pizza and other pizzas baked with extreme top heat."
}
]
}