# Disaster Relief GoFundMe Monitor

**Use case:** 

Track public GoFundMe campaigns for disaster relief keywords and combine search discovery with detailed campaign extraction.

## Input

```json
{
  "searchQueries": [
    "flood relief",
    "wildfire relief",
    "hurricane recovery"
  ],
  "startUrls": [
    {
      "url": "https://www.gofundme.com/f/flood-relief-fund-2025"
    }
  ],
  "maxItems": 100,
  "includeDetails": true
}
```

## Output

```json
{
  "campaignUrl": {
    "label": "Campaign URL",
    "format": "link"
  },
  "fundraiserId": {
    "label": "Fundraiser ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "organizerName": {
    "label": "Organizer",
    "format": "text"
  },
  "beneficiaryName": {
    "label": "Beneficiary",
    "format": "text"
  },
  "charityName": {
    "label": "Charity",
    "format": "text"
  },
  "amountRaised": {
    "label": "Raised",
    "format": "number"
  },
  "goalAmount": {
    "label": "Goal",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "donationCount": {
    "label": "Donations",
    "format": "number"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "countryCode": {
    "label": "Country",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "publishedAt": {
    "label": "Published",
    "format": "date"
  },
  "sourceQuery": {
    "label": "Source query",
    "format": "text"
  }
}
```

## About this Actor

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