# Meet New Friends In Your Area

**Use case:** 

Find public Meetup groups for "meet new friends in your area" in San Francisco, United States. This task searches groups by keyword and location and returns up to 20 public group records with names, locations, member counts, and source links.

## Input

```json
{
  "resultType": "group",
  "eventDiscoveryMethod": "keywordLocation",
  "groupDiscoveryMethod": "keywordLocation",
  "keywords": [
    "meet new friends in your area"
  ],
  "location": {
    "city": "San Francisco",
    "country": "United States"
  },
  "maxItems": 20
}
```

## Output

```json
{
  "resultType": {
    "label": "Record type",
    "format": "text"
  },
  "eventId": {
    "label": "Event ID",
    "format": "text"
  },
  "groupId": {
    "label": "Group ID",
    "format": "text"
  },
  "memberId": {
    "label": "Member ID",
    "format": "text"
  },
  "title": {
    "label": "Event title",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "url": {
    "label": "Source page",
    "format": "link"
  },
  "profileUrl": {
    "label": "Profile page",
    "format": "link"
  },
  "startTime": {
    "label": "Start time",
    "format": "date"
  },
  "eventType": {
    "label": "Event type",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "object"
  },
  "memberCount": {
    "label": "Members",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "role": {
    "label": "Role",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Meetup Events Scraper](https://apify.com/maximedupre/meetup.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/maximedupre/meetup.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/maximedupre/meetup.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
