HungerStation Market scraper API

Scraper module for HungerStation Market grocery delivery service in Saudi Arabia.

Commerce & delivery 3 capabilities stable 85.2% success rate

Capabilities

Every capability is one POST /execute call that returns structured JSON.

Categories List

hungerstation.categories.list

List product categories for a HungerStation vendor.

Request

curl -X POST https://data.upscrape.com/execute \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"input":{"vendor_id":"a67ba893-443c-41b6-ba70-fc35a9b2f9f3"},"capability":"hungerstation.categories.list"}'

Input

Field Type Required Description
vendor_id string required Vendor external ID

Output

Field Type Required Description
categories optional

Products List

hungerstation.products.list

List products for a HungerStation vendor category.

Request

curl -X POST https://data.upscrape.com/execute \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"input":{"category_id":"29404057-5f67-4280-90f5-5de9110f7abe","lat":24.713,"lng":46.675,"vendor_id":"a67ba893-443c-41b6-ba70-fc35a9b2f9f3"},"capability":"hungerstation.products.list"}'

Input

Field Type Required Description
category_id string required Category ID
lat number required Latitude coordinate
lng number required Longitude coordinate
vendor_id string required Vendor external ID

Output

Field Type Required Description
items array<object> optional
items[].category object optional
items[].product object optional
items[].raw object optional
raw object optional

Vendor Get

hungerstation.vendor.get

Resolve the HungerStation vendor for a specific latitude and longitude.

Request

curl -X POST https://data.upscrape.com/execute \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"input":{"lat":24.713,"lng":46.675},"capability":"hungerstation.vendor.get"}'

Input

Field Type Required Description
lat number required Latitude coordinate
lng number required Longitude coordinate

Output

Field Type Required Description
vendor optional

Related scrapers

Run HungerStation Market in under a minute

Sign in, create an API key, and try any capability in the playground before you write code.

Get an API key