# Scrape a GoFundMe campaign's details & donations

**Use case:** 

Scrape any GoFundMe campaign by URL: goal, amount raised, donor count, story, beneficiary plus the recent donations with names, amounts and dates.

## Input

```json
{
  "countries": [
    "US"
  ],
  "startUrls": [
    "https://www.gofundme.com/f/support-our-community"
  ],
  "includeDetails": true,
  "includeDonations": true,
  "maxDonations": 100,
  "maxResults": 100,
  "monitorMode": false,
  "monitorStoreName": "gofundme-monitor",
  "maxConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "title": {
    "label": "Campaign"
  },
  "raisedAmount": {
    "label": "Raised"
  },
  "goalAmount": {
    "label": "Goal"
  },
  "percentFunded": {
    "label": "% Funded"
  },
  "donationCount": {
    "label": "Donations"
  },
  "heartCount": {
    "label": "Hearts"
  },
  "socialShareCount": {
    "label": "Shares"
  },
  "commentCount": {
    "label": "Comments"
  },
  "category": {
    "label": "Category"
  },
  "charityName": {
    "label": "Charity"
  },
  "createdAt": {
    "label": "Created"
  },
  "url": {
    "label": "URL"
  }
}
```

## About this Actor

This example demonstrates how to use [GoFundMe Scraper - Campaigns, Donations & Trends](https://apify.com/scrapesage/gofundme-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/gofundme-scraper) to learn more, explore other use cases, and run it yourself.