# Partiful event detail extractor

**Use case:** 

Extract one public Partiful event's schedule, venue, host, cover image, and visible guest counts.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://partiful.com/e/x82ndPsPYCo1qWGuSMUo"
    }
  ],
  "maxItems": 1,
  "enrichDetails": true
}
```

## Output

```json
{
  "eventId": {
    "label": "Event ID"
  },
  "url": {
    "label": "Event URL",
    "format": "link"
  },
  "eventTitle": {
    "label": "Title"
  },
  "startDate": {
    "label": "Starts",
    "format": "date"
  },
  "endDate": {
    "label": "Ends",
    "format": "date"
  },
  "timezone": {
    "label": "Timezone"
  },
  "venueName": {
    "label": "Venue"
  },
  "address": {
    "label": "Address"
  },
  "hostName": {
    "label": "Host"
  },
  "goingGuestCount": {
    "label": "Going"
  },
  "interestedGuestCount": {
    "label": "Interested"
  },
  "status": {
    "label": "Status"
  },
  "imageUrl": {
    "label": "Cover",
    "format": "image"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "date"
  }
}
```

## About this Actor

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