# CityBikes Bike Share in United Kingdom

**Use case:** 

Find and extract CityBikes Bike Share in United Kingdom. Get structured data with all key fields, ready to export for outreach or analysis.

## Input

```json
{
  "maxItems": 10,
  "country": "United Kingdom",
  "includeStations": false
}
```

## Output

```json
{
  "networkName": {
    "label": "Network",
    "format": "text"
  },
  "networkId": {
    "label": "ID",
    "format": "text"
  },
  "company": {
    "label": "Operator",
    "format": "object"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "latitude": {
    "label": "Lat",
    "format": "number"
  },
  "longitude": {
    "label": "Lon",
    "format": "number"
  },
  "totalStations": {
    "label": "Stations",
    "format": "number"
  },
  "totalFreeBikes": {
    "label": "Free Bikes",
    "format": "number"
  },
  "totalEmptySlots": {
    "label": "Empty Slots",
    "format": "number"
  },
  "stationName": {
    "label": "Station",
    "format": "text"
  },
  "stationId": {
    "label": "Station id"
  },
  "freeBikes": {
    "label": "Available",
    "format": "number"
  },
  "emptySlots": {
    "label": "Docks",
    "format": "number"
  },
  "totalSlots": {
    "label": "Total",
    "format": "number"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "ebikes": {
    "label": "E-bikes",
    "format": "number"
  },
  "normalBikes": {
    "label": "Normal bikes"
  },
  "timestamp": {
    "label": "Timestamp"
  },
  "scrapedAt": {
    "label": "Collected",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [CityBikes Bike Share Scraper](https://apify.com/parseforge/citybikes-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/citybikes-scraper) to learn more, explore other use cases, and run it yourself.