# AnyAPI Meetup Events Scraper

> AnyAPI Meetup Events Scraper is a paid API for AI agents from api.getanyapi.com, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-14).

Scrapes and returns event listings from Meetup.com given a search query or group identifier

## Facts

- Endpoint: POST https://api.getanyapi.com/v1/run/meetup.events
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/anyapi-meetup-events-scraper-3e8d1142
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OsWMjP-y30H2ruJ6BdJQw

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 anyapi-meetup-events-scraper-3e8d1142 -d '<json body>'
```

Example prompt: Can you pull all upcoming tech networking events from Meetup in Austin, Texas for this month so I can see what's going on in the local startup scene?

## When to prefer this

Use this endpoint when you need programmatic access to Meetup event data without a Meetup API subscription, want pay-per-request pricing, or need to integrate Meetup event listings into an agent workflow. Ideal for one-off queries or low-frequency lookups where a monthly subscription is wasteful.

## Known failure modes

- Meetup.com blocks or rate-limits the scraper, returning an error or empty result
- Group or search query returns no events (empty array)
- Invalid group name or search term yields a 404 or error response
- Meetup changes its page structure, causing partial or malformed data
- USDC payment fails or wallet balance insufficient, blocking the request

## How this service works

1,200+ scraping and data APIs behind one key. Pay per request in real dollars. No subscriptions, nothing monthly, nothing to cancel.

## Output

Returns a JSON array of Meetup event objects including event name, date/time, description, location, group name, URL, and RSVP/attendance count for events matching the query.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "title": "Yelp search input",
 "example": {
  "limit": 5,
  "query": "pizza",
  "location": "Chicago, IL"
 },
 "required": [
  "query",
  "location"
 ],
 "properties": {
  "limit": {
   "type": "integer",
   "maximum": 20,
   "minimum": 1,
   "description": "Maximum number of results to return (1 to 20, default 20)."
  },
  "query": {
   "type": "string",
   "description": "Search term or category to look for (e.g. sushi)."
  },
  "location": {
   "type": "string",
   "description": "City and state defining the search area (e.g. San Francisco, CA)."
  }
 },
 "additionalProperties": false
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/anyapi-meetup-events-scraper-3e8d1142/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.getanyapi.com](https://www.zero.xyz/host/api.getanyapi.com/llms.txt)
