# Mojeek — Zapi reference > Performs web searches and returns ranked results with titles, URLs, and snippets. **Base URL:** `https://api.zpi.web.id` **Auth:** Send `x-api-key: YOUR_KEY` header on every request. Get a free key at https://zpi.web.id/dashboard/keys. **Response envelope:** `{ status, message, content }` **Rate limit:** 60 req/min on free tier. **Related:** - Detail page: https://zpi.web.id/api/search-tools/mojeek - Endpoint catalog: https://zpi.web.id/category/search-tools - Concise index: https://zpi.web.id/llms.txt - Full reference: https://zpi.web.id/llms-full.txt --- ## Mojeek **Category:** search-tools · **Slug:** `mojeek` **Detail page:** https://zpi.web.id/api/search-tools/mojeek Performs web searches and returns ranked results with titles, URLs, and snippets. **Tags:** search ### Search Returns web search results for a given query string. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/search-tools:mojeek/search` - **Cache TTL:** 900s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `query` | string | query | yes | Search keyword | | `page` | number | query | no | Result page (default 1, max 50) | **cURL:** ```bash curl "https://api.zpi.web.id/v1/search-tools:mojeek/search?query=pizza&page=1" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/search-tools:mojeek/search?query=pizza&page=1", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/search-tools:mojeek/search?query=pizza&page=1", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "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." } ] } ``` --- _Generated: 2026-08-02T14:27:46.139Z_