# Smart Event Scraper

> Smart Event Scraper is a paid API for AI agents from smart-event-scraper-agent.onrender.com, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-13).

Aggregates and filters events from multiple platforms (Eventbrite, Meetup, AllEvents, District, EventsEye, ConferenceAlerts) into a standardized dataset by keyword, category, city, and date range.

## Facts

- Endpoint: POST https://smart-event-scraper-agent.onrender.com/api/scrape-events
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/smart-event-scraper-86084833
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hsa3sCx-cThdYu2IIid4i

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability smart-event-scraper-86084833 -d '<json body>'
```

Example prompt: Find me up to 30 tech events in San Francisco between October 1 and October 31, 2025, pulling from Eventbrite, Meetup, and ConferenceAlerts.

## When to prefer this

Choose this endpoint when you need to aggregate events across multiple platforms (Eventbrite, Meetup, AllEvents, etc.) in a single call rather than querying each platform's API individually. Ideal for discovering events by keyword, category, city, and date range without managing multiple API keys or normalizing disparate response formats.

## Known failure modes

- No events found matching the filters — returns empty array
- Invalid date format causes parsing error
- Requested source platform is temporarily unavailable or rate-limited
- Search query too broad returns maximum limit with low relevance
- Location string not recognized by one or more source platforms

## How this service works

Aggregates events from Eventbrite, Meetup, AllEvents, District, EventsEye, and ConferenceAlerts into one standardized dataset. Filter by keyword, category, city, and date range.

## Output

Returns an array of standardized event objects, each containing the event title, URL, date, venue, price, source platform, category, location, and description — all normalized across the scraped platforms.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "default": 20,
   "maximum": 100,
   "minimum": 0
  },
  "date_to": {
   "type": "string"
  },
  "sources": {
   "type": "array",
   "items": {
    "enum": [
     "Eventbrite",
     "Meetup",
     "AllEvents",
     "District",
     "EventsEye",
     "ConferenceAlerts"
    ],
    "type": "string"
   },
   "default": [
    "Eventbrite",
    "Meetup",
    "AllEvents",
    "EventsEye",
    "ConferenceAlerts"
   ]
  },
  "category": {
   "enum": [
    "tech",
    "business",
    "food",
    "health",
    "arts",
    "education",
    "any"
   ],
   "type": "string",
   "default": "any"
  },
  "location": {
   "type": "string",
   "default": "New York"
  },
  "date_from": {
   "type": "string"
  },
  "search_query": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": [
  {
   "url": "https://www.meetup.com/example-event",
   "date": "2026-09-10",
   "price": "Free",
   "title": "React Meetup NYC",
   "venue": "Tech Hub",
   "source": "Meetup",
   "category": "tech",
   "location": "New York",
   "description": "Monthly React developer meetup."
  }
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/smart-event-scraper-86084833/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from smart-event-scraper-agent.onrender.com](https://www.zero.xyz/host/smart-event-scraper-agent.onrender.com/llms.txt)
