# Gym and Fitness Center Data for London

**Use case:** 

Extract a list of gyms and fitness centers in London, including names, addresses, phones, and websites. Get detailed business info in CSV or JSON.

## Input

```json
{
  "searchMode": "city",
  "city": "London, UK",
  "bboxSouth": 51.47,
  "bboxWest": -0.15,
  "bboxNorth": 51.53,
  "bboxEast": -0.07,
  "centerLat": 51.5074,
  "centerLng": -0.1278,
  "radiusMeters": 1000,
  "categories": [
    "fitness_centre",
    "sports_centre",
    "swimming_pool"
  ],
  "requireName": true,
  "requireAddress": false,
  "maxResults": 300,
  "queryConcurrency": 3
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "subcategory": {
    "label": "Subcategory",
    "format": "text"
  },
  "fullAddress": {
    "label": "Full Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "openingHours": {
    "label": "Opening Hours",
    "format": "text"
  },
  "lat": {
    "label": "Latitude",
    "format": "number"
  },
  "lng": {
    "label": "Longitude",
    "format": "number"
  },
  "osmUrl": {
    "label": "OSM Link",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [OpenStreetMap Scraper — Business & POI Data, No Key](https://apify.com/logiover/openstreetmap-business-poi-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/openstreetmap-business-poi-scraper) to learn more, explore other use cases, and run it yourself.