food-delivery-scraping

food-delivery-scraping is a skill for Claude Code, Codex from thirdwatch-dev/scraping-skills. It costs 113 tokens per session (911 once invoked), scanned A, original, MIT.

A guide to collecting restaurant, menu, price, rating, delivery-time, and delivery-fee data from food-delivery platforms such as Swiggy, Zomato, Talabat, Deliveroo, and Noon Food.

In plain words
What is it for?
Use it for menu and price tracking, restaurant coverage checks, market research, and competitor analysis across supported food-delivery services.
Why use it?
It helps you find an existing scraper or choose a way to build one when delivery sites expose data differently or block ordinary requests.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Good fit Use it for menu and price tracking, restaurant coverage checks, market research, and competitor analysis across supported food-delivery services.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/thirdwatch-dev/scraping-skills/food-delivery-scraping
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add thirdwatch-dev/scraping-skills --skill food-delivery-scraping
Clone the repo
git clone --depth 1 https://github.com/thirdwatch-dev/scraping-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for food-delivery-scraping

README.md
[![agentmods](https://agentmods.dev/badge/skills/thirdwatch-dev/scraping-skills/food-delivery-scraping/github.svg)](https://agentmods.dev/skills/thirdwatch-dev/scraping-skills/food-delivery-scraping)
Your own site
<a href="https://agentmods.dev/skills/thirdwatch-dev/scraping-skills/food-delivery-scraping"><img src="https://agentmods.dev/badge/skills/thirdwatch-dev/scraping-skills/food-delivery-scraping/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for food-delivery-scraping

Your own site · 80×15
<a href="https://agentmods.dev/skills/thirdwatch-dev/scraping-skills/food-delivery-scraping"><img src="https://agentmods.dev/badge/skills/thirdwatch-dev/scraping-skills/food-delivery-scraping.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 113 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 911 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00113 $0.00911
Opus 5 $0.00056 $0.00456
Sonnet 5 $0.00023 $0.00182
Haiku 4.5 $0.00011 $0.00091

Measured 12d ago against content hash 8a3bf2304010, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

food-delivery-scraping scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -X POST "https://api.apify.com/v2/acts/thirdwatch~talabat-scraper/run-sync-get-dataset-items?token=YOUR_APIFY_TOKEN" \
skills/food-delivery-scraping/SKILL.md · 55 lines

How it starts

The opening of the file, as written. The whole thing — 55 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Food-Delivery Scraping

Routes food-delivery data needs to a maintained scraper, or to the build path if none fits.

Food-delivery sites split into two technical camps. Some expose a Next.js/data API that hands back full menus over plain HTTP with no proxy — Talabat is the clean example, returning 130+ items per restaurant. Others are client-rendered behind anti-bot (Cloudflare, PerimeterX, Akamai) and need a stealth browser plus a residential proxy; these are usually zone-based or address-based (you pick a delivery area, then list its restaurants). The fields worth pulling are the same across all of them: restaurant name, rating, cuisine, delivery time, delivery fee, plus menu items with prices.

Ready-made scrapers

Target Scraper From Notes
Swiggy (India) Swiggy $0.005/result 30 cities, ratings/cuisines/delivery + menu items
Zomato (India) Zomato $0.002/result 20 cities, ratings, cost-for-two, cuisines
Talabat (Middle East) Talabat $0.002/result 9 countries, full menus (130+ items), no proxy
Deliveroo (UK/UAE/EU) Deliveroo $0.008/result restaurants + full menus with prices
Noon Food (UAE/KSA) Noon Food $0.005/result zone-based restaurants + menus

All billed pay-per-result (free tier included); anti-bot maintenance is handled for you.

Run one

Each scraper runs from the CLI and returns JSON rows directly:

curl -X POST "https://api.apify.com/v2/acts/thirdwatch~talabat-scraper/run-sync-get-dataset-items?token=YOUR_APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
        "country": "ae",
        "search": "burger",
        "maxResults": 25,
        "includeMenu": true
      }'

Get a free token at console.apify.com. Input shapes differ by platform — zone/address-based scrapers (Deliveroo, Noon Food) take a location or area instead of a free-text city. Exact input fields are on each actor's Store page.

Read the full file on GitHub · 55 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 55 lines · 113 tokens per session scan A 8a3bf2304010

Subscribe to this mod's changes

food-delivery-scraping is a skill published in the GitHub repository thirdwatch-dev/scraping-skills (3 stars, last pushed 2mo ago), licensed MIT. It adds 113 tokens to every session and 911 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

ecommerce-full-pipeline

An e-commerce workflow assistant covering product discovery, 1688 product collection, listing on multiple platforms, promotional copy, and short-video creation. 1688 is a Chinese online wholesale marketplace.

anbeime/skill · 96 tokens

paid-ads-amazon

Plan and review Amazon Ads with margin-aware ACoS, product, and search-term guardrails. Use for Amazon advertising, Sponsored Products, Sponsored Brands, Sponsored Display, ASIN targeting, Amazon ACoS, or Amazon Ads performance exports.

nowork-studio/notfair-plugin · 55 tokens

beat-sync-reel

Generates Instagram Reels where product image cuts are synced to audio beats. Accepts audio as a local file, URL, or search query. Uses librosa for beat detection, FFmpeg Ken Burns for scene animation, and Pillow for text overlays. No AI video generation — fully free, fast, and scalable.

gooseworks-ai/goose-skills · 68 tokens

ebay-search

Search eBay listings - find items, auctions, deals, and compare prices.

gooseworks-ai/goose-skills · 19 tokens

einbeziehung-online-clickwrap-browsewrap

Für Einbeziehung Online Clickwrap Browsewrap: ordnet Norm, Beweislast und Gegenargument; Ergebnis: Prüfprodukt mit Risiko und nächstem Schritt.

Klotzkette/claude-fuer-deutsches-recht · 42 tokens

kurzfristige-preiserhoehung-lieferfrist

Für Kurzfristige Preiserhöhung 309: prüft Frist, Form, Zuständigkeit und Eilbedarf; Ergebnis: Fristen- und Risikoampel. Fachgebiet: AGB-Recht-Prüfer. Route: kurzfristige-preiserhoehung-lieferfrist.

Klotzkette/claude-fuer-deutsches-recht · 72 tokens