Panda Saudi Arabia scraper API

Scraper module for Panda grocery stores in Saudi Arabia.

Commerce & delivery 2 capabilities stable 91.2% success rate

Capabilities

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

Categories List

panda.categories.list

Fetches all product categories from Panda stores.

Request

curl -X POST https://data.upscrape.com/execute \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"input":{},"capability":"panda.categories.list"}'

Output

Field Type Required Description
categories optional

Products List

panda.products.list

Fetches products for a given category with pagination support.

Request

curl -X POST https://data.upscrape.com/execute \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"input":{"category_id":"568","page":1,"parent_category_id":"526","sort":"default"},"capability":"panda.products.list"}'

Input

Field Type Required Description
category_id string required The category ID to fetch products from.
category_name string optional Optional category display name, preserved in normalized output when raw product category metadata is unavailable.
page integer optional Page number (1-indexed).
parent_category_id string required The parent category ID.
sort string optional Sort order for products.

Output

Field Type Required Description
pagination object optional Pagination metadata.
pagination.current_page integer optional
pagination.total_items integer optional
pagination.total_pages integer optional
products array<object> optional Array of product objects.
raw optional

Related scrapers

Run Panda Saudi Arabia 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