# Rappi Burger Prices Scraper for Bogota Colombia

**Use case:** 

Extract burger restaurant menus, prices, ratings and delivery details from Rappi in Bogota Colombia. Export structured data to CSV, JSON or Excel.

## Input

```json
{
  "startUrl": "",
  "country": "CO",
  "city": "Bogotá",
  "category": "Hamburguesa",
  "maxItems": 50,
  "withDetails": true
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Logo",
    "format": "image"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "storeId": {
    "label": "Store ID",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "deliveryTime": {
    "label": "Delivery Time",
    "format": "text"
  },
  "deliveryFee": {
    "label": "Delivery Fee",
    "format": "number"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "observedAt": {
    "label": "Scraped",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Rappi Scraper](https://apify.com/scrapers_lat/rappi-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapers_lat/rappi-scraper) to learn more, explore other use cases, and run it yourself.