# FabCrawl — Hong Kong Restaurant Deals > FabCrawl is a directory of restaurant deals, happy hours, lunch specials, brunch offers, and dining promotions in Hong Kong. ## What This Site Contains - Restaurant listings with addresses, phone numbers, cuisine types, and locations across Hong Kong districts - Active deals including: happy hours, lunch specials, set menus, brunch offers, daily specials, seasonal promotions - All prices in HKD (Hong Kong Dollars) ## Restaurants ## Key Pages - [All Restaurants](http://localhost:3000/restaurants) - [All Deals](http://localhost:3000/deals) - [Happy Hours](http://localhost:3000/deals/happy-hour) - [Lunch Specials](http://localhost:3000/deals/lunch-special) - [Brunch Deals](http://localhost:3000/deals/brunch) - [Search](http://localhost:3000/search) ## API Access The FabCrawl API is publicly accessible for programmatic access: - Search deals: GET http://localhost:3000/api/search?district=Central&type=happy_hour - List restaurants: GET http://localhost:3000/api/restaurants - Restaurant details: GET http://localhost:3000/api/restaurants/{id} - Restaurant deals: GET http://localhost:3000/api/restaurants/{id}/deals - Districts: GET http://localhost:3000/api/districts ## Data Format All API responses return JSON. Deals include: title, description, deal_type (happy_hour|lunch_special|seasonal|daily|brunch|set_menu|other), price_info (HKD), recurring_days (1=Mon..7=Sun), time_start, time_end. Search supports geo queries with lat, lng, and radius parameters.