# Eventective Venue Profile Extractor

**Use case:** 

Extract one Eventective venue profile with address, phone, website, capacity, pricing, images, and profile URL.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.eventective.com/new-york-ny/wedding-venues/"
    }
  ],
  "profileUrls": [
    {
      "url": "https://www.eventective.com/brooklyn-ny/the-arches-788397.html"
    }
  ],
  "maxItems": 5,
  "maxPages": 1,
  "includeDetails": true,
  "requestDelayMs": 250
}
```

## Output

```json
{
  "providerId": {
    "label": "Provider ID"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "profileUrl": {
    "label": "Profile",
    "format": "link"
  },
  "category": {
    "label": "Category"
  },
  "location": {
    "label": "Listing location"
  },
  "address": {
    "label": "Address"
  },
  "phone": {
    "label": "Phone"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "capacity": {
    "label": "Capacity"
  },
  "priceText": {
    "label": "Price"
  },
  "description": {
    "label": "Description"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Eventective Venue & Vendor Scraper](https://apify.com/automation-lab/eventective-venue-vendor-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/eventective-venue-vendor-scraper) to learn more, explore other use cases, and run it yourself.