From 1a8b84c3dc3640b53f03a9e751014caffada579a Mon Sep 17 00:00:00 2001 From: nlarge-google Date: Sat, 11 Sep 2021 03:39:31 +0000 Subject: [PATCH 1/4] feat: san-francisco bikeshare stations pipeline --- .../Dockerfile | 38 ++++ .../csv_transform.py | 181 ++++++++++++++++++ .../requirements.txt | 3 + .../_terraform/bikeshare_stations_pipeline.tf | 39 ++++ .../_terraform/provider.tf | 28 +++ ...an_francisco_bikeshare_stations_dataset.tf | 26 +++ .../_terraform/variables.tf | 23 +++ .../bikeshare_stations_dag.py | 157 +++++++++++++++ .../bikeshare_stations/pipeline.yaml | 128 +++++++++++++ .../dataset.yaml | 27 +++ 10 files changed, 650 insertions(+) create mode 100644 datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub_bikeshare_stations/Dockerfile create mode 100644 datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub_bikeshare_stations/csv_transform.py create mode 100644 datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub_bikeshare_stations/requirements.txt create mode 100644 datasets/san_francisco_bikeshare_stations/_terraform/bikeshare_stations_pipeline.tf create mode 100644 datasets/san_francisco_bikeshare_stations/_terraform/provider.tf create mode 100644 datasets/san_francisco_bikeshare_stations/_terraform/san_francisco_bikeshare_stations_dataset.tf create mode 100644 datasets/san_francisco_bikeshare_stations/_terraform/variables.tf create mode 100644 datasets/san_francisco_bikeshare_stations/bikeshare_stations/bikeshare_stations_dag.py create mode 100644 datasets/san_francisco_bikeshare_stations/bikeshare_stations/pipeline.yaml create mode 100644 datasets/san_francisco_bikeshare_stations/dataset.yaml diff --git a/datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub_bikeshare_stations/Dockerfile b/datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub_bikeshare_stations/Dockerfile new file mode 100644 index 000000000..85af90570 --- /dev/null +++ b/datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub_bikeshare_stations/Dockerfile @@ -0,0 +1,38 @@ +# Copyright 2021 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# The base image for this build +# FROM gcr.io/google.com/cloudsdktool/cloud-sdk:slim +FROM python:3.8 + +# Allow statements and log messages to appear in Cloud logs +ENV PYTHONUNBUFFERED True + +# Copy the requirements file into the image +COPY requirements.txt ./ + +# Install the packages specified in the requirements file +RUN python3 -m pip install --no-cache-dir -r requirements.txt + +# The WORKDIR instruction sets the working directory for any RUN, CMD, +# ENTRYPOINT, COPY and ADD instructions that follow it in the Dockerfile. +# If the WORKDIR doesn’t exist, it will be created even if it’s not used in +# any subsequent Dockerfile instruction +WORKDIR /custom + +# Copy the specific data processing script/s in the image under /custom/* +COPY ./csv_transform.py . + +# Command to run the data processing script when the container is run +CMD ["python3", "csv_transform.py"] diff --git a/datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub_bikeshare_stations/csv_transform.py b/datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub_bikeshare_stations/csv_transform.py new file mode 100644 index 000000000..24a8f9304 --- /dev/null +++ b/datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub_bikeshare_stations/csv_transform.py @@ -0,0 +1,181 @@ +# Copyright 2021 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import datetime +import logging +import os +import pathlib +from shutil import copyfile + +import pandas as pd +import requests +from google.cloud import storage + + +def main( + source_url: str, + source_file: pathlib.Path, + target_file: pathlib.Path, + target_gcs_bucket: str, + target_gcs_path: str, +) -> None: + + logging.info(f"San Francisco Bikeshare Stations process started") + + logging.info("creating 'files' folder") + pathlib.Path("./files").mkdir(parents=True, exist_ok=True) + logging.info("creating 'templates' folder") + pathlib.Path("./templates").mkdir(parents=True, exist_ok=True) + + logging.info(f"Extracting URL for stations: {source_url}") + source_file_stations_csv = str(source_file).replace(".csv", "") + "_stations.csv" + source_file_stations_json = str(source_file).replace(".csv", "") + "_stations.json" + + logging.info(f"Downloading stations json file {source_url}") + download_file_json( + source_url, source_file_stations_json, source_file_stations_csv + ) + copyfile(source_file_stations_json, "./templates/bikeshare_stations.json") + + logging.info(f"Opening stations file {source_file_stations_csv}") + df = pd.read_csv(source_file_stations_csv) + + logging.info(f"Transformation Process Starting.. {source_file}") + + logging.info(f"Renaming Columns {source_file_stations_csv}") + rename_headers(df) + + df = df[ df["station_id"] != "" ] + df = df[ df["name"] != "" ] + df = df[ df["lat"] != "" ] + df = df[ df["lon"] != "" ] + + df["station_geom"] = ( + "POINT(" + + df["lon"][:].astype("string") + + " " + + df["lat"][:].astype("string") + + ")" + ) + + logging.info("Re-ordering Headers") + df = df[ + [ + "station_id", + "name", + "short_name", + "lat", + "lon", + "region_id", + "rental_methods", + "capacity", + "external_id", + "eightd_has_key_dispenser", + "has_kiosk", + "station_geom" + ] + ] + + logging.info(f"Transformation Process complete .. {source_file}") + + logging.info(f"Saving to output file.. {target_file}") + + try: + save_to_new_file(df, file_path=str(target_file)) + except Exception as e: + logging.error(f"Error saving output file: {e}.") + + logging.info( + f"Uploading output file to.. gs://{target_gcs_bucket}/{target_gcs_path}" + ) + upload_file_to_gcs(target_file, target_gcs_bucket, target_gcs_path) + + logging.info(f"San Francisco Bikeshare Stations process completed") + + +def datetime_from_int(dt_int: int) -> str: + return datetime.datetime.fromtimestamp(dt_int).strftime("%Y-%m-%d %H:%M:%S") + + +def convert_dt_format(date_str: str, time_str: str) -> str: + return str(datetime.datetime.strptime(date_str, "%m/%d/%Y").date()) + " " + time_str + + +def rename_headers(df: pd.DataFrame) -> None: + header_names = { + "data.stations.station_id": "station_id", + "data.stations.name": "name", + "data.stations.short_name": "short_name", + "data.stations.lat": "lat", + "data.stations.lon": "lon", + "data.stations.region_id": "region_id", + "data.stations.rental_methods": "rental_methods", + "data.stations.capacity": "capacity", + "data.stations.eightd_has_key_dispenser": "eightd_has_key_dispenser", + "data.stations.has_kiosk": "has_kiosk", + "data.stations.external_id": "external_id", + } + + df.rename(columns=header_names, inplace=True) + +def save_to_new_file(df, file_path) -> None: + df.to_csv(file_path, index=False) + + +def download_file_json( + source_url: str, source_file_json: pathlib.Path, source_file_csv: pathlib.Path +) -> None: + + # this function extracts the json from a source url and creates + # a csv file from that data to be used as an input file + + # download json url into object r + try: + r = requests.get(source_url, stream=True) + if r.status_code != 200: + logging.error(f"Couldn't download {source_url}: {r.text}") + except ValueError: # includes simplejson.decoder.JSONDecodeError + print(f"Downloading JSON file {source_url} has failed {r.text}") + + # push object r (json) into json file + try: + with open(source_file_json, "wb") as f: + for chunk in r: + f.write(chunk) + except ValueError: + print(f"Writing JSON to {source_file_json} has failed") + + # read json file into object and write out to csv + df = pd.read_json(source_file_json)["data"]["stations"] + df = pd.DataFrame(df) + df.to_csv(source_file_csv, index=False) + + +def upload_file_to_gcs(file_path: pathlib.Path, gcs_bucket: str, gcs_path: str) -> None: + storage_client = storage.Client() + bucket = storage_client.bucket(gcs_bucket) + blob = bucket.blob(gcs_path) + blob.upload_from_filename(file_path) + + +if __name__ == "__main__": + logging.getLogger().setLevel(logging.INFO) + + main( + source_url=os.environ["SOURCE_URL"], + source_file=pathlib.Path(os.environ["SOURCE_FILE"]).expanduser(), + target_file=pathlib.Path(os.environ["TARGET_FILE"]).expanduser(), + target_gcs_bucket=os.environ["TARGET_GCS_BUCKET"], + target_gcs_path=os.environ["TARGET_GCS_PATH"], + ) diff --git a/datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub_bikeshare_stations/requirements.txt b/datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub_bikeshare_stations/requirements.txt new file mode 100644 index 000000000..f36704793 --- /dev/null +++ b/datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub_bikeshare_stations/requirements.txt @@ -0,0 +1,3 @@ +requests +pandas +google-cloud-storage diff --git a/datasets/san_francisco_bikeshare_stations/_terraform/bikeshare_stations_pipeline.tf b/datasets/san_francisco_bikeshare_stations/_terraform/bikeshare_stations_pipeline.tf new file mode 100644 index 000000000..7935b5868 --- /dev/null +++ b/datasets/san_francisco_bikeshare_stations/_terraform/bikeshare_stations_pipeline.tf @@ -0,0 +1,39 @@ +/** + * Copyright 2021 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + + +resource "google_bigquery_table" "bikeshare_stations" { + project = var.project_id + dataset_id = "san_francisco_bikeshare_stations" + table_id = "bikeshare_stations" + + description = "san francisco bikeshare stations" + + + + + depends_on = [ + google_bigquery_dataset.san_francisco_bikeshare_stations + ] +} + +output "bigquery_table-bikeshare_stations-table_id" { + value = google_bigquery_table.bikeshare_stations.table_id +} + +output "bigquery_table-bikeshare_stations-id" { + value = google_bigquery_table.bikeshare_stations.id +} diff --git a/datasets/san_francisco_bikeshare_stations/_terraform/provider.tf b/datasets/san_francisco_bikeshare_stations/_terraform/provider.tf new file mode 100644 index 000000000..23ab87dcd --- /dev/null +++ b/datasets/san_francisco_bikeshare_stations/_terraform/provider.tf @@ -0,0 +1,28 @@ +/** + * Copyright 2021 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + + +provider "google" { + project = var.project_id + impersonate_service_account = var.impersonating_acct + region = var.region +} + +data "google_client_openid_userinfo" "me" {} + +output "impersonating-account" { + value = data.google_client_openid_userinfo.me.email +} diff --git a/datasets/san_francisco_bikeshare_stations/_terraform/san_francisco_bikeshare_stations_dataset.tf b/datasets/san_francisco_bikeshare_stations/_terraform/san_francisco_bikeshare_stations_dataset.tf new file mode 100644 index 000000000..1c41bc746 --- /dev/null +++ b/datasets/san_francisco_bikeshare_stations/_terraform/san_francisco_bikeshare_stations_dataset.tf @@ -0,0 +1,26 @@ +/** + * Copyright 2021 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + + +resource "google_bigquery_dataset" "san_francisco_bikeshare_stations" { + dataset_id = "san_francisco_bikeshare_stations" + project = var.project_id + description = "san_francisco_bikeshare_stations" +} + +output "bigquery_dataset-san_francisco_bikeshare_stations-dataset_id" { + value = google_bigquery_dataset.san_francisco_bikeshare_stations.dataset_id +} diff --git a/datasets/san_francisco_bikeshare_stations/_terraform/variables.tf b/datasets/san_francisco_bikeshare_stations/_terraform/variables.tf new file mode 100644 index 000000000..c3ec7c506 --- /dev/null +++ b/datasets/san_francisco_bikeshare_stations/_terraform/variables.tf @@ -0,0 +1,23 @@ +/** + * Copyright 2021 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + + +variable "project_id" {} +variable "bucket_name_prefix" {} +variable "impersonating_acct" {} +variable "region" {} +variable "env" {} + diff --git a/datasets/san_francisco_bikeshare_stations/bikeshare_stations/bikeshare_stations_dag.py b/datasets/san_francisco_bikeshare_stations/bikeshare_stations/bikeshare_stations_dag.py new file mode 100644 index 000000000..5db5c4fb3 --- /dev/null +++ b/datasets/san_francisco_bikeshare_stations/bikeshare_stations/bikeshare_stations_dag.py @@ -0,0 +1,157 @@ +# Copyright 2021 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + + +from airflow import DAG +from airflow.providers.cncf.kubernetes.operators import kubernetes_pod +from airflow.providers.google.cloud.transfers import gcs_to_bigquery + +default_args = { + "owner": "Google", + "depends_on_past": False, + "start_date": "2021-03-01", +} + + +with DAG( + dag_id="san_francisco_bikeshare_stations.bikeshare_stations", + default_args=default_args, + max_active_runs=1, + schedule_interval="@daily", + catchup=False, + default_view="graph", +) as dag: + + # Run CSV transform within kubernetes pod + transform_csv = kubernetes_pod.KubernetesPodOperator( + task_id="transform_csv", + name="bikeshare_stations", + namespace="default", + affinity={ + "nodeAffinity": { + "requiredDuringSchedulingIgnoredDuringExecution": { + "nodeSelectorTerms": [ + { + "matchExpressions": [ + { + "key": "cloud.google.com/gke-nodepool", + "operator": "In", + "values": ["pool-e2-standard-4"], + } + ] + } + ] + } + } + }, + image_pull_policy="Always", + image="{{ var.json.san_francisco_bikeshare_stations.container_registry.run_csv_transform_kub_bikeshare_stations }}", + env_vars={ + "SOURCE_URL": "https://gbfs.baywheels.com/gbfs/fr/station_information.json", + "SOURCE_FILE": "files/data.csv", + "TARGET_FILE": "files/data_output.csv", + "TARGET_GCS_BUCKET": "{{ var.values.composer_bucket }}", + "TARGET_GCS_PATH": "data/san_francisco_bikeshare_stations/bikeshare_stations/data_output.csv", + }, + resources={"limit_memory": "2G", "limit_cpu": "1"}, + ) + + # Task to load CSV data to a BigQuery table + load_to_bq = gcs_to_bigquery.GCSToBigQueryOperator( + task_id="load_to_bq", + bucket="{{ var.values.composer_bucket }}", + source_objects=[ + "data/san_francisco_bikeshare_stations/bikeshare_stations/data_output.csv" + ], + source_format="CSV", + destination_project_dataset_table="san_francisco_bikeshare_stations.bikeshare_stations", + skip_leading_rows=1, + write_disposition="WRITE_TRUNCATE", + schema_fields=[ + { + "name": "station_id", + "type": "INTEGER", + "description": "Unique identifier of a station.", + "mode": "REQUIRED", + }, + { + "name": "name", + "type": "STRING", + "description": "Public name of the station", + "mode": "REQUIRED", + }, + { + "name": "short_name", + "type": "STRING", + "description": "Short name or other type of identifier, as used by the data publisher", + "mode": "NULLABLE", + }, + { + "name": "lat", + "type": "FLOAT", + "description": "The latitude of station. The field value must be a valid WGS 84 latitude in decimal degrees format. See: http://en.wikipedia.org/wiki/World_Geodetic_System, https://en.wikipedia.org/wiki/Decimal_degrees", + "mode": "REQUIRED", + }, + { + "name": "lon", + "type": "FLOAT", + "description": "The longitude of station. The field value must be a valid WGS 84 longitude in decimal degrees format. See: http://en.wikipedia.org/wiki/World_Geodetic_System, https://en.wikipedia.org/wiki/Decimal_degrees", + "mode": "REQUIRED", + }, + { + "name": "region_id", + "type": "INTEGER", + "description": "ID of the region where station is located", + "mode": "NULLABLE", + }, + { + "name": "rental_methods", + "type": "STRING", + "description": "Array of enumerables containing the payment methods accepted at this station. Current valid values (in CAPS) are: KEY (i.e. operator issued bike key / fob / card) CREDITCARD PAYPASS APPLEPAY ANDROIDPAY TRANSITCARD ACCOUNTNUMBER PHONE This list is intended to be as comprehensive at the time of publication as possible but is subject to change, as defined in File Requirements above", + "mode": "NULLABLE", + }, + { + "name": "capacity", + "type": "INTEGER", + "description": "Number of total docking points installed at this station, both available and unavailable", + "mode": "NULLABLE", + }, + { + "name": "external_id", + "type": "STRING", + "description": "", + "mode": "NULLABLE", + }, + { + "name": "eightd_has_key_dispenser", + "type": "BOOLEAN", + "description": "", + "mode": "NULLABLE", + }, + { + "name": "has_kiosk", + "type": "BOOLEAN", + "description": "", + "mode": "NULLABLE", + }, + { + "name": "station_geom", + "type": "GEOGRAPHY", + "description": "", + "mode": "NULLABLE", + }, + ], + ) + + transform_csv >> load_to_bq diff --git a/datasets/san_francisco_bikeshare_stations/bikeshare_stations/pipeline.yaml b/datasets/san_francisco_bikeshare_stations/bikeshare_stations/pipeline.yaml new file mode 100644 index 000000000..c0c4f016d --- /dev/null +++ b/datasets/san_francisco_bikeshare_stations/bikeshare_stations/pipeline.yaml @@ -0,0 +1,128 @@ +# Copyright 2021 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +--- +resources: + + - type: bigquery_table + table_id: "bikeshare_stations" + description: "san francisco bikeshare stations" + +dag: + airflow_version: 2 + initialize: + dag_id: bikeshare_stations + default_args: + owner: "Google" + depends_on_past: False + start_date: '2021-03-01' + max_active_runs: 1 + schedule_interval: "@daily" # run once a week at Sunday 12am + catchup: False + default_view: graph + + tasks: + + - operator: "KubernetesPodOperator" + description: "Run CSV transform within kubernetes pod" + + args: + + task_id: "transform_csv" + name: "bikeshare_stations" + namespace: "default" + affinity: + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: cloud.google.com/gke-nodepool + operator: In + values: + - "pool-e2-standard-4" + image_pull_policy: "Always" + image: "{{ var.json.san_francisco_bikeshare_stations.container_registry.run_csv_transform_kub_bikeshare_stations }}" + env_vars: + SOURCE_URL: "https://gbfs.baywheels.com/gbfs/fr/station_information.json" + SOURCE_FILE: "files/data.csv" + TARGET_FILE: "files/data_output.csv" + TARGET_GCS_BUCKET: "{{ var.values.composer_bucket }}" + TARGET_GCS_PATH: "data/san_francisco_bikeshare_stations/bikeshare_stations/data_output.csv" + resources: + limit_memory: "2G" + limit_cpu: "1" + + - operator: "GoogleCloudStorageToBigQueryOperator" + description: "Task to load CSV data to a BigQuery table" + + args: + task_id: "load_to_bq" + bucket: "{{ var.values.composer_bucket }}" + source_objects: ["data/san_francisco_bikeshare_stations/bikeshare_stations/data_output.csv"] + source_format: "CSV" + destination_project_dataset_table: "san_francisco_bikeshare_stations.bikeshare_stations" + skip_leading_rows: 1 + write_disposition: "WRITE_TRUNCATE" + schema_fields: + - name: "station_id" + type: "INTEGER" + description: "Unique identifier of a station." + mode: "REQUIRED" + - name: "name" + type: "STRING" + description: "Public name of the station" + mode: "REQUIRED" + - name: "short_name" + type: "STRING" + description: "Short name or other type of identifier, as used by the data publisher" + mode: "NULLABLE" + - name: "lat" + type: "FLOAT" + description: "The latitude of station. The field value must be a valid WGS 84 latitude in decimal degrees format. See: http://en.wikipedia.org/wiki/World_Geodetic_System, https://en.wikipedia.org/wiki/Decimal_degrees" + mode: "REQUIRED" + - name: "lon" + type: "FLOAT" + description: "The longitude of station. The field value must be a valid WGS 84 longitude in decimal degrees format. See: http://en.wikipedia.org/wiki/World_Geodetic_System, https://en.wikipedia.org/wiki/Decimal_degrees" + mode: "REQUIRED" + - name: "region_id" + type: "INTEGER" + description: "ID of the region where station is located" + mode: "NULLABLE" + - name: "rental_methods" + type: "STRING" + description: "Array of enumerables containing the payment methods accepted at this station. Current valid values (in CAPS) are: KEY (i.e. operator issued bike key / fob / card) CREDITCARD PAYPASS APPLEPAY ANDROIDPAY TRANSITCARD ACCOUNTNUMBER PHONE This list is intended to be as comprehensive at the time of publication as possible but is subject to change, as defined in File Requirements above" + mode: "NULLABLE" + - name: "capacity" + type: "INTEGER" + description: "Number of total docking points installed at this station, both available and unavailable" + mode: "NULLABLE" + - name: "external_id" + type: "STRING" + description: "" + mode: "NULLABLE" + - name: "eightd_has_key_dispenser" + type: "BOOLEAN" + description: "" + mode: "NULLABLE" + - name: "has_kiosk" + type: "BOOLEAN" + description: "" + mode: "NULLABLE" + - name: "station_geom" + type: "GEOGRAPHY" + description: "" + mode: "NULLABLE" + + graph_paths: + - "transform_csv >> load_to_bq" diff --git a/datasets/san_francisco_bikeshare_stations/dataset.yaml b/datasets/san_francisco_bikeshare_stations/dataset.yaml new file mode 100644 index 000000000..5f1056234 --- /dev/null +++ b/datasets/san_francisco_bikeshare_stations/dataset.yaml @@ -0,0 +1,27 @@ +# Copyright 2021 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +dataset: + name: san_francisco_bikeshare_stations + friendly_name: ~ + description: ~ + dataset_sources: ~ + terms_of_use: ~ + + +resources: + + - type: bigquery_dataset + dataset_id: san_francisco_bikeshare_stations + description: san_francisco_bikeshare_stations From a17651d41c7fe3226c192e347beec94d260cd5c8 Mon Sep 17 00:00:00 2001 From: nlarge-google Date: Wed, 22 Sep 2021 05:27:04 +0000 Subject: [PATCH 2/4] fix: Now works in Airflow 2 --- .../Dockerfile | 0 .../csv_transform.py | 45 ++++++++++--------- .../requirements.txt | 0 .../bikeshare_stations_dag.py | 11 ++--- .../bikeshare_stations/pipeline.yaml | 19 ++++---- templates/bikeshare_stations.json | 1 + 6 files changed, 40 insertions(+), 36 deletions(-) rename datasets/san_francisco_bikeshare_stations/_images/{run_csv_transform_kub_bikeshare_stations => run_csv_transform_kub}/Dockerfile (100%) rename datasets/san_francisco_bikeshare_stations/_images/{run_csv_transform_kub_bikeshare_stations => run_csv_transform_kub}/csv_transform.py (81%) rename datasets/san_francisco_bikeshare_stations/_images/{run_csv_transform_kub_bikeshare_stations => run_csv_transform_kub}/requirements.txt (100%) create mode 100644 templates/bikeshare_stations.json diff --git a/datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub_bikeshare_stations/Dockerfile b/datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub/Dockerfile similarity index 100% rename from datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub_bikeshare_stations/Dockerfile rename to datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub/Dockerfile diff --git a/datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub_bikeshare_stations/csv_transform.py b/datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub/csv_transform.py similarity index 81% rename from datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub_bikeshare_stations/csv_transform.py rename to datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub/csv_transform.py index 24a8f9304..ed7bedbf2 100644 --- a/datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub_bikeshare_stations/csv_transform.py +++ b/datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub/csv_transform.py @@ -13,6 +13,7 @@ # limitations under the License. import datetime +import json import logging import os import pathlib @@ -24,27 +25,27 @@ def main( - source_url: str, + source_url_json: str, source_file: pathlib.Path, target_file: pathlib.Path, target_gcs_bucket: str, target_gcs_path: str, ) -> None: - logging.info(f"San Francisco Bikeshare Stations process started") + logging.info("San Francisco Bikeshare Stations process started") logging.info("creating 'files' folder") pathlib.Path("./files").mkdir(parents=True, exist_ok=True) logging.info("creating 'templates' folder") pathlib.Path("./templates").mkdir(parents=True, exist_ok=True) - logging.info(f"Extracting URL for stations: {source_url}") + logging.info(f"Extracting URL for stations: {source_url_json}") source_file_stations_csv = str(source_file).replace(".csv", "") + "_stations.csv" source_file_stations_json = str(source_file).replace(".csv", "") + "_stations.json" - logging.info(f"Downloading stations json file {source_url}") + logging.info(f"Downloading stations json file {source_url_json}") download_file_json( - source_url, source_file_stations_json, source_file_stations_csv + source_url_json, source_file_stations_json, source_file_stations_csv ) copyfile(source_file_stations_json, "./templates/bikeshare_stations.json") @@ -56,10 +57,10 @@ def main( logging.info(f"Renaming Columns {source_file_stations_csv}") rename_headers(df) - df = df[ df["station_id"] != "" ] - df = df[ df["name"] != "" ] - df = df[ df["lat"] != "" ] - df = df[ df["lon"] != "" ] + df = df[df["station_id"] != ""] + df = df[df["name"] != ""] + df = df[df["lat"] != ""] + df = df[df["lon"] != ""] df["station_geom"] = ( "POINT(" @@ -69,6 +70,8 @@ def main( + ")" ) + df["region_id"] = df["region_id"].astype("Int64") + logging.info("Re-ordering Headers") df = df[ [ @@ -83,7 +86,7 @@ def main( "external_id", "eightd_has_key_dispenser", "has_kiosk", - "station_geom" + "station_geom", ] ] @@ -101,7 +104,7 @@ def main( ) upload_file_to_gcs(target_file, target_gcs_bucket, target_gcs_path) - logging.info(f"San Francisco Bikeshare Stations process completed") + logging.info("San Francisco Bikeshare Stations process completed") def datetime_from_int(dt_int: int) -> str: @@ -129,24 +132,20 @@ def rename_headers(df: pd.DataFrame) -> None: df.rename(columns=header_names, inplace=True) + def save_to_new_file(df, file_path) -> None: df.to_csv(file_path, index=False) def download_file_json( - source_url: str, source_file_json: pathlib.Path, source_file_csv: pathlib.Path + source_url_json: str, source_file_json: str, source_file_csv: str ) -> None: # this function extracts the json from a source url and creates # a csv file from that data to be used as an input file # download json url into object r - try: - r = requests.get(source_url, stream=True) - if r.status_code != 200: - logging.error(f"Couldn't download {source_url}: {r.text}") - except ValueError: # includes simplejson.decoder.JSONDecodeError - print(f"Downloading JSON file {source_url} has failed {r.text}") + r = requests.get(source_url_json + ".json", stream=True) # push object r (json) into json file try: @@ -156,9 +155,11 @@ def download_file_json( except ValueError: print(f"Writing JSON to {source_file_json} has failed") - # read json file into object and write out to csv - df = pd.read_json(source_file_json)["data"]["stations"] - df = pd.DataFrame(df) + f = open( + source_file_json.strip(), + ) + json_data = json.load(f) + df = pd.DataFrame(json_data["data"]["stations"]) df.to_csv(source_file_csv, index=False) @@ -173,7 +174,7 @@ def upload_file_to_gcs(file_path: pathlib.Path, gcs_bucket: str, gcs_path: str) logging.getLogger().setLevel(logging.INFO) main( - source_url=os.environ["SOURCE_URL"], + source_url_json=os.environ["SOURCE_URL_JSON"], source_file=pathlib.Path(os.environ["SOURCE_FILE"]).expanduser(), target_file=pathlib.Path(os.environ["TARGET_FILE"]).expanduser(), target_gcs_bucket=os.environ["TARGET_GCS_BUCKET"], diff --git a/datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub_bikeshare_stations/requirements.txt b/datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub/requirements.txt similarity index 100% rename from datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub_bikeshare_stations/requirements.txt rename to datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub/requirements.txt diff --git a/datasets/san_francisco_bikeshare_stations/bikeshare_stations/bikeshare_stations_dag.py b/datasets/san_francisco_bikeshare_stations/bikeshare_stations/bikeshare_stations_dag.py index 5db5c4fb3..0fe57da7b 100644 --- a/datasets/san_francisco_bikeshare_stations/bikeshare_stations/bikeshare_stations_dag.py +++ b/datasets/san_francisco_bikeshare_stations/bikeshare_stations/bikeshare_stations_dag.py @@ -56,12 +56,12 @@ } }, image_pull_policy="Always", - image="{{ var.json.san_francisco_bikeshare_stations.container_registry.run_csv_transform_kub_bikeshare_stations }}", + image="{{ var.json.san_francisco_bikeshare_stations.container_registry.run_csv_transform_kub }}", env_vars={ - "SOURCE_URL": "https://gbfs.baywheels.com/gbfs/fr/station_information.json", + "SOURCE_URL_JSON": "https://gbfs.baywheels.com/gbfs/fr/station_information", "SOURCE_FILE": "files/data.csv", "TARGET_FILE": "files/data_output.csv", - "TARGET_GCS_BUCKET": "{{ var.values.composer_bucket }}", + "TARGET_GCS_BUCKET": "{{ var.value.composer_bucket }}", "TARGET_GCS_PATH": "data/san_francisco_bikeshare_stations/bikeshare_stations/data_output.csv", }, resources={"limit_memory": "2G", "limit_cpu": "1"}, @@ -70,13 +70,14 @@ # Task to load CSV data to a BigQuery table load_to_bq = gcs_to_bigquery.GCSToBigQueryOperator( task_id="load_to_bq", - bucket="{{ var.values.composer_bucket }}", + bucket="{{ var.value.composer_bucket }}", source_objects=[ "data/san_francisco_bikeshare_stations/bikeshare_stations/data_output.csv" ], source_format="CSV", - destination_project_dataset_table="san_francisco_bikeshare_stations.bikeshare_stations", + destination_project_dataset_table="san_francisco.bikeshare_station_info", skip_leading_rows=1, + allow_quoted_newlines=True, write_disposition="WRITE_TRUNCATE", schema_fields=[ { diff --git a/datasets/san_francisco_bikeshare_stations/bikeshare_stations/pipeline.yaml b/datasets/san_francisco_bikeshare_stations/bikeshare_stations/pipeline.yaml index c0c4f016d..cdfec1d04 100644 --- a/datasets/san_francisco_bikeshare_stations/bikeshare_stations/pipeline.yaml +++ b/datasets/san_francisco_bikeshare_stations/bikeshare_stations/pipeline.yaml @@ -52,12 +52,12 @@ dag: values: - "pool-e2-standard-4" image_pull_policy: "Always" - image: "{{ var.json.san_francisco_bikeshare_stations.container_registry.run_csv_transform_kub_bikeshare_stations }}" + image: "{{ var.json.san_francisco_bikeshare_stations.container_registry.run_csv_transform_kub }}" env_vars: - SOURCE_URL: "https://gbfs.baywheels.com/gbfs/fr/station_information.json" + SOURCE_URL_JSON: "https://gbfs.baywheels.com/gbfs/fr/station_information" SOURCE_FILE: "files/data.csv" TARGET_FILE: "files/data_output.csv" - TARGET_GCS_BUCKET: "{{ var.values.composer_bucket }}" + TARGET_GCS_BUCKET: "{{ var.value.composer_bucket }}" TARGET_GCS_PATH: "data/san_francisco_bikeshare_stations/bikeshare_stations/data_output.csv" resources: limit_memory: "2G" @@ -68,11 +68,12 @@ dag: args: task_id: "load_to_bq" - bucket: "{{ var.values.composer_bucket }}" + bucket: "{{ var.value.composer_bucket }}" source_objects: ["data/san_francisco_bikeshare_stations/bikeshare_stations/data_output.csv"] source_format: "CSV" - destination_project_dataset_table: "san_francisco_bikeshare_stations.bikeshare_stations" + destination_project_dataset_table: "san_francisco.bikeshare_station_info" skip_leading_rows: 1 + allow_quoted_newlines: True write_disposition: "WRITE_TRUNCATE" schema_fields: - name: "station_id" @@ -93,7 +94,7 @@ dag: mode: "REQUIRED" - name: "lon" type: "FLOAT" - description: "The longitude of station. The field value must be a valid WGS 84 longitude in decimal degrees format. See: http://en.wikipedia.org/wiki/World_Geodetic_System, https://en.wikipedia.org/wiki/Decimal_degrees" + description: "The longitude of station. The field value must be a valid WGS 84 longitude in decimal degrees format. See: http://en.wikipedia.org/wiki/World_Geodetic_System, https://en.wikipedia.org/wiki/Decimal_degrees" mode: "REQUIRED" - name: "region_id" type: "INTEGER" @@ -101,11 +102,11 @@ dag: mode: "NULLABLE" - name: "rental_methods" type: "STRING" - description: "Array of enumerables containing the payment methods accepted at this station. Current valid values (in CAPS) are: KEY (i.e. operator issued bike key / fob / card) CREDITCARD PAYPASS APPLEPAY ANDROIDPAY TRANSITCARD ACCOUNTNUMBER PHONE This list is intended to be as comprehensive at the time of publication as possible but is subject to change, as defined in File Requirements above" + description: "Array of enumerables containing the payment methods accepted at this station. Current valid values (in CAPS) are: KEY (i.e. operator issued bike key / fob / card) CREDITCARD PAYPASS APPLEPAY ANDROIDPAY TRANSITCARD ACCOUNTNUMBER PHONE This list is intended to be as comprehensive at the time of publication as possible but is subject to change, as defined in File Requirements above" mode: "NULLABLE" - name: "capacity" type: "INTEGER" - description: "Number of total docking points installed at this station, both available and unavailable" + description: "Number of total docking points installed at this station, both available and unavailable" mode: "NULLABLE" - name: "external_id" type: "STRING" @@ -117,7 +118,7 @@ dag: mode: "NULLABLE" - name: "has_kiosk" type: "BOOLEAN" - description: "" + description: "" mode: "NULLABLE" - name: "station_geom" type: "GEOGRAPHY" diff --git a/templates/bikeshare_stations.json b/templates/bikeshare_stations.json new file mode 100644 index 000000000..d1b5b8772 --- /dev/null +++ b/templates/bikeshare_stations.json @@ -0,0 +1 @@ +{"data":{"stations":[{"has_kiosk":true,"station_id":"3","lon":-122.405234,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"1b13a386-c5f4-42cc-bc3b-ded95982e090","legacy_id":"3","short_name":"SF-G27","lat":37.7861375,"capacity":35,"name":"Powell St BART Station (Market St at 4th St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"4","lon":-122.4089225,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a00d04e6-0159-466a-b3ab-23f9550f418c","legacy_id":"4","short_name":"SF-G26","lat":37.785876,"capacity":35,"name":"Cyril Magnin St at Ellis St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"5","lon":-122.40844488143921,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a1e0b4b2-2c5c-4201-a78c-9e8a2152ab4e","legacy_id":"5","short_name":"SF-H26","lat":37.783899357084934,"capacity":35,"name":"Powell St BART Station (Market St at 5th St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"6","lon":-122.403234,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"23a2bad4-3ea1-4545-87eb-acbee3efccfc","legacy_id":"6","short_name":"SF-A27","lat":37.80477,"capacity":23,"name":"The Embarcadero at Sansome St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"7","lon":-122.27173805236816,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"9e3efff1-3d42-46fd-8206-4021277ba6c2","legacy_id":"7","short_name":"OK-L5","lat":37.8045623549303,"capacity":35,"name":"Frank H Ogawa Plaza","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"8","lon":-122.398525,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7c7ac914-40e5-426d-b9c4-f12b1a556be8","legacy_id":"8","short_name":"SF-C28-1","lat":37.799953,"capacity":23,"name":"The Embarcadero at Vallejo St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"9","lon":-122.40086898207666,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"75f6691a-df0a-4d7a-8b35-e5ffe33add4f","legacy_id":"9","short_name":"SF-C28-2","lat":37.79857210846256,"capacity":19,"name":"Broadway at Battery St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"10","lon":-122.4046885,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e5b0aca4-2ce6-49f8-82e8-8eed6e004147","legacy_id":"10","short_name":"SF-D27","lat":37.795402,"capacity":31,"name":"Washington St at Kearny St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"11","lon":-122.398436,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"faad71bc-21e3-4ce1-8b84-63f782a91d1b","legacy_id":"11","short_name":"SF-D28","lat":37.79728,"capacity":35,"name":"Davis St at Jackson St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"12","lon":-122.3945855,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"4fc98cbd-9c9b-401b-95a6-927e30bdbd46","legacy_id":"12","short_name":"SF-D29","lat":37.7963894,"capacity":23,"name":"Pier 1/2 at The Embarcadero","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"13","lon":-122.402855,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e82e7160-d8fb-452b-8f27-c0f75926d080","legacy_id":"13","short_name":"SF-E27","lat":37.7942465,"capacity":22,"name":"Commercial St at Montgomery St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"14","lon":-122.39997,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ed1bf0f9-aa06-4f57-8cd6-5775ff3c29f0","legacy_id":"14","short_name":"SF-E28","lat":37.795001,"capacity":31,"name":"Clay St at Battery St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"15","lon":-122.394203,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b2e9118f-aafb-49fb-b237-4ba08e21f51f","legacy_id":"15","short_name":"SF-E29-1","lat":37.795392,"capacity":38,"name":"San Francisco Ferry Building (Harry Bridges Plaza)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"16","lon":-122.3948805,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"84b1ea89-19b6-4f78-92e2-2a161f75e67e","legacy_id":"16","short_name":"SF-E29-2","lat":37.794525,"capacity":27,"name":"Market St at Steuart St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"17","lon":-122.397086,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"16fea24d-ec2c-4e37-8f63-fc9f793de2cf","legacy_id":"17","short_name":"SF-E29-3","lat":37.792251,"capacity":29,"name":"Embarcadero BART Station (Beale St at Market St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"18","lon":-122.26017236709595,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"790da352-5aaa-4bb9-8453-e8ec2f78c038","legacy_id":"18","short_name":"OK-A2","lat":37.85022187449679,"capacity":11,"name":"Telegraph Ave at Alcatraz Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"19","lon":-122.403452,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3213dcdb-2ba7-46ad-b358-258a34bde9e0","legacy_id":"19","short_name":"SF-F27","lat":37.788975,"capacity":35,"name":"Post St at Kearny St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"20","lon":-122.399051,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"cf56994c-cdd6-4586-9f56-eea2f51e81ae","legacy_id":"20","short_name":"SF-F28-1","lat":37.7913,"capacity":23,"name":"Mechanics Monument Plaza (Market St at Bush St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"21","lon":-122.400808,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"2b935f1b-2659-4d82-a348-6a3bb083914d","legacy_id":"21","short_name":"SF-F28-2","lat":37.7896195,"capacity":39,"name":"Montgomery St BART Station (Market St at 2nd St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"22","lon":-122.3938751220703,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"083eaf2a-4d3f-4d83-986a-98f67f7f22b4","legacy_id":"22","short_name":"SF-F29","lat":37.790296440371655,"capacity":31,"name":"Howard St at Beale St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"23","lon":-122.391038,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6327ad76-fdd0-4ea8-a09a-f1bccca719b3","legacy_id":"23","short_name":"SF-F30-1","lat":37.7914015,"capacity":23,"name":"The Embarcadero at Steuart St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"24","lon":-122.39033527452119,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"380aa51b-4c0a-4388-ad78-37edf7338a3e","legacy_id":"24","short_name":"SF-F30-2","lat":37.7896297,"capacity":19,"name":"Spear St at Folsom St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"25","lon":-122.39871607983103,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d79ae08e-a8d2-4aad-9f98-9b20afb8f6e0","legacy_id":"25","short_name":"SF-G28-1","lat":37.78646613354221,"capacity":18,"name":"Howard St at 2nd St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"26","lon":-122.39438,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a40fc1eb-e8e9-4d41-8f77-71365f0d9064","legacy_id":"26","short_name":"SF-G29-2","lat":37.78729,"capacity":23,"name":"1st St at Folsom St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"27","lon":-122.3918085,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"4a0d887c-7e9d-4f15-a28b-aeeff05f81b6","legacy_id":"27","short_name":"SF-G30-1","lat":37.787963,"capacity":23,"name":"Beale St at Harrison St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"28","lon":-122.3881105,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"9fae2998-e458-47f8-9c7c-978e01f05330","legacy_id":"28","short_name":"SF-G30-2","lat":37.787332,"capacity":19,"name":"The Embarcadero at Bryant St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"29","lon":-122.43944585323335,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3144f47a-86f7-40f6-9ff0-5c8120babf6a","legacy_id":"29","short_name":"SF-H18","lat":37.782404601934104,"capacity":27,"name":"O'Farrell St at Divisadero St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"30","lon":-122.395282,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ea11aa7f-c070-46a4-a074-70604340efa2","legacy_id":"30","short_name":"SF-J29","lat":37.776598,"capacity":19,"name":"San Francisco Caltrain (Townsend St at 4th St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"31","lon":-122.43455886840819,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"08302771-1d45-4ec8-be85-7359fc89edd4","legacy_id":"31","short_name":"SF-G19","lat":37.78381270927812,"capacity":31,"name":"Raymond Kimbell Playground","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"34","lon":-122.411926,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b48ebe9a-8d7b-4ac1-b0da-db5978404330","legacy_id":"34","short_name":"SF-H25","lat":37.7840775,"capacity":23,"name":"Father Alfred E Boeddeker Park","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"35","lon":-121.90457582473755,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"28988488-fb74-4bbc-9e69-613698b2dd8c","legacy_id":"35","short_name":"SJ-M6","lat":37.32911866814779,"capacity":23,"name":"Cahill Park","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"36","lon":-122.39887,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a81b1594-ce38-4374-b256-3f183c8e12bc","legacy_id":"36","short_name":"SF-H28","lat":37.78383,"capacity":35,"name":"Folsom St at 3rd St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"37","lon":-122.3962173,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"dcb5ad16-caa9-4d40-b279-6d36152069a2","legacy_id":"37","short_name":"SF-H29","lat":37.7851994,"capacity":37,"name":"2nd St at Folsom St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"38","lon":-122.38792061805725,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"8517bd49-73e1-4b27-8686-d9f38a1f1ec3","legacy_id":"38","short_name":"SF-H30","lat":37.78292608704408,"capacity":26,"name":"The Embarcadero at Pier 38","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"39","lon":-122.4368608,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"86fae8b7-9d4f-499a-9437-422a07103c57","legacy_id":"39","short_name":"SF-I19","lat":37.7789994,"capacity":27,"name":"Scott St at Golden Gate Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"41","lon":-122.418409,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"8b2524c3-cc5f-4a3d-97f6-224a540d3ecc","legacy_id":"41","short_name":"SF-I23-1","lat":37.7813455,"capacity":31,"name":"Golden Gate Ave at Polk St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"42","lon":-122.4181591,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"64ce6633-9ea3-4dc1-b33f-c9d14c523a6a","legacy_id":"42","short_name":"SF-I23-2","lat":37.7788325,"capacity":19,"name":"San Francisco City Hall (Polk St at Grove St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"43","lon":-122.4159632,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"54c91186-8493-44d1-ac4f-435350fee797","legacy_id":"43","short_name":"SF-I24","lat":37.778799,"capacity":31,"name":"San Francisco Public Library (Grove St at Hyde St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"44","lon":-122.4117382,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6ab85eb1-e112-4c57-8a44-110120d68a1d","legacy_id":"44","short_name":"SF-I25","lat":37.7810737,"capacity":31,"name":"Civic Center/UN Plaza BART Station (Market St at McAllister St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"46","lon":-122.24237322807312,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6064907e-3871-4b2c-829b-d01406cee6fb","legacy_id":"46","short_name":"OK-L12","lat":37.79013985185364,"capacity":15,"name":"San Antonio Park","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"47","lon":-122.3999862,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3c09035e-28d3-4031-9148-51c08343856b","legacy_id":"47","short_name":"SF-I28","lat":37.7811944,"capacity":31,"name":"4th St at Harrison St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"49","lon":-122.3949894,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a6bfff23-97d9-4a9d-b999-dd85168d8812","legacy_id":"49","short_name":"SF-I29-2","lat":37.7807601,"capacity":29,"name":"S Park St at 3rd St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"50","lon":-122.390288,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ba25987f-399d-49ce-9354-52785e48ea13","legacy_id":"50","short_name":"SF-I30","lat":37.780526,"capacity":39,"name":"2nd St at Townsend St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"51","lon":-122.4530929327011,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f2c2ba49-25e1-4493-8565-5df5af66e153","legacy_id":"51","short_name":"SF-J15","lat":37.77610091264586,"capacity":27,"name":"Parker Ave at McAllister St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"52","lon":-122.4418376,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"73fccaab-205c-4b1e-a547-5fb0f2a58056","legacy_id":"52","short_name":"SF-J17","lat":37.7774157,"capacity":27,"name":"McAllister St at Baker St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"53","lon":-122.4377775,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d533df76-e03c-4ef3-b928-968aaed45823","legacy_id":"53","short_name":"SF-J18","lat":37.775946,"capacity":27,"name":"Grove St at Divisadero","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"54","lon":-122.43327409029006,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"2b140c2a-c038-4983-9290-d801db8a13f5","legacy_id":"54","short_name":"SF-J19","lat":37.77754677017323,"capacity":23,"name":"Alamo Square (Steiner St at Fulton St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"55","lon":-122.4295585,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"fde4cecd-7497-4bdb-a452-0e1a755e7759","legacy_id":"55","short_name":"SF-J20","lat":37.7770527,"capacity":27,"name":"Webster St at Grove St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"56","lon":-122.42731690406801,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"891d3a5f-05ab-45f2-8427-b74a1ec12d5b","legacy_id":"56","short_name":"SF-K21","lat":37.77341396997343,"capacity":27,"name":"Koshland Park","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"58","lon":-122.417385,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a9c46d92-b21e-489a-b922-3deb4ec1ab35","legacy_id":"58","short_name":"SF-J23-1","lat":37.776619,"capacity":31,"name":"Market St at 10th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"59","lon":-122.418954,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"4990eb75-f06e-4737-b5e8-03f8f45ffe66","legacy_id":"59","short_name":"SF-J23-2","lat":37.774814,"capacity":27,"name":"S Van Ness Ave at Market St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"60","lon":-122.4094493687153,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"1822622c-b9e0-43fe-8bf9-9f26024aa426","legacy_id":"60","short_name":"SF-J24","lat":37.77452040113685,"capacity":31,"name":"8th St at Ringold St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"61","lon":-122.4113061,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6156f831-ca96-459d-aafe-685420751e4d","legacy_id":"61","short_name":"SF-J25","lat":37.7765126,"capacity":27,"name":"Howard St at 8th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"62","lon":-122.40643188357353,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"03eb8b17-d20f-400c-a98a-dcbc947228af","legacy_id":"62","short_name":"SF-J26","lat":37.77779057034257,"capacity":15,"name":"Victoria Manalo Draves Park","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"63","lon":-122.402694,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7d463937-ff3e-4fb2-802a-f5b7cca1159e","legacy_id":"63","short_name":"SF-J27","lat":37.7758375,"capacity":19,"name":"Bryant St at 6th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":false,"station_id":"64","lon":-122.3990176,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"5d14b4a5-720a-4849-8f65-78165d8bf63c","legacy_id":"64","short_name":"SF-J28","lat":37.7767539,"capacity":0,"name":"5th St at Brannan St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"66","lon":-122.392553,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f7cd5ed5-b319-4723-93d2-188e3c3333e5","legacy_id":"66","short_name":"SF-J29-1","lat":37.7785885,"capacity":39,"name":"3rd St at Townsend St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"70","lon":-122.4425712,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"5292350c-9e2a-4d8d-bed5-b2738edc1551","legacy_id":"70","short_name":"SF-K17","lat":37.7735622,"capacity":31,"name":"Central Ave at Fell St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"71","lon":-122.4390777,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b1a957d2-5e0e-4a99-bca3-7f3db21d30eb","legacy_id":"71","short_name":"SF-K18","lat":37.7730627,"capacity":27,"name":"Broderick St at Oak St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"72","lon":-122.4358575,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"5215d3e4-b85a-4499-a460-1b038f7a2bf1","legacy_id":"72","short_name":"SF-K19","lat":37.772354,"capacity":27,"name":"Page St at Scott St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"73","lon":-122.4337079,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"1de96988-6dfc-4f97-8570-6d8664b6e88a","legacy_id":"73","short_name":"SF-K20","lat":37.7717933,"capacity":27,"name":"Pierce St at Haight St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"74","lon":-122.4262025,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"83b33e8d-bf8c-4a2a-8ee3-942834af27b4","legacy_id":"74","short_name":"SF-J21","lat":37.7762475,"capacity":27,"name":"Laguna St at Hayes St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"75","lon":-122.42123901844025,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"bf116a73-3718-46c1-ac14-c295963150ae","legacy_id":"75","short_name":"SF-K22-1","lat":37.7737932060887,"capacity":35,"name":"Market St at Franklin St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"76","lon":-122.422301,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d8b96e4a-7123-41db-a02c-e4ce48302578","legacy_id":"76","short_name":"SF-K22-2","lat":37.77168,"capacity":19,"name":"McCoppin St at Valencia St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"77","lon":-122.4160402,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"49754dc9-1925-4020-a599-704c9f064b03","legacy_id":"77","short_name":"SF-K24","lat":37.7735069,"capacity":19,"name":"11th St at Natoma St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"78","lon":-122.4116467,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"16fbff76-56d1-4e2b-b735-ec21b8cd3181","legacy_id":"78","short_name":"SF-K25","lat":37.7737172,"capacity":27,"name":"Folsom St at 9th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"79","lon":-122.4036725,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"5f048eb1-0b31-49ac-9d17-9b9880dc0ae9","legacy_id":"79","short_name":"SF-K27","lat":37.7734919,"capacity":0,"name":"7th St at Brannan St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"80","lon":-122.39743709564209,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"38a24ab3-8b5e-4d6d-804b-d4e89d19601e","legacy_id":"80","short_name":"SF-K28","lat":37.77523486860597,"capacity":35,"name":"Townsend St at 5th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"81","lon":-122.39317,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"5f90cd60-c199-4919-a20c-a2e417627b9d","legacy_id":"81","short_name":"SF-K29-1","lat":37.77588,"capacity":35,"name":"Berry St at 4th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"84","lon":-122.43406206015258,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d006bbb9-ba51-4958-9c4f-cdd78527bfa1","legacy_id":"84","short_name":"SF-L19","lat":37.7692231,"capacity":19,"name":"Duboce Park","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"85","lon":-122.4291485,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"38a02670-3056-43fb-8271-20fbf6baa538","legacy_id":"85","short_name":"SF-L20","lat":37.769818,"capacity":27,"name":"Church St at Duboce Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"86","lon":-122.4269645,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"930fe54f-5572-4900-8910-6041386560bf","legacy_id":"86","short_name":"SF-L21","lat":37.769244,"capacity":19,"name":"Market St at Dolores St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"87","lon":-122.4154585,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"04678a3e-1ec0-4493-a3cc-b92e74ab40ec","legacy_id":"87","short_name":"SF-L24","lat":37.770282,"capacity":27,"name":"Folsom St at 13th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"88","lon":-122.4117258,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a0406a84-2708-4727-84bf-9ca96894ef45","legacy_id":"88","short_name":"SF-L25","lat":37.7700298,"capacity":27,"name":"11th St at Bryant St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"89","lon":-122.407054,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"2f20969c-74f7-4b6a-8e23-d4d1a31b75f5","legacy_id":"89","short_name":"SF-L26","lat":37.769263,"capacity":27,"name":"Division St at Potrero Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"90","lon":-122.402717,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e4e5d6b1-a335-41a9-8efe-4c4d9294d6e2","legacy_id":"90","short_name":"SF-L27","lat":37.771058,"capacity":27,"name":"Townsend St at 7th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"91","lon":-122.39843755960464,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"afa2db8d-61bb-461a-8019-d5cd2aa1ec25","legacy_id":"91","short_name":"SF-L28","lat":37.771762110313176,"capacity":23,"name":"Berry St at King St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"92","lon":-122.39302754402159,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"42952b44-cb91-43dd-bdbd-34e4f2a39046","legacy_id":"92","short_name":"SF-L29","lat":37.772300631747626,"capacity":25,"name":"Mission Bay Kids Park","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"93","lon":-122.3912365,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"28844b82-850f-4e02-95c6-59d6076e8516","legacy_id":"93","short_name":"SF-L30-1","lat":37.7703135,"capacity":27,"name":"4th St at Mission Bay Blvd S","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"95","lon":-122.4310597,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"0c9cb910-8442-4df6-a997-704d817583ab","legacy_id":"95","short_name":"SF-M20","lat":37.7662185,"capacity":27,"name":"Sanchez St at 15th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"96","lon":-122.4266585,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"fa33d61b-8ba5-4c23-9603-8d9ebf167d5d","legacy_id":"96","short_name":"SF-M21","lat":37.7661,"capacity":19,"name":"Dolores St at 15th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"97","lon":-122.420359,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b65fc6af-b92c-41c5-8c63-e26cdfa3cda1","legacy_id":"97","short_name":"SF-M22-1","lat":37.768227,"capacity":19,"name":"14th St at Mission St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"98","lon":-122.42189,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a5c8beca-df86-4cac-8229-ac1d7b010401","legacy_id":"98","short_name":"SF-M22-2","lat":37.765429,"capacity":23,"name":"Valencia St at 16th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"99","lon":-122.4154425,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"314fd7e5-4335-4b89-ac9d-2c099bc33d9f","legacy_id":"99","short_name":"SF-M24","lat":37.7670373,"capacity":19,"name":"Folsom St at 15th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"100","lon":-122.410662,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f3e171b4-04b0-418f-9d82-e62f4df245d8","legacy_id":"100","short_name":"SF-M25","lat":37.7671004,"capacity":19,"name":"Bryant St at 15th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"101","lon":-122.40735858678818,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"fdbfa7f9-d3eb-4c9d-ab6c-0e3300da314e","legacy_id":"101","short_name":"SF-M26","lat":37.767078504583665,"capacity":27,"name":"15th St at Potrero Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"102","lon":-122.399528,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7a555b4b-c8fa-456d-a8bb-4cb7c8bbbffa","legacy_id":"102","short_name":"SF-M27","lat":37.7668905,"capacity":2,"name":"Irwin St at 8th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"104","lon":-122.39083349704742,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"482f48f4-7ed6-4e69-a778-a2aba0f39c80","legacy_id":"104","short_name":"SF-M30","lat":37.76704457969368,"capacity":35,"name":"4th St at 16th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"105","lon":-122.4318042,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"84dfbc77-fe18-4e2c-9f89-9edb8aeaee2c","legacy_id":"105","short_name":"SF-N20-1","lat":37.764285,"capacity":19,"name":"16th St at Prosper St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"106","lon":-122.4306746,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"4cfebcba-c209-4f34-bcd3-2e6c4cdaee34","legacy_id":"106","short_name":"SF-N20-2","lat":37.7632417,"capacity":19,"name":"Sanchez St at 17th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"107","lon":-122.4264968,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3ccf483a-ed9f-4327-bf9b-d72b4170ebfc","legacy_id":"107","short_name":"SF-N21","lat":37.7630152,"capacity":23,"name":"17th St at Dolores St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"108","lon":-122.4199265,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d6ced8f4-977a-441a-86f0-27381b495794","legacy_id":"108","short_name":"SF-N22-1A","lat":37.7646845,"capacity":11,"name":"16th St Mission BART","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"109","lon":-122.4220555,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"18fb1a9a-e3ee-4a18-a00d-45c1e0d14d16","legacy_id":"109","short_name":"SF-N22-2","lat":37.763333,"capacity":23,"name":"17th St at Valencia St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"110","lon":-122.41552403555308,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d6ebe802-3db6-4106-b3c7-4791c801a91f","legacy_id":"110","short_name":"SF-N23","lat":37.7637348,"capacity":23,"name":"17th & Folsom Street Park (17th St at Folsom St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"112","lon":-122.4130036,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"4d2b40cb-88e2-4371-8532-b1e52e797c8c","legacy_id":"112","short_name":"SF-N24-2","lat":37.7638471,"capacity":19,"name":"Harrison St at 17th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"113","lon":-122.410349,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"906d869e-f513-4c60-ab76-15e2ddc68632","legacy_id":"113","short_name":"SF-N25","lat":37.7645435,"capacity":19,"name":"Franklin Square","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"114","lon":-122.4025701,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b3c834af-571f-4fee-808b-ae2a7c018b5c","legacy_id":"114","short_name":"SF-N27","lat":37.7644783,"capacity":19,"name":"Rhode Island St at 17th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"115","lon":-122.3990255,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"40aad9cb-3190-4190-b73f-95aa661cec18","legacy_id":"115","short_name":"SF-N28","lat":37.764965,"capacity":27,"name":"Jackson Playground","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"116","lon":-122.3947595,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"9a97cfb1-8882-4dfc-a075-2c22d646e457","legacy_id":"116","short_name":"SF-N29","lat":37.764794,"capacity":31,"name":"Mississippi St at 17th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"118","lon":-122.4367975,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"38a49a05-7382-4a28-b6b1-b57c6fe99745","legacy_id":"118","short_name":"SF-O18","lat":37.759211,"capacity":19,"name":"Eureka Valley Recreation Center","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"119","lon":-122.4326417,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"cd7359fc-6798-48ed-af32-9d5f6cff9ffa","legacy_id":"119","short_name":"SF-O19","lat":37.7610471,"capacity":15,"name":"18th St at Noe St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"120","lon":-122.4264353,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"53bea4e6-b907-424c-b519-d286ffb713d8","legacy_id":"120","short_name":"SF-O21","lat":37.7614205,"capacity":27,"name":"Mission Dolores Park","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"121","lon":-122.4213392,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f6c0f2ed-11cc-4b74-9d03-f2b298c9bd1b","legacy_id":"121","short_name":"SF-O22","lat":37.7592103,"capacity":23,"name":"Mission Playground","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"122","lon":-122.419074,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f8b56cb7-cb70-4097-99c4-446fc29600c9","legacy_id":"122","short_name":"SF-O23","lat":37.760278,"capacity":19,"name":"19th St at Mission St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"123","lon":-122.4148171,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"aa6d4372-55f7-451a-a9ab-a546001fd8f7","legacy_id":"123","short_name":"SF-O24","lat":37.7605936,"capacity":19,"name":"Folsom St at 19th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"124","lon":-122.410807,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"fb24c862-b4cf-45e1-9008-4812aa8370fd","legacy_id":"124","short_name":"SF-O25-1","lat":37.7604469,"capacity":19,"name":"19th St at Florida St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"125","lon":-122.4100475,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b3af6593-57d4-4b9a-ba7a-b2d8051bc6b9","legacy_id":"125","short_name":"SF-O25-2","lat":37.759162,"capacity":15,"name":"20th St at Bryant St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"126","lon":-122.3906477,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"0b596735-1b55-4aaa-8421-2ac1a39267b1","legacy_id":"126","short_name":"SF-O30","lat":37.7616343,"capacity":31,"name":"Esprit Park","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"127","lon":-122.421025,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"08a1a4d2-e83a-4911-8743-41006698f4da","legacy_id":"127","short_name":"SF-P22","lat":37.7567083,"capacity":23,"name":"Valencia St at 21st St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"129","lon":-122.412544,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"cae028f4-b136-4297-8f28-559986e3f810","legacy_id":"129","short_name":"SF-P24","lat":37.758862,"capacity":19,"name":"Harrison St at 20th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"130","lon":-122.39188492298126,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e7691d93-eed6-4388-b681-00ae0b455d23","legacy_id":"130","short_name":"SF-P30","lat":37.75770404149008,"capacity":35,"name":"22nd St Caltrain Station","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"131","lon":-122.4258368,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"578169a8-b821-427d-934e-0b5329577ea4","legacy_id":"131","short_name":"SF-Q21-1","lat":37.75499463,"capacity":23,"name":"22nd St at Dolores St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"132","lon":-122.4266139,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"2ed84bed-e42a-4f0d-a059-78a709748616","legacy_id":"132","short_name":"SF-Q21-2","lat":37.7518194,"capacity":19,"name":"24th St at Chattanooga St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"133","lon":-122.4209752,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"759c388e-ab9b-40c2-ae96-ee5190264916","legacy_id":"133","short_name":"SF-Q22-1","lat":37.7552126,"capacity":23,"name":"Valencia St at 22nd St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"134","lon":-122.4206278,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3437ead2-e5e0-4e1c-86cf-d925a96b2260","legacy_id":"134","short_name":"SF-Q22-2","lat":37.7524278,"capacity":23,"name":"Valencia St at 24th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"137","lon":-122.4339496,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b6190b6b-1f42-4b69-ab79-d6cfa18adea7","legacy_id":"137","short_name":"SF-R19","lat":37.750506,"capacity":19,"name":"Jersey St at Castro St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"138","lon":-122.4274114,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"673c88d0-961a-45ff-b394-ac9a33e58d55","legacy_id":"138","short_name":"SF-R20","lat":37.7509004,"capacity":19,"name":"Jersey St at Church St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"139","lon":-122.4120835,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"1d0da57a-5fe4-48af-b66b-5f380706eb4e","legacy_id":"139","short_name":"SF-R24","lat":37.750945,"capacity":23,"name":"Garfield Square (25th St at Harrison St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"140","lon":-122.4249863,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"9202aa09-26ee-4220-9281-c66b7bbe7b38","legacy_id":"140","short_name":"SF-S21","lat":37.7478584,"capacity":15,"name":"Cesar Chavez St at Dolores St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"141","lon":-122.420215,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"fb66d43b-6d13-411c-ac2d-e26fbca0b0f2","legacy_id":"141","short_name":"SF-S22-1","lat":37.7476755,"capacity":19,"name":"Valencia St at Cesar Chavez St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"142","lon":-122.42214024066925,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"aacc087a-f075-4682-a0df-be4c30c4a632","legacy_id":"142","short_name":"SF-S22-2","lat":37.745738796183325,"capacity":15,"name":"Guerrero Park","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"144","lon":-122.4114029,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"615bca10-5b2a-4b7e-876c-04c4d3d9e360","legacy_id":"144","short_name":"SF-S24","lat":37.7472996,"capacity":15,"name":"Precita Park","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"145","lon":-122.4268059,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"0fc2ae3f-b5ac-493b-bd93-8300b601f9db","legacy_id":"145","short_name":"SF-T20","lat":37.7436839,"capacity":15,"name":"29th St at Church St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"146","lon":-122.4231805,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"c7879d87-34c8-4b23-9c07-250fb012bd4b","legacy_id":"146","short_name":"SF-T21","lat":37.7423139,"capacity":15,"name":"30th St at San Jose Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"147","lon":-122.4214722,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"86e91819-05c0-4150-ab16-83d8480dc7f4","legacy_id":"147","short_name":"SF-T22","lat":37.7440667,"capacity":19,"name":"29th St at Tiffany Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"148","lon":-122.2876102,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"8f409200-2adf-4b2d-b675-6befa5adc6e3","legacy_id":"148","short_name":"EM-D2","lat":37.8297046,"capacity":23,"name":"Horton St at 40th St","region_id":"13","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"149","lon":-122.2856333,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"47f5b0d6-a2db-482c-9680-10759094c4a4","legacy_id":"149","short_name":"EM-D3","lat":37.8312752,"capacity":23,"name":"Emeryville Town Hall","region_id":"13","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"150","lon":-122.2782669,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"789f4684-fb14-456b-ad02-87ee28d80ff1","legacy_id":"150","short_name":"EM-D4","lat":37.8312769,"capacity":15,"name":"Adeline St at 40th St","region_id":"13","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"151","lon":-122.2871801,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"31871354-8b20-4566-9044-f70ac57026dc","legacy_id":"151","short_name":"EM-C2","lat":37.8361823,"capacity":23,"name":"53rd St at Hollis St","region_id":"13","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"152","lon":-122.28105068206787,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"1eef0966-a6b6-4da1-8726-09989c2eb044","legacy_id":"152","short_name":"EM-C3","lat":37.83563220458518,"capacity":19,"name":"47th St at San Pablo Ave","region_id":"13","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"153","lon":-122.2913604,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"5ea1329c-9fe6-4c24-9de7-34967a9fa428","legacy_id":"153","short_name":"EM-A1","lat":37.8409452,"capacity":19,"name":"59th St at Horton St","region_id":"13","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"154","lon":-122.2880451,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"4fea6876-e80d-4a29-9966-820ac15cd3b4","legacy_id":"154","short_name":"EM-A2","lat":37.8419238,"capacity":15,"name":"Doyle St at 59th St","region_id":"13","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"155","lon":-122.29352831840515,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"998afb43-2436-4f11-9ed1-380c9abc3e55","legacy_id":"155","short_name":"EM-B1","lat":37.84052116694969,"capacity":19,"name":"Emeryville Public Market","region_id":"13","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"156","lon":-122.2886647,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"9da2121d-d8a8-464d-a396-cd41c9487bc4","legacy_id":"156","short_name":"EM-B2","lat":37.8384435,"capacity":15,"name":"Stanford Ave at Hollis St","region_id":"13","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"157","lon":-122.2913761,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"83f44c93-d153-49b3-a8af-a6b4a7ea85db","legacy_id":"157","short_name":"EM-C1","lat":37.8467842,"capacity":19,"name":"65th St at Hollis St","region_id":"13","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"158","lon":-122.2634901,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"c3f56bed-65e3-425b-999e-82b3a4f73aeb","legacy_id":"158","short_name":"OK-E4","lat":37.8332786,"capacity":19,"name":"Shattuck Ave at Telegraph Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"159","lon":-122.2782444,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"92045ce2-112c-4cd9-ae42-39aac4f43e86","legacy_id":"159","short_name":"OK-J3","lat":37.8160598,"capacity":19,"name":"24th St at Market St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"160","lon":-122.29461686454057,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"270425db-c369-4d4b-b8de-fae86c896a3c","legacy_id":"160","short_name":"OK-N1","lat":37.8051895,"capacity":23,"name":"West Oakland BART Station","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"162","lon":-122.2720799,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"09c20e68-4f8c-4723-ae8f-bac3dd927848","legacy_id":"162","short_name":"OK-M6","lat":37.8005161,"capacity":27,"name":"Franklin St at 9th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"163","lon":-122.2653199,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ce264eb5-ebfe-4a03-8bd3-e319c32614ec","legacy_id":"163","short_name":"OK-M7","lat":37.7973195,"capacity":27,"name":"Lake Merritt BART Station","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"164","lon":-122.27484405040741,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e9b45d4b-900e-4d9f-bb75-74dcea012859","legacy_id":"164","short_name":"OK-J4","lat":37.814988230424156,"capacity":19,"name":"Isabella St at San Pablo Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"166","lon":-122.2525233,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"76d7eeec-413a-4940-9bc2-8222d35f8fdc","legacy_id":"166","short_name":"BK-A3","lat":37.8513755,"capacity":15,"name":"College Ave at Alcatraz Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"167","lon":-122.2525406,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b4717e68-fb91-4e74-819f-4a9580a84ca5","legacy_id":"167","short_name":"OK-A4","lat":37.8494355,"capacity":23,"name":"62nd St at Claremont Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"168","lon":-122.26556897163393,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"04059da9-ebad-42e8-928b-14e5e3edf26f","legacy_id":"168","short_name":"OK-B1","lat":37.849594967776646,"capacity":15,"name":"Alcatraz Ave at Shattuck Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"169","lon":-122.2653043,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"48e675de-7b94-49ff-bb5e-fa146c243599","legacy_id":"169","short_name":"OK-B2","lat":37.8465156,"capacity":19,"name":"Bushrod Park","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"170","lon":-122.261351,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"50518b51-6910-4f71-bb20-7b0d0fc4f4b7","legacy_id":"170","short_name":"OK-B3","lat":37.8444927,"capacity":15,"name":"Telegraph Ave at 58th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"171","lon":-122.251900434494,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"31146111-fc8f-4107-9087-1a160eefaa54","legacy_id":"171","short_name":"OK-B4","lat":37.84427875399067,"capacity":24,"name":"Rockridge BART Station","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"172","lon":-122.2515349,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"5f13426c-73f2-4272-a498-f11ff007e8d3","legacy_id":"172","short_name":"OK-B5","lat":37.8417999,"capacity":15,"name":"College Ave at Taft Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"173","lon":-122.2644881,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"cd4b4099-e2f5-4d46-bc1f-ed96d22548cc","legacy_id":"173","short_name":"OK-D3-1","lat":37.8403643,"capacity":15,"name":"Shattuck Ave at 55th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"174","lon":-122.267656,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"dcf29fa9-3304-4f6f-90eb-ef48ada9dbfe","legacy_id":"174","short_name":"OK-D3-2","lat":37.837369,"capacity":23,"name":"52nd St at MLK Jr Way","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"175","lon":-122.262654,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"971307f6-5491-4112-beac-6b6960af6c0d","legacy_id":"175","short_name":"OK-D4","lat":37.83575,"capacity":15,"name":"Telegraph Ave at 49th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"176","lon":-122.26631462574005,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"1af8102a-589a-47ea-97ec-4589b71403aa","legacy_id":"176","short_name":"OK-F4","lat":37.82840997305853,"capacity":31,"name":"MacArthur BART Station","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"177","lon":-122.2651002,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f3db9065-9d34-451e-ae8e-930612f8b8d7","legacy_id":"177","short_name":"OK-G4","lat":37.8262863,"capacity":19,"name":"MacArthur Blvd at Telegraph Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"178","lon":-122.2619284,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b96ee0c1-a83b-4f0c-9eae-4592672b3e86","legacy_id":"178","short_name":"OK-H5","lat":37.8193814,"capacity":19,"name":"Broadway at 30th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"179","lon":-122.26788640022278,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a0b6621e-016f-4a91-918c-2140bfd9813c","legacy_id":"179","short_name":"OK-I5","lat":37.816073115011406,"capacity":19,"name":"Telegraph Ave at 27th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"180","lon":-122.2687726,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"74e8630e-7e2a-447f-ae87-5c9898c7346a","legacy_id":"180","short_name":"OK-J5","lat":37.8126783,"capacity":19,"name":"Telegraph Ave at 23rd St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"181","lon":-122.2651925,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"cb84be53-d226-47fc-aa81-789c037361d4","legacy_id":"181","short_name":"OK-J6-1","lat":37.8113768,"capacity":27,"name":"Grand Ave at Webster St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"182","lon":-122.26795077323914,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6977a0c8-f59f-4d97-9868-e7b20cc2fdad","legacy_id":"182","short_name":"OK-K5-2","lat":37.809368612134854,"capacity":31,"name":"19th Street BART Station","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"183","lon":-122.2699271,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f1ee54eb-4abe-4158-9c82-53bcc640fc77","legacy_id":"183","short_name":"OK-K5-1","lat":37.8087021,"capacity":27,"name":"Telegraph Ave at 19th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"186","lon":-122.2626418,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b8398469-a2ba-4d86-8f5a-07f9883796bd","legacy_id":"186","short_name":"OK-L7-2","lat":37.8013189,"capacity":27,"name":"Lakeside Dr at 14th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"187","lon":-122.279352,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"759daccc-7f53-4b29-ab07-cf2d75a10610","legacy_id":"187","short_name":"OK-N5","lat":37.796248,"capacity":27,"name":"Jack London Square","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"188","lon":-122.267738,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"9cb2f8b5-0d32-4a15-a4f1-3990595156de","legacy_id":"188","short_name":"OK-C2","lat":37.8426295,"capacity":15,"name":"Dover St at 57th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"189","lon":-122.2717561,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a247eef9-7ee3-4827-8ddb-fbd8daca7a0b","legacy_id":"189","short_name":"OK-D2","lat":37.8396488,"capacity":15,"name":"Genoa St at 55th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"190","lon":-122.2709501,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b6e253b2-285d-4363-ae46-24e7c221cc08","legacy_id":"190","short_name":"OK-F3","lat":37.8302232,"capacity":23,"name":"West St at 40th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"191","lon":-122.2739367,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"316f6785-47aa-4e37-b81b-3cf829bf5120","legacy_id":"191","short_name":"OK-G2","lat":37.8305452,"capacity":15,"name":"Market St at 40th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"192","lon":-122.27179706096648,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"73295cf1-c5e1-41dd-8cd7-eab6512e8a34","legacy_id":"192","short_name":"OK-G3","lat":37.82669558640968,"capacity":23,"name":"37th St at West St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"193","lon":-122.2472152,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"1c2e5680-719b-4674-9837-092c367594ba","legacy_id":"193","short_name":"OK-H9-1","lat":37.8127441,"capacity":19,"name":"Grand Ave at Santa Clara Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"194","lon":-122.2432677,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"717e6e13-e1b2-4c13-944d-823a556c1635","legacy_id":"194","short_name":"OK-H9-2","lat":37.8110807,"capacity":15,"name":"Lakeshore Ave at Trestle Glen Rd","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"195","lon":-122.26077854633331,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"422ab254-5c2c-4a9c-9368-a49e8dab3ebf","legacy_id":"195","short_name":"OK-I6","lat":37.81231409135146,"capacity":23,"name":"Bay Pl at Vernon St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"196","lon":-122.25646018981932,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d5eedd49-f998-4b8a-9d1a-22853da216aa","legacy_id":"196","short_name":"OK-I8","lat":37.80889393398715,"capacity":23,"name":"Grand Ave at Perkins St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"197","lon":-122.2492512,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"70b61cdb-7b5d-4455-84e4-9b9c697b6740","legacy_id":"197","short_name":"OK-I9","lat":37.808715,"capacity":23,"name":"El Embarcadero at Grand Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"198","lon":-122.26449608802795,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"5fdc3d6d-e9c8-47cf-874e-d2f012cfb217","legacy_id":"198","short_name":"OK-J6-2","lat":37.80781318217903,"capacity":31,"name":"Snow Park","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"200","lon":-122.25381016731262,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7655722c-16c0-4996-9d92-4848ece2fc35","legacy_id":"200","short_name":"OK-K9","lat":37.800213566969795,"capacity":35,"name":"2nd Ave at E 18th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"201","lon":-122.2629973,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7018fb4d-6799-4a20-8ea4-739f789cd096","legacy_id":"201","short_name":"OK-L8","lat":37.7976728,"capacity":23,"name":"10th St at Fallon St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"202","lon":-122.2748943,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"8f34c934-e51e-4b0f-810c-916618b6cd90","legacy_id":"202","short_name":"OK-M5","lat":37.8007544,"capacity":27,"name":"Washington St at 8th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"203","lon":-122.27396965026855,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7686b58c-88a3-4ca8-a898-d4bcccf520b3","legacy_id":"203","short_name":"OK-N6","lat":37.795194764385954,"capacity":27,"name":"Webster St at 2nd St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"204","lon":-122.2618225,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"bf463e48-e629-4fed-9e7e-551e5c5a1af7","legacy_id":"204","short_name":"OK-C3","lat":37.8401858,"capacity":19,"name":"55th St at Telegraph Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"205","lon":-122.258732,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ffbf423a-2c1b-447a-a47d-9c1fddd152be","legacy_id":"205","short_name":"OK-C4","lat":37.8388,"capacity":19,"name":"Miles Ave at Cavour St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"206","lon":-122.2512714,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b31a7464-fb7f-4554-a89b-ef8b4c97a367","legacy_id":"206","short_name":"OK-C5","lat":37.8381269,"capacity":23,"name":"College Ave at Bryant Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"207","lon":-122.2516207,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"67ed16db-4800-4671-bba4-e8ef52d6d74e","legacy_id":"207","short_name":"OK-D5","lat":37.8357883,"capacity":23,"name":"Broadway at Coronado Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"208","lon":-121.88385039567946,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"453a6d0d-31ce-4204-b2e1-2f9532e4b356","legacy_id":"208","short_name":"SJ-N10-1","lat":37.33279952386071,"capacity":19,"name":"4th St at San Carlos St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"209","lon":-122.2674183,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"1dedc5ae-882d-4bb0-bcfe-33604cc116df","legacy_id":"209","short_name":"OK-E3","lat":37.8335577,"capacity":19,"name":"45th St at MLK Jr Way","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"210","lon":-122.25622415542603,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"42019e90-fa74-4a77-9051-5dfed81a32de","legacy_id":"210","short_name":"OK-E5","lat":37.8332935222321,"capacity":23,"name":"45th St at Manila","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"211","lon":-122.2567156,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"76d741e6-6b22-4d6a-a16f-8dbd7ab51c6f","legacy_id":"211","short_name":"OK-F5","lat":37.8277573,"capacity":23,"name":"Broadway at 40th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"212","lon":-122.26043654610294,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"4298a24b-394a-491d-9d8f-df90f381b187","legacy_id":"212","short_name":"OK-G5","lat":37.824892529951114,"capacity":31,"name":"Mosswood Park","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"213","lon":-122.2811926,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"df2bc9c0-0377-46c8-83ea-ef7ef9dcdb4d","legacy_id":"213","short_name":"OK-H2","lat":37.8238474,"capacity":15,"name":"32nd St at Adeline St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"214","lon":-122.2757325,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"77948e35-f1c6-4ff9-9d8c-787a16b20a27","legacy_id":"214","short_name":"OK-H3","lat":37.8233214,"capacity":19,"name":"Market St at Brockhurst St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"215","lon":-122.26597130298616,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b0f5f6bc-86db-4670-be8d-4112719fbd71","legacy_id":"215","short_name":"OK-H4-3","lat":37.82246767714513,"capacity":23,"name":"34th St at Telegraph Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"216","lon":-122.2756976,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"8a7e7744-c516-46b9-b079-2a6d3afc2383","legacy_id":"216","short_name":"OK-I3","lat":37.8178269,"capacity":19,"name":"San Pablo Ave at 27th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"217","lon":-122.2717615,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"10334650-998e-4022-a883-2c3110edeb40","legacy_id":"217","short_name":"OK-I4","lat":37.8170154,"capacity":19,"name":"27th St at MLK Jr Way","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"218","lon":-122.2851712,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"1af8f901-8697-4128-b6c8-45c7c7f2c684","legacy_id":"218","short_name":"OK-K2","lat":37.8123315,"capacity":15,"name":"DeFremery Park","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"219","lon":-122.2801923,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"77476eaf-b0a1-473b-8e68-9d6a312545b1","legacy_id":"219","short_name":"OK-K3","lat":37.8098236,"capacity":19,"name":"Marston Campbell Park","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"220","lon":-122.2734217,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"924ea8a9-841d-43b5-99a9-bff7ca8d4b64","legacy_id":"220","short_name":"OK-K4","lat":37.8113514,"capacity":19,"name":"San Pablo Ave at MLK Jr Way","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"221","lon":-122.253842,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ddc82a89-0b7e-41a7-ba69-05e3776d13cf","legacy_id":"221","short_name":"OK-L10","lat":37.794396,"capacity":15,"name":"6th Ave at E 12th St (Temporary Location)","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"222","lon":-122.2487796,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"4c05cf62-fcee-4f55-960f-aeccd2b09735","legacy_id":"222","short_name":"OK-L11","lat":37.7927143,"capacity":15,"name":"10th Ave at E 15th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"223","lon":-122.420141,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"cdc26b4b-f9dc-4b00-8cf4-1665b5bf8afd","legacy_id":"223","short_name":"SF-N22-1B","lat":37.7648385,"capacity":19,"name":"16th St Mission BART Station 2","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"224","lon":-122.24745869636536,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"885754e6-88c9-46ed-9376-f1b035a71b54","legacy_id":"224","short_name":"OK-L13","lat":37.800459411713945,"capacity":23,"name":"21st St at 5th Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"225","lon":-122.2343822,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6b89ea9f-180b-4954-8eab-6cfeb2b66027","legacy_id":"225","short_name":"OK-L14","lat":37.7851915,"capacity":15,"name":"23rd Ave at Foothill Blvd","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"226","lon":-122.2329915,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"28925943-fddd-4f98-86ef-9f8dbd9bc62d","legacy_id":"226","short_name":"OK-M14","lat":37.781123,"capacity":15,"name":"26th Ave at International Blvd","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"227","lon":-122.2226033,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ea88423e-8147-4d3e-a51f-22430d3d728c","legacy_id":"227","short_name":"OK-L16","lat":37.7837569,"capacity":15,"name":"Foothill Blvd at Fruitvale Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"228","lon":-122.2177284,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"9ac7060b-f5d5-4ae4-be01-2571b1419d3f","legacy_id":"228","short_name":"OK-K17","lat":37.77993,"capacity":19,"name":"Foothill Blvd at Harrington Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"229","lon":-122.21239820122717,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"0d6a9101-5b40-4fdf-9315-e494af1baf7b","legacy_id":"229","short_name":"OK-L19","lat":37.774152564302355,"capacity":19,"name":"Bond St at High St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"230","lon":-122.2914153,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a845426e-b1fe-4dab-b7a5-b6e581f4d7dc","legacy_id":"230","short_name":"OK-L1","lat":37.8107432,"capacity":15,"name":"14th St at Mandela Pkwy","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"231","lon":-122.28328227996825,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ac5e3053-b3f5-4396-9114-7650b67c7090","legacy_id":"231","short_name":"OK-L3","lat":37.80874983465997,"capacity":0,"name":"14th St at Filbert St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"232","lon":-122.2760402,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e4921f52-7a6c-4baa-b057-ddc7051980ca","legacy_id":"232","short_name":"OK-L4","lat":37.8061628,"capacity":19,"name":"MLK Jr Way at 14th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"233","lon":-122.255547,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ddc41c7f-69d7-48a9-a992-d0c543fd6f5e","legacy_id":"233","short_name":"OK-L9","lat":37.795913,"capacity":19,"name":"4th Ave at E 12th St (Temporary Location)","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"234","lon":-122.2254,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"51c15f4f-80bb-4c55-9675-70c184bb4318","legacy_id":"234","short_name":"OK-M16","lat":37.778058,"capacity":19,"name":"Farnam St at Fruitvale Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"235","lon":-122.2893702,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e0c59a44-7e14-43bd-99e2-a294b3fc0951","legacy_id":"235","short_name":"OK-M2","lat":37.8072393,"capacity":19,"name":"Union St at 10th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"236","lon":-122.282497,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"2d1b2144-cbf3-4077-8fbb-400c7536613c","legacy_id":"236","short_name":"OK-M4","lat":37.8036865,"capacity":23,"name":"Market St at 8th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"237","lon":-122.2244982,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"cf1d4581-61da-4ade-97d5-2f856cdb0aad","legacy_id":"237","short_name":"OK-N17","lat":37.7752321,"capacity":15,"name":"Fruitvale BART Station","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"238","lon":-122.2730677,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3d923c3c-46ea-4a46-84b7-e95916cdb0bd","legacy_id":"238","short_name":"BK-C6","lat":37.8717192,"capacity":23,"name":"MLK Jr Way at University Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"239","lon":-122.2587857,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"874b7cea-2d90-4978-bc49-b9a38b597f81","legacy_id":"239","short_name":"BK-E9-1","lat":37.8689109,"capacity":23,"name":"Bancroft Way at Telegraph Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"240","lon":-122.2588044,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"318b8d9d-cf10-41a5-988a-860a07f0543d","legacy_id":"240","short_name":"BK-E9-2","lat":37.8660431,"capacity":19,"name":"Haste St at Telegraph Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"241","lon":-122.2702132,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"25e8f173-3c6f-43d5-9806-af1c72f6f3d8","legacy_id":"241","short_name":"BK-H6","lat":37.8524766,"capacity":23,"name":"Ashby BART Station","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"242","lon":-122.2693844139576,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"713e3a3a-c5a6-4f48-a122-c536326bc954","legacy_id":"242","short_name":"BK-F7","lat":37.86012459911685,"capacity":23,"name":"Milvia St at Derby St","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"243","lon":-122.2543374,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a646ab7e-7396-4009-abb8-0b51171325ff","legacy_id":"243","short_name":"BK-D10","lat":37.8693603,"capacity":30,"name":"Bancroft Way at College Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"244","lon":-122.26848721504211,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b43472b6-2dfc-451e-a668-abc1a1099b6e","legacy_id":"244","short_name":"BK-C7","lat":37.87367621459825,"capacity":23,"name":"Shattuck Ave at Hearst Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"245","lon":-122.268422,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7adb5dde-e34a-4964-98d3-f64a940beacb","legacy_id":"245","short_name":"BK-D7-1","lat":37.870139,"capacity":29,"name":"Downtown Berkeley BART","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"246","lon":-122.270556,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"99665404-d98e-472c-9f68-0016be3601db","legacy_id":"246","short_name":"BK-D7-2","lat":37.8690599,"capacity":27,"name":"Berkeley Civic Center","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"247","lon":-122.2658964,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a4176220-2f51-47dd-82c4-342dc97867bd","legacy_id":"247","short_name":"BK-E8","lat":37.8677892,"capacity":23,"name":"Fulton St at Bancroft Way","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"248","lon":-122.2597949,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f630e61e-56b0-4f69-a91b-2e85b44dfcb7","legacy_id":"248","short_name":"BK-H9","lat":37.8559558,"capacity":19,"name":"Telegraph Ave at Ashby Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"249","lon":-122.2532529,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f33b866f-ce2e-4d48-9b2a-cf566ba59039","legacy_id":"249","short_name":"BK-H10","lat":37.8584732,"capacity":19,"name":"Russell St at College Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"250","lon":-122.283093,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"930e63db-726c-4276-b3c3-fc51f32b3ddd","legacy_id":"250","short_name":"BK-C5","lat":37.873558,"capacity":27,"name":"North Berkeley BART Station","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"251","lon":-122.27972030639648,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f82dccaa-6309-4a54-a405-fe94412f71d6","legacy_id":"251","short_name":"BK-D5","lat":37.87055532905745,"capacity":15,"name":"California St at University Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"252","lon":-122.2674431,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"76709a87-13a8-4df3-a971-073c79fcf6b0","legacy_id":"252","short_name":"BK-E7","lat":37.8658466,"capacity":23,"name":"Channing Way at Shattuck Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"253","lon":-122.25379943847655,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"bd5a77f6-ebbe-496b-9887-069c87c7a423","legacy_id":"253","short_name":"BK-E10","lat":37.86641794050319,"capacity":23,"name":"Haste St at College Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"254","lon":-122.26959228515624,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"618c724d-9025-470b-8621-4500a9b69773","legacy_id":"254","short_name":"BK-A7","lat":37.88022244590679,"capacity":15,"name":"Vine St at Shattuck Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"255","lon":-122.26952791213989,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"5d2b4506-3169-4f9a-af15-31c78768917a","legacy_id":"255","short_name":"BK-B7","lat":37.876572549106854,"capacity":23,"name":"Virginia St at Shattuck Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"256","lon":-122.2601554,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"c8b190cd-c4a1-4597-bb18-3d9cc786e9cb","legacy_id":"256","short_name":"BK-C9","lat":37.8753207,"capacity":15,"name":"Hearst Ave at Euclid Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"257","lon":-122.29967594146727,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"08f875e7-d696-4a4d-9656-43f07a953de4","legacy_id":"257","short_name":"BK-C1","lat":37.870407115465376,"capacity":15,"name":"Fifth St at Delaware St","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"258","lon":-122.2664467,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3494fb75-e57c-491f-a6e7-c2440c3a37e3","legacy_id":"258","short_name":"BK-C8","lat":37.8723555,"capacity":23,"name":"University Ave at Oxford St","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"259","lon":-122.2993708,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d1e31ce1-f129-48e0-bfe9-ba2674ed2daa","legacy_id":"259","short_name":"BK-D1","lat":37.866249,"capacity":23,"name":"Addison St at Fourth St","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"262","lon":-122.28653311729431,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"0b81b2ae-d9bf-4b66-b5e0-687205d4bc12","legacy_id":"262","short_name":"BK-D4","lat":37.869966707604036,"capacity":15,"name":"West St at University Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"263","lon":-122.2902305,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"40205ede-0c43-44ab-8c9c-0d8ecd9f854e","legacy_id":"263","short_name":"BK-E3","lat":37.8628271,"capacity":23,"name":"Channing Way at San Pablo Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"265","lon":-122.2912095,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3845994c-9953-44ce-b75b-43d4cb5216e8","legacy_id":"265","short_name":"BK-F2","lat":37.8588682,"capacity":15,"name":"Ninth St at Parker St","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"266","lon":-122.2647911,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"70cd5518-091f-4331-a80e-53df97db1a81","legacy_id":"266","short_name":"BK-F8","lat":37.8624644,"capacity":23,"name":"Parker St at Fulton St","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"267","lon":-122.2535687,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a4ea165b-5dcf-4b41-ac2d-68718f98b147","legacy_id":"267","short_name":"BK-F10","lat":37.8618037,"capacity":19,"name":"Derby St at College Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"268","lon":-122.26157784461977,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"429a3ffa-e0df-4497-b6e9-91e3ccb12c1c","legacy_id":"268","short_name":"BK-G8","lat":37.85749021457153,"capacity":15,"name":"Ellsworth St at Russell St","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"269","lon":-122.258801,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f1987d85-0da3-4a03-b947-8c6c72947f32","legacy_id":"269","short_name":"BK-F9","lat":37.8623199,"capacity":19,"name":"Telegraph Ave at Carleton St","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"270","lon":-122.2896981239319,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7cec0a12-76ab-4472-b38c-8e8ad02688a5","legacy_id":"270","short_name":"BK-H3","lat":37.8539069616438,"capacity":15,"name":"Ninth St at Heinz Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"271","lon":-122.28312671184538,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"4a6b5ab4-b2d8-4657-b93f-a71bc7007283","legacy_id":"271","short_name":"BK-G4","lat":37.85578332030199,"capacity":19,"name":"San Pablo Park","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"273","lon":-122.26356536149979,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"4d1990b2-f487-43be-b436-018ad73ab0dd","legacy_id":"273","short_name":"BK-H8","lat":37.855573661828785,"capacity":19,"name":"Fulton St at Ashby Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"274","lon":-122.2675583,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ef04d469-63f4-464a-946f-056da6318051","legacy_id":"274","short_name":"BK-G7","lat":37.8575672,"capacity":20,"name":"Oregon St at Adeline St","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"275","lon":-121.8888891,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"0d48fc9e-6798-46f0-bbb6-67a168800e0b","legacy_id":"275","short_name":"SJ-K11","lat":37.3429973,"capacity":15,"name":"Julian St at 6th St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"276","lon":-121.9125165,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"2c7560e6-62c6-4403-8b97-8016471948b5","legacy_id":"276","short_name":"SJ-K5","lat":37.3322326,"capacity":23,"name":"Julian St at The Alameda","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"277","lon":-121.90861791372298,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"27045384-791c-4519-8087-fce2f7c48a69","legacy_id":"277","short_name":"SJ-K6","lat":37.333677122859896,"capacity":19,"name":"W Julian St at N Morrison St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"278","lon":-121.9048882,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d28bb0a7-8dc5-49be-86c7-9a3395eed019","legacy_id":"278","short_name":"SJ-L7-2","lat":37.3319323,"capacity":23,"name":"The Alameda at Bush St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"279","lon":-121.8841054,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7ae6ad74-9212-4a2b-bb52-aba03cb533e2","legacy_id":"279","short_name":"SJ-M11-1","lat":37.3391456,"capacity":15,"name":"Santa Clara St at 7th St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"280","lon":-121.88321471214294,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ed707a89-a68d-4921-a4cb-16c268e45a5b","legacy_id":"280","short_name":"SJ-M11-2","lat":37.3371223728942,"capacity":23,"name":"San Fernando St at 7th St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"281","lon":-121.8807965,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7dfd8e07-81a8-4734-bc70-5e47aadbfa5a","legacy_id":"281","short_name":"SJ-M11-3","lat":37.3383952,"capacity":19,"name":"9th St at San Fernando St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"282","lon":-121.88078,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7304d188-5de6-4a57-86e3-bb0b72481368","legacy_id":"282","short_name":"SJ-P10-2","lat":37.324414,"capacity":19,"name":"E Virginia St at S 2nd St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"283","lon":-121.8977018,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6bcc6da3-b25b-4fea-9c30-3eb88e282574","legacy_id":"283","short_name":"SJ-M8-2","lat":37.3302641,"capacity":19,"name":"Delmas Ave and San Fernando St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"284","lon":-122.40087568759917,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"8b4f5169-6d0c-4d43-aa31-d243c5aec7ec","legacy_id":"284","short_name":"SF-H27-1","lat":37.78487208436062,"capacity":19,"name":"Yerba Buena Center for the Arts (Howard St at 3rd St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"285","lon":-122.43115782737732,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3c2ae472-6b36-42ce-be4d-f99208a7e8b0","legacy_id":"285","short_name":"SF-H20","lat":37.78352083526095,"capacity":27,"name":"Webster St at O'Farrell St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"286","lon":-121.8766132,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"dc464713-3263-40bd-a059-af2efd7a4b9a","legacy_id":"286","short_name":"SJ-N12-1","lat":37.3364659,"capacity":19,"name":"San Carlos St at 11th St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"287","lon":-121.8892731,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"8fccc336-6544-4c73-a096-282131267f78","legacy_id":"287","short_name":"SJ-O9","lat":37.32673,"capacity":19,"name":"Almaden Blvd at Balbach St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"288","lon":-121.9020161,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"0d730ac1-7ce6-45cf-aca6-b412ea46709d","legacy_id":"288","short_name":"SJ-H10","lat":37.3509643,"capacity":27,"name":"Mission St at 1st St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"289","lon":-121.89584255218504,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"8941eac9-fb07-4d76-b623-fae2af79139e","legacy_id":"289","short_name":"SJ-I10","lat":37.35090179274617,"capacity":23,"name":"5th St at Taylor St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"290","lon":-121.89966201782227,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6c176d42-fea5-4df1-80eb-66a99cc73a21","legacy_id":"290","short_name":"SJ-I9","lat":37.34759257443888,"capacity":19,"name":"George St at 1st St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"291","lon":-121.9031829,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3ebc4f3f-2941-47cd-a173-83f01a91bf57","legacy_id":"291","short_name":"SJ-J8","lat":37.3413348,"capacity":15,"name":"Autumn Parkway at Coleman Ave","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"292","lon":-121.8969655,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7d8f4de7-d726-4af2-95b5-33032136239a","legacy_id":"292","short_name":"SJ-J9","lat":37.3448821,"capacity":19,"name":"Empire St at 1st St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"294","lon":-121.884559,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d6c452d5-88d5-48e2-8028-d46134c2beb8","legacy_id":"294","short_name":"SJ-O10","lat":37.327581,"capacity":27,"name":"Pierce Ave at Market St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"295","lon":-121.8759263,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"753e3e72-9498-4eef-a006-be1848cb36b3","legacy_id":"295","short_name":"SJ-O12","lat":37.3327938,"capacity":23,"name":"William St at 10th St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"296","lon":-121.87712,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"bb54f5c8-5578-4167-9599-8e55154de4fd","legacy_id":"296","short_name":"SJ-P10","lat":37.3259984,"capacity":27,"name":"5th St at Virginia St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"297","lon":-121.8879312,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"676591be-48bc-4653-995a-c4536e793135","legacy_id":"297","short_name":"SJ-P8","lat":37.3229796,"capacity":19,"name":"Locust St at Grant St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"298","lon":-121.88109040260315,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"0fd9a51c-67ac-4048-b531-bff644b82f47","legacy_id":"298","short_name":"SJ-P9","lat":37.322124625448566,"capacity":23,"name":"Oak St at 1st St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"299","lon":-121.8741186,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"46b4ef45-b06b-40eb-9fdf-9bc8ff104a4f","legacy_id":"299","short_name":"SJ-Q11","lat":37.3236779,"capacity":15,"name":"Bestor Art Park","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"300","lon":-121.884995,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"0cf3890c-4fde-49f7-9daa-7f2842695119","legacy_id":"300","short_name":"SJ-Q8","lat":37.3172979,"capacity":19,"name":"Palm St at Willow St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"301","lon":-121.8831724,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"adda58ee-59a9-4586-8210-da874168a93b","legacy_id":"301","short_name":"SJ-Q9","lat":37.3184498,"capacity":15,"name":"Willow St at Vine St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"303","lon":-121.905733,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"393ec80c-da84-4d7a-9452-e77f8de7caf2","legacy_id":"303","short_name":"SJ-H9","lat":37.352601,"capacity":23,"name":"San Pedro St at Hedding St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"304","lon":-121.89479783177376,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d6422284-e433-48c5-bf00-751c299189c8","legacy_id":"304","short_name":"SJ-J10","lat":37.3487586867448,"capacity":27,"name":"Jackson St at 5th St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"305","lon":-121.895617,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"13d36dad-f238-426c-9525-ec73552fa0b0","legacy_id":"305","short_name":"SJ-K9","lat":37.342725,"capacity":23,"name":"Ryland Park","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"306","lon":-121.889937,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"bae9be55-04d4-4641-9781-3d1c4b6950f1","legacy_id":"306","short_name":"SJ-L10","lat":37.339301,"capacity":15,"name":"Saint James Park","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"307","lon":-121.900084,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"daac8a55-dd65-4a1e-b0b9-65ec5002c812","legacy_id":"307","short_name":"SJ-L7-1","lat":37.332692,"capacity":23,"name":"SAP Center","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"308","lon":-121.8940901,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"fa83f661-540e-4720-9323-824c6529b796","legacy_id":"308","short_name":"SJ-L9","lat":37.336802,"capacity":15,"name":"San Pedro Square","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"309","lon":-121.886995,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"5c17e1c8-5d21-4309-afcb-e69da27acf31","legacy_id":"309","short_name":"SJ-M10-1","lat":37.337391,"capacity":23,"name":"San Jose City Hall","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"310","lon":-121.88566,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"c52ca98a-70c6-42da-9867-4f35060b5d2e","legacy_id":"310","short_name":"SJ-M10-2","lat":37.335885,"capacity":23,"name":"San Fernando St at 4th St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"311","lon":-121.886943,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"891b961d-b674-49be-9579-71f5feb4598d","legacy_id":"311","short_name":"SJ-M10-3","lat":37.333798,"capacity":19,"name":"Paseo De San Antonio at 2nd St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"312","lon":-121.901782,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"dc2f7685-c3e3-4536-b78b-740479cbb207","legacy_id":"312","short_name":"SJ-M7-1","lat":37.329732,"capacity":35,"name":"San Jose Diridon Station","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"313","lon":-121.8932,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"32974dc6-2aea-45d3-ae66-06f02f45ecaa","legacy_id":"313","short_name":"SJ-M8-1","lat":37.331415,"capacity":23,"name":"Almaden Blvd at San Fernando St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"314","lon":-121.894902,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"67b039eb-ea61-46c0-8da5-1f56de4ad9ca","legacy_id":"314","short_name":"SJ-M9-2","lat":37.333988,"capacity":11,"name":"Santa Clara St at Almaden Blvd","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"315","lon":-122.272968,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"bde0daf3-435d-4e6a-a477-ec9a4b4c17f7","legacy_id":"315","short_name":"OK-F2-2","lat":37.834174,"capacity":15,"name":"Market St at 45th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"316","lon":-121.88693761825562,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"c11e189e-080a-40ba-a0a4-98920af4806b","legacy_id":"316","short_name":"SJ-N10-2","lat":37.33116799422201,"capacity":3,"name":"1st St at San Carlos St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"317","lon":-121.877349,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"53d1c097-50e3-494d-bddc-bdab49c7c39b","legacy_id":"317","short_name":"SJ-N11","lat":37.333955,"capacity":19,"name":"San Salvador St at 9th St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"318","lon":-121.888979,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"caadcda3-bbdb-4cc5-825a-7e3d79ea921e","legacy_id":"318","short_name":"SJ-N9","lat":37.330698,"capacity":15,"name":"San Carlos St at Market St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"321","lon":-122.4027281,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"13f59664-7cdd-451c-b4bb-1e8d660164c8","legacy_id":"321","short_name":"SF-I27","lat":37.7807382,"capacity":31,"name":"Folsom St at 5th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"323","lon":-122.40595042705534,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"07303af0-cf6e-46f2-bf9c-9ebb61f21adc","legacy_id":"323","short_name":"SF-C26-1","lat":37.79801364395978,"capacity":15,"name":"Broadway at Kearny St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"324","lon":-122.40853071212767,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6d0651c2-022b-4e4d-add0-a1bda32e6725","legacy_id":"324","short_name":"SF-F26","lat":37.788299978150825,"capacity":27,"name":"Union Square (Powell St at Post St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"327","lon":-121.8817663192749,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"bd217291-f4ad-4e1d-8c13-e27d39a35fef","legacy_id":"327","short_name":"SJ-N10-3","lat":37.33203868095132,"capacity":19,"name":"5th St at San Salvador St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"336","lon":-122.4073773622513,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"940751e9-8763-4929-9f03-080b95e35a52","legacy_id":"336","short_name":"SF-N26","lat":37.76328094058097,"capacity":27,"name":"Potrero Ave at Mariposa St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"337","lon":-122.26658821105957,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3e04af83-e5cb-4472-95b5-1fc9caefa6fb","legacy_id":"337","short_name":"OK-K6","lat":37.80696976095594,"capacity":27,"name":"Webster St at 19th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"338","lon":-122.27057933807373,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"10c593a0-39c8-45ec-bbf6-fd7fbdf30cb5","legacy_id":"338","short_name":"OK-L6","lat":37.80318908113163,"capacity":23,"name":"13th St at Franklin St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"339","lon":-122.26643800735472,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"2dbb5c93-f749-47b9-bcad-ce6c3b26ba35","legacy_id":"339","short_name":"OK-L7","lat":37.80000163118878,"capacity":27,"name":"Jackson St at 11th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"340","lon":-122.270582,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"fd89514c-f878-4cd5-8113-8e5beead44de","legacy_id":"340","short_name":"BK-I6","lat":37.849735,"capacity":15,"name":"Harmon St at Adeline St","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"341","lon":-121.88927650451659,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d12ba265-5bfe-4a00-a19a-a7299822bd65","legacy_id":"341","short_name":"SJ-M10-4","lat":37.33618830029063,"capacity":11,"name":"Fountain Alley at S 2nd St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"343","lon":-122.393378,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"8013d0b6-dd3a-4f9f-9fee-a1e6e21aef90","legacy_id":"343","short_name":"SF I29-1","lat":37.783176,"capacity":27,"name":"Bryant St at 2nd St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"345","lon":-122.398198,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e66227f7-bd49-46be-b5ee-ce6518ac9dd4","legacy_id":"345","short_name":"SF-M28","lat":37.766594,"capacity":27,"name":"Hubbell St at 16th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"349","lon":-122.4066435,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"90e4028e-afee-480f-b327-4e7cc40f6796","legacy_id":"349","short_name":"SF-I26-","lat":37.7802645,"capacity":27,"name":"Howard St at 6th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"350","lon":-122.40578681230545,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"49cb42b6-8a2e-4e19-a4b5-0f70c5b45d39","legacy_id":"350","short_name":"SF-K26","lat":37.771431362921085,"capacity":31,"name":"8th St at Brannan St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"351","lon":-122.29339957237242,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"72266876-876c-41a9-a1d7-c4b4306b42c3","legacy_id":"351","short_name":"BK-D2","lat":37.86906047545393,"capacity":19,"name":"10th St at University Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"352","lon":-122.40659952163695,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"c0bc3212-1e26-438b-9ebd-ea1d1c8e92ef","legacy_id":"352","short_name":"SF-Y25","lat":37.72694296622841,"capacity":23,"name":"Goettingen St at Bacon St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"355","lon":-122.38879501819609,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"194a64ab-b6b4-4724-bd21-01b4e9cbe629","legacy_id":"355","short_name":"SF-Q30","lat":37.755367132158526,"capacity":31,"name":"23rd St at Tennessee St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"356","lon":-122.42224826223539,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"dd3ef1c7-d691-4b1f-a2d2-a9b04363ad49","legacy_id":"356","short_name":"SF-L22","lat":37.7690102,"capacity":19,"name":"Valencia St at Clinton Park","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"357","lon":-121.89284384250641,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ccf416f8-ccc0-4f82-a659-e5d7851d2bcb","legacy_id":"357","short_name":"SJ-K10","lat":37.34113203547954,"capacity":23,"name":"2nd St at Julian St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"358","lon":-122.39289611577988,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"c4c4484d-0e18-44d4-a992-c5d0550ba94d","legacy_id":"358","short_name":"SF-Y29","lat":37.729278651730276,"capacity":19,"name":"Williams Ave at 3rd St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"359","lon":-122.3988045,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e6e22821-4578-4bae-94d8-b1dabf0cd0cd","legacy_id":"359","short_name":"SF-Y27","lat":37.730079,"capacity":15,"name":"Williams Ave at Apollo St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"360","lon":-122.38952457904814,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"9477b039-8d61-4917-b03a-43efb7d55c90","legacy_id":"360","short_name":"SF-V29","lat":37.73890064447666,"capacity":19,"name":"Jerrold Ave at 3rd St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"361","lon":-122.38565549254417,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"20a07c3b-b37e-41e5-bbeb-632e3aae4b46","legacy_id":"361","short_name":"SF-V30","lat":37.739853017984125,"capacity":19,"name":"Mendell St at Fairfax Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"362","lon":-122.3900556564331,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"dfaaaa16-03ba-40b5-8360-6ebfc97ea541","legacy_id":"362","short_name":"SF-X30","lat":37.7317266935217,"capacity":19,"name":"Lane St at Revere Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"363","lon":-122.3982846736908,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"21883e7a-ea31-4cfc-843a-ca8263b39fda","legacy_id":"363","short_name":"SF-G29-1","lat":37.78749210438603,"capacity":35,"name":"Salesforce Transit Center (Natoma St at 2nd St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"364","lon":-122.3899698,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d88b1cad-d8e4-4eff-9897-9dabbc43bcbb","legacy_id":"364","short_name":"SF-K30-2","lat":37.7719996,"capacity":31,"name":"China Basin St at 3rd St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"365","lon":-122.43194639682768,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"9d47758e-44c7-4a16-a66a-efe7f942e7d1","legacy_id":"365","short_name":"SF-I20","lat":37.78045005996349,"capacity":23,"name":"Turk St at Fillmore St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"368","lon":-122.419342,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3612155a-0fb2-4e66-8bab-f81979bfe54a","legacy_id":"368","short_name":"SF-G23","lat":37.785479,"capacity":27,"name":"Myrtle St at Polk St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"369","lon":-122.41670072078705,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"88fe4d18-7a30-4ffa-8e6d-9c8aa708e30f","legacy_id":"369","short_name":"SF-G24","lat":37.78709359600294,"capacity":27,"name":"Hyde St at Post St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"370","lon":-122.41327822208405,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"11547c9b-2e36-4fc5-9e81-9d5817ae35dc","legacy_id":"370","short_name":"SF-G25","lat":37.7873267660624,"capacity":19,"name":"Jones St at Post St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"371","lon":-122.4132756,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7b2083d3-b1bb-4ef3-ba53-bebc831bd0a4","legacy_id":"371","short_name":"SF-B25","lat":37.8027671,"capacity":19,"name":"Lombard St at Columbus Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"372","lon":-122.26240932941435,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"8d63ada7-a461-44c8-999d-4a8a45117e90","legacy_id":"372","short_name":"OK-K7","lat":37.804036784023594,"capacity":19,"name":"Madison St at 17th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"373","lon":-122.40521550178528,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6e7a5099-b2ba-40d4-9a24-29e0ae7dfd4b","legacy_id":"373","short_name":"SF-R26","lat":37.75179164525661,"capacity":23,"name":"Potrero del Sol Park (25th St at Utah St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"375","lon":-122.446649,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e98999ee-5c3d-48b8-8735-baf6518ad915","legacy_id":"375","short_name":"SF-J16","lat":37.774804,"capacity":31,"name":"Grove St at Masonic Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"376","lon":-122.387449,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"fa0488df-ff17-42f1-9250-5a2bef70072b","legacy_id":"376","short_name":"SF-O30-2","lat":37.7603435,"capacity":23,"name":"Illinois St at 20th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"377","lon":-122.4537048,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"180e4d99-3717-4b99-8200-671af652921f","legacy_id":"377","short_name":"SF-K15-","lat":37.7719511,"capacity":19,"name":"Fell St at Stanyan St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"378","lon":-121.89055323600769,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"bd05ae96-7adc-422d-84ea-697cd3b73afc","legacy_id":"378","short_name":"SJ-J11","lat":37.3477119817597,"capacity":31,"name":"7th St at Empire St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"380","lon":-122.44729131460188,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"175541bb-0ac6-42ba-bb50-071317d1237b","legacy_id":"380","short_name":"SF-I16","lat":37.779046658472055,"capacity":23,"name":"Masonic Ave at Turk St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"381","lon":-122.4260938167572,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"2c3d0e1d-f278-48df-b887-4723d4bcbefe","legacy_id":"381","short_name":"SF-P21","lat":37.75823842417928,"capacity":27,"name":"20th St at Dolores St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"383","lon":-122.4217875,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"63758c7b-dfd9-4548-92a2-28fe8efb2faa","legacy_id":"383","short_name":"SF-I22","lat":37.780819,"capacity":31,"name":"Golden Gate Ave at Franklin St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"384","lon":-122.42156758904456,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ed438146-1615-45c6-bf54-07e2de0adcf1","legacy_id":"384","short_name":"SF-E23","lat":37.79416044174933,"capacity":27,"name":"Jackson St at Polk St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"385","lon":-122.2781754,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6b38a901-f4ae-4aef-b958-3b6efe69e9d6","legacy_id":"385","short_name":"BK-I5","lat":37.8505777,"capacity":14,"name":"Woolsey St at Sacramento St","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"386","lon":-122.41997372800698,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"47fcca45-c6c5-4665-9f34-8852ca3c3ae8","legacy_id":"386","short_name":"SF-Q23-3","lat":37.7520708,"capacity":16,"name":"24th St at Bartlett St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"387","lon":-122.42552250623703,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"1bd76a29-5890-4194-993c-666c09af9993","legacy_id":"387","short_name":"SF-U21","lat":37.73981271734901,"capacity":19,"name":"Randall St at Chenery St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"388","lon":-121.88604980707169,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"534d8e3d-3814-48c9-b25e-1d2b8205fcd9","legacy_id":"388","short_name":"SJ-J12-2","lat":37.35288682729121,"capacity":15,"name":"Backesto Park (Jackson St at 13th St)","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"389","lon":-121.89193725585936,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d87d0852-6abb-428b-86dd-d470c64c8ff7","legacy_id":"389","short_name":"SJ-I11","lat":37.35306166133104,"capacity":23,"name":"Taylor St at 9th St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"390","lon":-122.39044725894927,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6e52cb4a-6cd5-4d29-ad74-68e3b6aa854f","legacy_id":"390","short_name":"SF-S29","lat":37.7504343570623,"capacity":15,"name":"Indiana St at Cesar Chavez St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"391","lon":-121.90443634986876,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3794a34d-764a-4af1-80db-1b0e0ce13fed","legacy_id":"391","short_name":"SJ-G10","lat":37.355029582252904,"capacity":19,"name":"1st St at Younger Ave","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"392","lon":-121.9117319583893,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"cfda2dee-2f6c-400d-a1a7-ba1b2bdc6aee","legacy_id":"392","short_name":"SJ-E9","lat":37.364060462258806,"capacity":15,"name":"Sonora Ave at 1st St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"393","lon":-121.91947817802429,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a96032c0-9ff2-4fbe-8f03-6b3f9816947d","legacy_id":"393","short_name":"SJ-I5","lat":37.33802231313689,"capacity":23,"name":"Asbury St at The Alameda","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"394","lon":-121.8876188993454,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7c086aa7-c33f-47e5-ace9-74c40807c409","legacy_id":"394","short_name":"SJ-J12-1","lat":37.349426308788004,"capacity":23,"name":"10th St at Empire St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"395","lon":-121.90683424472809,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ab8cc22e-0f34-4476-bf81-293cbbb2e69c","legacy_id":"395","short_name":"SJ-F10","lat":37.360854155253826,"capacity":27,"name":"Kerley Dr at Rosemary St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"396","lon":-121.9187942147255,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e81efb0f-faee-43dd-b8e0-1e1f0cad61f1","legacy_id":"396","short_name":"SJ-C9","lat":37.36767805240811,"capacity":23,"name":"Metro Dr at Technology Dr","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"397","lon":-121.90931528806688,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b8cadddb-5ca8-43ec-98f3-2276e036950b","legacy_id":"397","short_name":"SJ-E10","lat":37.36186680025918,"capacity":23,"name":"Gish Rd at 1st St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"398","lon":-122.4168576300144,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"36d93f40-149d-4b0d-ab4c-ea4aad093937","legacy_id":"398","short_name":"SF-D24","lat":37.796470691622936,"capacity":19,"name":"Leavenworth St at Broadway","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"399","lon":-122.4360635,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"43974bf5-147b-4348-aed6-eb29626cb1cf","legacy_id":"399","short_name":"SF-B19","lat":37.8026635,"capacity":27,"name":"Bay St at Fillmore St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"400","lon":-122.433523,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"94b81aae-caf3-4ad6-867f-353057ad98d5","legacy_id":"400","short_name":"SF-A20","lat":37.8044325,"capacity":28,"name":"Buchanan St at North Point St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"401","lon":-121.9168147444725,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"938f4dc0-e393-47e8-9449-3a82b2445662","legacy_id":"401","short_name":"SJ-D9","lat":37.36522655191025,"capacity":19,"name":"Skyport Dr at Technology Dr","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"402","lon":-121.89593575894831,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"c0f36b61-82e5-4f63-9a28-1fa11f0149c9","legacy_id":"402","short_name":"SJ-H11","lat":37.356834352780886,"capacity":23,"name":"Raymond Bernal Jr Memorial Park (8th St at Hedding St)","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"403","lon":-121.89225107431412,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6200707a-ffec-4dde-b142-4df69780264f","legacy_id":"403","short_name":"SJ-H12","lat":37.355692651246365,"capacity":23,"name":"10th St at Mission St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"404","lon":-121.87067806720735,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"c53990d7-f965-40f4-b305-3435e1c95a71","legacy_id":"404","short_name":"SJ-M14","lat":37.345758795303155,"capacity":19,"name":"21st St at Santa Clara St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"405","lon":-121.90597593784332,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e5b1f228-5347-47fc-a079-c1df0e8668f1","legacy_id":"405","short_name":"SJ-N5","lat":37.32345133870681,"capacity":27,"name":"Sunol St at San Carlos St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"406","lon":-121.91000461578369,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"2c00d99d-7518-4ecd-ab53-63e7a34034f6","legacy_id":"406","short_name":"SJ-O4","lat":37.316736478493425,"capacity":27,"name":"Parkmoor Ave at Race St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"407","lon":-121.89783275127412,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b09fd293-4364-4ce6-9341-0ced58486c5a","legacy_id":"407","short_name":"SJ-P6","lat":37.31515792998312,"capacity":15,"name":"Bird Ave at Coe Ave","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"409","lon":-122.2987177222967,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e5741f79-1c88-4f19-8f34-59b4ab198375","legacy_id":"409","short_name":"EM-B0-2","lat":37.83954308266563,"capacity":23,"name":"2100 Powell St","region_id":"13","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"410","lon":-122.38580167293549,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ba6302c6-3960-48c0-99c7-27936e2d1275","legacy_id":"410","short_name":"SF-S30","lat":37.7502901437285,"capacity":19,"name":"Cesar Chavez St at Michigan St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"411","lon":-122.4238085746765,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e2b8752f-c441-4d30-8bcf-f78b378c7c2d","legacy_id":"411","short_name":"SF-J22-1","lat":37.774017937683546,"capacity":27,"name":"Octavia Blvd at Page St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"412","lon":-122.43414044380188,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e0ae39c6-90d9-4302-8da9-582cdaaa2a60","legacy_id":"412","short_name":"SF-W19","lat":37.7328128005294,"capacity":40,"name":"Glen Park BART Station","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"413","lon":-122.4472364,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"90f3a6f3-b34b-48fa-b162-d7fdffd9637f","legacy_id":"413","short_name":"SF-AA15","lat":37.7228179,"capacity":25,"name":"Balboa Park BART Station","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"415","lon":-121.89299941062927,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ea2a009b-6a83-4b81-ba35-c175c492f4f4","legacy_id":"415","short_name":"SJ-P7","lat":37.31975695999228,"capacity":19,"name":"Delmas Ave at Virginia St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"416","lon":-121.9030898809433,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"46f36a3a-f550-4fe0-bfe8-b94fddaf95d8","legacy_id":"416","short_name":"SJ-N6","lat":37.321181834267314,"capacity":23,"name":"Auzerais Ave at Los Gatos Creek Trail","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"417","lon":-121.91232740879057,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"45d77294-6643-4ba4-bd8b-2e8c27430dfe","legacy_id":"417","short_name":"SJ-M5","lat":37.32601084794081,"capacity":23,"name":"Park Ave at Race St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"418","lon":-121.87438488006593,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"30429aed-9a47-4fd9-87fa-0db835aa8265","legacy_id":"418","short_name":"SJ-L13","lat":37.34398467798214,"capacity":19,"name":"17th St at Santa Clara St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"419","lon":-122.42066636681557,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"618f7cf2-3478-4607-9081-71f3a314f56f","legacy_id":"419","short_name":"SF-F23","lat":37.788628795347044,"capacity":15,"name":"Bush St at Polk St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"421","lon":-121.87877833843231,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7d59176c-49dd-4b07-a5ab-bcc109974db3","legacy_id":"421","short_name":"SJ-I14","lat":37.3600013909666,"capacity":19,"name":"23rd St at Taylor St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"422","lon":-121.90914899110793,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d75591d7-080d-46cb-8ada-0fbe6af676fc","legacy_id":"422","short_name":"SJ-J6","lat":37.33677476275722,"capacity":23,"name":"Stockton Ave at Lenzen Ave","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"423","lon":-121.87009871006012,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"94c877d2-f064-4373-b372-3f8997a07f30","legacy_id":"423","short_name":"SJ-R11","lat":37.32031582108647,"capacity":31,"name":"South San Jose State (7th St at Humboldt St)","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"424","lon":-122.43412166833876,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"664a552b-479c-40c3-b702-6b0b63751ce3","legacy_id":"424","short_name":"SF-C20","lat":37.799207926286,"capacity":19,"name":"Greenwich St at Webster St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"425","lon":-121.89632534980774,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"4e704be5-b76d-44a5-8d05-a9ba3e5ae20e","legacy_id":"425","short_name":"SJ-Q5","lat":37.31128394611736,"capacity":19,"name":"Bird Ave at Willow St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"426","lon":-121.91349685192107,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"68c89d1f-407a-4550-a2b7-ecf0ad7ee422","legacy_id":"426","short_name":"SJ-M4","lat":37.3233446905968,"capacity":19,"name":"San Carlos St at Meridian Ave","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"427","lon":-121.90829604864119,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"14750571-71a2-4c2f-8a6a-8f344866eebe","legacy_id":"427","short_name":"SJ-N5-2","lat":37.32096853145443,"capacity":27,"name":"Auzerais Ave at Lincoln Ave","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"431","lon":-122.4506950378418,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f503bee7-b169-43c4-a1ef-5b3ddd859a7a","legacy_id":"431","short_name":"SF-X14","lat":37.728281592452824,"capacity":27,"name":"Judson Ave at Gennessee St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"432","lon":-122.39097297191618,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a6c2bd25-bdaf-4548-baeb-e203cfa52b3e","legacy_id":"432","short_name":"SF-X29","lat":37.73309280990925,"capacity":19,"name":"Quesada Ave at 3rd St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"433","lon":-122.45112150907515,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d09b983e-bbce-4501-9e3c-7dc0fe605ff3","legacy_id":"433","short_name":"SF-W14","lat":37.7316566899845,"capacity":15,"name":"Gennessee St at Monterey Blvd","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"434","lon":-122.39456713199615,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f24186f7-5c85-4be8-8328-55de576a88db","legacy_id":"434","short_name":"SF-Z28","lat":37.72558734385659,"capacity":23,"name":"Carroll Ave at 3rd St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"435","lon":-122.38653659820555,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"9d4c484b-5e48-4115-8f87-e3f19b08c9d4","legacy_id":"435","short_name":"SF-Y30","lat":37.72939320661727,"capacity":19,"name":"Jennings St at Revere Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"436","lon":-122.38996982574461,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ba3699d9-448e-4246-aa88-b7543383af4e","legacy_id":"436","short_name":"SF-W29","lat":37.73629587217104,"capacity":23,"name":"McKinnon Ave at 3rd St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"437","lon":-122.3834355,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6c4a9d85-6ef7-43fc-82a5-172d1a045539","legacy_id":"437","short_name":"SF-V31","lat":37.740048,"capacity":15,"name":"Evans Ave at Mendell St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"438","lon":-122.3944985,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"9d5eb122-9e8b-49db-bf9c-a73c9e88c8d2","legacy_id":"438","short_name":"SF-V28","lat":37.7370395,"capacity":19,"name":"Oakdale Ave at Phelps St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"439","lon":-122.439361,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7dd926da-25ee-48fd-9de7-ad59a83f94a8","legacy_id":"439","short_name":"SF-G18","lat":37.784419,"capacity":31,"name":"Post St at Divisadero St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"440","lon":-122.449228,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"dd34aaa2-dd91-4d83-9f92-e8a2f1cc2f93","legacy_id":"440","short_name":"SF-M15","lat":37.765942,"capacity":23,"name":"Carl St at Cole St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"441","lon":-122.4244135,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f518d262-a592-4b3d-b026-b9215bea13d0","legacy_id":"441","short_name":"SF-B22","lat":37.8023,"capacity":23,"name":"Chestnut St at Van Ness Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"442","lon":-121.86796635389327,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6994e1e6-bb3c-4309-8207-52e6004a7302","legacy_id":"442","short_name":"SJ-H17","lat":37.3655356585599,"capacity":23,"name":"Newbury Park Dr at King Rd","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"443","lon":-121.87627851963045,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a7677436-088f-4c4f-82b9-e769e479ddf1","legacy_id":"443","short_name":"SJ-Q10","lat":37.32086614588923,"capacity":23,"name":"3rd St at Keyes St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"444","lon":-121.88133180141449,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3c12fd1d-c7fc-4570-8fa3-1449c096b818","legacy_id":"444","short_name":"SJ-G15","lat":37.37111641335901,"capacity":19,"name":"Mercado Way at Sierra Rd","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"445","lon":-122.399749,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"2a229da1-a8bc-485a-982b-df0c9de6d11e","legacy_id":"445","short_name":"SF-G28-2","lat":37.7864555,"capacity":20,"name":"Natoma St at New Montgomery St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"446","lon":-122.40731298923492,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"8d2b8bc1-39ed-43c4-83ca-6da147d76bea","legacy_id":"446","short_name":"SF-H26-2","lat":37.78227952975499,"capacity":15,"name":"Mint St at Mission St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"450","lon":-122.47065067291258,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ea3a94b3-f37e-4d32-afaf-e8bc1f89342f","legacy_id":"450","short_name":"SF-M10","lat":37.76393402521409,"capacity":27,"name":"Funston Ave at Irving St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"451","lon":-122.4673775,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"51e8e63d-0883-47e0-b280-210e0c990a49","legacy_id":"451","short_name":"SF-M11","lat":37.7642245,"capacity":23,"name":"10th Ave at Irving St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"453","lon":-122.3969730734825,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e1242828-b89b-4d56-a78e-6a34fd7d3c00","legacy_id":"453","short_name":"SF-J28-2","lat":37.77793367006746,"capacity":19,"name":"Brannan St at 4th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"454","lon":-122.464998,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"2815280a-8263-4537-a944-4fdc32774fde","legacy_id":"454","short_name":"SF-J12","lat":37.7751205,"capacity":23,"name":"7th Ave at Cabrillo St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"455","lon":-122.458104,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"bfb90ed7-6039-4c61-9b13-fb60b1786dde","legacy_id":"455","short_name":"SF-J13","lat":37.775328,"capacity":19,"name":"McAllister St at Arguello Blvd","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"456","lon":-122.45880603790283,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b513d838-5423-490c-bf7d-9f20771cf529","legacy_id":"456","short_name":"SF-G13","lat":37.78146761537824,"capacity":19,"name":"Arguello Blvd at Geary Blvd","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"457","lon":-122.46406316757202,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"09a8c4ba-29d9-43bd-a457-34e8f741d673","legacy_id":"457","short_name":"SF-M12","lat":37.76343361023245,"capacity":27,"name":"7th Ave at Irving St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"458","lon":-122.45763659477234,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ec61cf51-8375-4959-9f51-b225e317abb7","legacy_id":"458","short_name":"SF-M13","lat":37.76578298679633,"capacity":19,"name":"Frederick St at Arguello Blvd","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"459","lon":-122.4055145,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"9cac67a2-9219-455e-b3db-c771311c5b33","legacy_id":"459","short_name":"SF-Q26","lat":37.753259,"capacity":15,"name":"Utah St at 24th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"460","lon":-122.38633275032042,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"87168190-5491-47c8-bb9b-187ddf6052c3","legacy_id":"460","short_name":"SF-M30-2","lat":37.76909488728109,"capacity":12,"name":"Terry Francois Blvd at Warriors Way","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"461","lon":-122.3866885,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"afd6eb75-31a1-4efc-8049-b5617fc2b51f","legacy_id":"461","short_name":"SF-L31-1","lat":37.7717667,"capacity":27,"name":"Terry Francois Blvd at Mission Bay Blvd N","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"462","lon":-122.402087,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d82d9e94-bb62-4001-b6ad-50603199554d","legacy_id":"462","short_name":"SF-B28","lat":37.804648,"capacity":23,"name":"Cruise Terminal at Pier 27","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"463","lon":-122.3767840862274,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"c0d7ba8d-145a-40fc-aa06-f4c06fc49edb","legacy_id":"463","short_name":"SF-V32","lat":37.740321776391326,"capacity":27,"name":"Heron's Head Park","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"465","lon":-122.394495,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a7da1857-747a-4507-9d8f-2a9f95f0babf","legacy_id":"465","short_name":"SF-J29-3","lat":37.7763115,"capacity":18,"name":"San Francisco Caltrain Station (King St at 4th St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"466","lon":-122.46314182877539,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"9b4f6ef0-4568-4f52-8226-ec8432b75802","legacy_id":"466","short_name":"SF-H12","lat":37.77948760924334,"capacity":21,"name":"5th Ave at Anza St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"467","lon":-122.3914651,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"4c98bff8-3bd8-480e-ac8f-25fa4b09f84e","legacy_id":"467","short_name":"SF-I30-2","lat":37.7822586,"capacity":35,"name":"Brannan St at Colin P Kelly Jr St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"468","lon":-122.42295295000075,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"578f166a-d83f-4730-b12d-f1384b7b8c44","legacy_id":"468","short_name":"SF-J22-2","lat":37.77787007022392,"capacity":25,"name":"Grove St at Gough St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"469","lon":-122.43576988577843,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7baa314e-6125-4943-b469-40cd66776104","legacy_id":"469","short_name":"SF-H19","lat":37.781981687527214,"capacity":27,"name":"Ellis St at Pierce St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"470","lon":-121.87729239463806,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b6d76c7a-2082-430b-8403-da5db00becaf","legacy_id":"470","short_name":"SJ-L12","lat":37.3426625921454,"capacity":23,"name":"N 14th St at E Santa Clara St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"471","lon":-122.45462179183959,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"394b8db0-00f7-47b8-b85c-a36fd0de8340","legacy_id":"471","short_name":"SF-J14","lat":37.777609310293336,"capacity":21,"name":"Turk Blvd at Stanyan St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"472","lon":-121.89971968531609,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"eb283c26-5d6b-4da4-a2ac-f0bfe3329856","legacy_id":"472","short_name":"SJ-N7","lat":37.324125951150876,"capacity":23,"name":"Columbia Ave at Bird Ave","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"473","lon":-121.9000107049942,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"cf792877-0b6a-4594-b388-8eb06599b549","legacy_id":"473","short_name":"SJ-Q4","lat":37.309014074275915,"capacity":23,"name":"Willow St at Blewett Ave","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"474","lon":-122.4728095,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7f44afe0-3e39-41d5-a73d-121395143d81","legacy_id":"474","short_name":"SF-G10-2","lat":37.780364,"capacity":27,"name":"14th Ave at Geary Blvd","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"475","lon":-121.8636494,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"59a78eb1-a501-4145-b21f-bc2397898905","legacy_id":"475","short_name":"SJ-N14","lat":37.3398531,"capacity":15,"name":"22nd St at William St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"476","lon":-121.86652064323424,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ea511b7f-eae4-4ee8-9bba-ee7445e5133a","legacy_id":"476","short_name":"SJ-N14-2","lat":37.338468014146,"capacity":15,"name":"19th St at William St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"477","lon":-122.47610360383989,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"be15716e-f097-437b-8738-1db234d03b5e","legacy_id":"477","short_name":"SF-G9","lat":37.78071988575564,"capacity":23,"name":"17th Ave at Geary Blvd","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"478","lon":-122.42578603327274,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"c8a342d4-3bf7-4619-9ae1-9b382d5440e1","legacy_id":"478","short_name":"SF-B21","lat":37.80028668467315,"capacity":19,"name":"Greenwich St at Franklin St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"479","lon":-122.4233016371727,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"586dce76-7324-4117-9c58-7ed6d00151bf","legacy_id":"479","short_name":"SF-E22","lat":37.792979854977766,"capacity":27,"name":"Washington St at Van Ness Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"480","lon":-122.43540108203887,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"434e592c-be93-4300-b76a-98de4cd3326e","legacy_id":"480","short_name":"SF-F19","lat":37.788568914161615,"capacity":19,"name":"Steiner St at California St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"481","lon":-122.44737446308135,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"1e5323d3-5bd3-4259-a9d4-aec0e09d8f56","legacy_id":"481","short_name":"SF-H16","lat":37.781130551698666,"capacity":27,"name":"O'Farrell St at Masonic Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"482","lon":-122.4035775,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ab03623f-6fe9-4e9b-b38b-6e98513082d1","legacy_id":"482","short_name":"SF-K27-2","lat":37.772712,"capacity":23,"name":"Brannan St at 7th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"483","lon":-122.40088641643523,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"22a9d86b-ba44-4f2f-b167-355f99c7968c","legacy_id":"483","short_name":"SF-L27-2","lat":37.77122901793374,"capacity":27,"name":"7th St at King St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"485","lon":-122.4713658,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"91ab197f-ceb5-4dbe-b907-532afa8db43b","legacy_id":"485","short_name":"SF-J10","lat":37.7735636,"capacity":27,"name":"Funston Ave at Fulton St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"486","lon":-122.45864510536192,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f0083331-9bf8-407f-bba2-ab00c8968db9","legacy_id":"486","short_name":"SF-H13","lat":37.778486986397496,"capacity":19,"name":"Arguello Blvd at Edward St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"487","lon":-122.41088703274725,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"fb39d594-8fdb-440e-80c5-8a544b339007","legacy_id":"487","short_name":"SF-C25","lat":37.800496036682574,"capacity":30,"name":"Powell St at Columbus Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"488","lon":-122.3922705,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"2dfbc387-8432-4ac3-9526-fc79b5046eb8","legacy_id":"488","short_name":"SF-AA28","lat":37.722601,"capacity":19,"name":"Egbert Ave at Jennings St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"489","lon":-122.47196763753891,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"5a895f98-fd79-4db0-b19f-e2d312acf148","legacy_id":"489","short_name":"SF-G10-1","lat":37.782497875963806,"capacity":27,"name":"Funston Ave at Clement St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"490","lon":-122.46763586997984,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"48c7a222-5ed0-4b31-b520-4b6bfc5ca54d","legacy_id":"490","short_name":"SF-G11","lat":37.781840715520495,"capacity":27,"name":"9th Ave at Geary Blvd","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"491","lon":-121.89564406871794,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d68c980f-e659-4407-8e69-fea3ea84476a","legacy_id":"491","short_name":"SJ-L9-2","lat":37.338670604639425,"capacity":23,"name":"Devine St at San Pedro St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"492","lon":-122.43259012699126,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"63b2136c-c947-473e-977e-8cc0e6347699","legacy_id":"492","short_name":"SF-E20","lat":37.79080303242391,"capacity":19,"name":"Webster St at Clay St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"493","lon":-122.40790843963623,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b53670c4-7b44-4b35-88da-c8763a8802a2","legacy_id":"493","short_name":"SF-J26-2","lat":37.77666378283064,"capacity":19,"name":"Folsom St at 7th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"494","lon":-121.9049111008644,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"14f62ff9-1893-4379-8fe4-db578da909ee","legacy_id":"494","short_name":"SJ-M6-2","lat":37.326282324105776,"capacity":19,"name":"Park Ave at Laurel Grove Ln","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"495","lon":-121.88438951969147,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"218e755d-c0d3-4b33-8afc-b4b0e8ab3a41","legacy_id":"495","short_name":"SJ-L11","lat":37.343208488473465,"capacity":19,"name":"St James St at 9th St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"496","lon":-122.423534989357,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"cb20f487-2e7d-4c11-9f19-2b669ff9fd7f","legacy_id":"496","short_name":"SF-C22","lat":37.79762790889688,"capacity":23,"name":"Green St at Van Ness Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"497","lon":-122.43289589881897,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"57b62dd0-e022-47a7-ad7e-340fbe98188a","legacy_id":"497","short_name":"SF-X19","lat":37.73017446887281,"capacity":19,"name":"Alemany Blvd at Silver Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"498","lon":-122.45244383811949,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"47894de7-32c7-48ac-aa44-57c8def8a7f3","legacy_id":"498","short_name":"SF-Y14","lat":37.7258897887525,"capacity":23,"name":"Frida Kahlo Way at Cloud Cir","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"499","lon":-122.419976,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3a415706-d63c-4a35-9b1c-bb9127ddc925","legacy_id":"499","short_name":"SF-K23","lat":37.772219,"capacity":22,"name":"Otis St at Brady St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"500","lon":-122.4017154,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6732f1f5-616c-46bc-81e6-67c5319b3c73","legacy_id":"500","short_name":"SF-B28-2","lat":37.8020552,"capacity":31,"name":"Battery St at Filbert St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":false,"station_id":"501","lon":-122.4432384967804,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"fed768af-80bd-4567-9a94-df9b7e369433","legacy_id":"501","short_name":"SF-Y16","lat":37.72489268384971,"capacity":0,"name":"Balboa Park (San Jose Ave at Sgt. John V. Young Ln","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"502","lon":-122.44380980730057,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7dfe1c94-5eae-41a7-ad42-3d3f4c7610a3","legacy_id":"502","short_name":"SF-Z16","lat":37.72238229348268,"capacity":24,"name":"Delano Ave at Oneida Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"503","lon":-122.440105676651,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ec02b98c-1713-4033-9466-47146c77d476","legacy_id":"503","short_name":"SF-BB17","lat":37.71616094545787,"capacity":19,"name":"London St at Geneva Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":false,"station_id":"504","lon":-122.43830323219298,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"c03c4e52-af17-45f6-adcd-47318c1d3aec","legacy_id":"504","short_name":"SF-AA17","lat":37.72154366557775,"capacity":0,"name":"Onondaga Ave at Alemany Blvd","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":false,"station_id":"505","lon":-122.43349134922028,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f730f60a-6481-45fa-a956-eb9b511f89e4","legacy_id":"505","short_name":"SF-CC18","lat":37.71319253793744,"capacity":0,"name":"Geneva Ave at Moscow St","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"506","lon":-122.4653774499893,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"df4b01d6-90bb-4faa-8437-d0391b8d115b","legacy_id":"506","short_name":"SF-G12","lat":37.78243851977672,"capacity":24,"name":"7th Ave at Clement St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"508","lon":-122.442203,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a7a6f245-fb70-495f-9598-89fa03d120f7","legacy_id":"508","short_name":"SF-H17","lat":37.782574,"capacity":27,"name":"St. Joseph's Ave at Geary Blvd","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"509","lon":-122.38689199090005,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"1a7a0757-fbbb-497e-b92b-cb0817cab274","legacy_id":"509","short_name":"SF-U30","lat":37.74197831512656,"capacity":19,"name":"Evans Ave at Newhall St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"510","lon":-122.431821,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a5c3e383-f1b0-449f-8ad4-96291f38c636","legacy_id":"510","short_name":"SF-G20","lat":37.785394,"capacity":31,"name":"Post St at Webster St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"511","lon":-122.450012,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"8971b4a0-9868-422f-904c-d4c180fc34ae","legacy_id":"511","short_name":"SF-H15","lat":37.78068,"capacity":29,"name":"Anza St at Collins St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"512","lon":-122.440683,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e8bf72d0-c2cc-4e22-b678-4e715c2bd9ff","legacy_id":"512","short_name":"SF-E18","lat":37.7895875,"capacity":19,"name":"Divisadero St at Clay St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"513","lon":-122.40423738710535,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b8c5214e-5d26-47d0-aba5-d62ef145d083","legacy_id":"513","short_name":"SF-M26-2","lat":37.7685449,"capacity":27,"name":"Alameda St at Henry Adams St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"514","lon":-122.4500525,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e061c062-a4eb-4a4d-a19c-a6c6e3e03e1d","legacy_id":"514","short_name":"SF-F16","lat":37.7866115,"capacity":23,"name":"Laurel St at California St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"515","lon":-122.477667,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"37cf6b02-5cb0-4461-bf45-0ae60a1a2fb7","legacy_id":"515","short_name":"SF-F9","lat":37.785111,"capacity":23,"name":"18th Ave at California St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"516","lon":-122.492844,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"9818c353-b93e-4775-b23c-d602913945ca","legacy_id":"516","short_name":"SF-G5","lat":37.781722,"capacity":23,"name":"Clement St at 32nd Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"517","lon":-122.45342284440996,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"272f64c8-d2aa-4fe8-8fcd-9853367dc8b8","legacy_id":"517","short_name":"SF-F15","lat":37.78657849953654,"capacity":24,"name":"Spruce St at California St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"518","lon":-122.405943,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6197f964-9002-4ddb-b4df-70d0bcf25ee9","legacy_id":"518","short_name":"SF-P26","lat":37.756808,"capacity":15,"name":"22nd St at Potrero Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"519","lon":-122.399998,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e60d1fa9-6274-4137-9fa2-160a32e29afa","legacy_id":"519","short_name":"SF-K28-3","lat":37.773238,"capacity":23,"name":"Townsend St at 6th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"520","lon":-122.4827855,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f8f12028-2117-4737-9a03-04548ad95e82","legacy_id":"520","short_name":"SF-G7","lat":37.7819295,"capacity":19,"name":"23rd Ave at Clement St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"521","lon":-122.509071,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"874736bb-35c8-48e8-a4d7-e8e811d418da","legacy_id":"521","short_name":"SF-J1","lat":37.772954,"capacity":23,"name":"48th Ave at Cabrillo St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":false,"station_id":"523","lon":-122.429315,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"c6fc1429-ff65-428a-920c-f07aacdf51e8","legacy_id":"523","short_name":"SF-E21","lat":37.791966,"capacity":0,"name":"Lafayette Park (Laguna St at Washington St)","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"524","lon":-122.494064,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"4938bd2c-37c1-4be9-9ad3-3b3d3d589248","legacy_id":"524","short_name":"SF-J5","lat":37.775681,"capacity":19,"name":"34th Ave at Balboa St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"525","lon":-122.480383,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"8777c08a-3535-4da3-bae1-a22f470177f3","legacy_id":"525","short_name":"SF-G8","lat":37.7799345,"capacity":18,"name":"21st Ave at Geary Blvd","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"527","lon":-122.395626,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"31d616be-a4ad-48ec-b8be-c08650a50136","legacy_id":"527","short_name":"SF-G29-3","lat":37.788032,"capacity":39,"name":"Tehama St at 1st St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"528","lon":-122.456303,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"41c6b82b-2e59-4fa2-a7ad-f6cd0bcd9130","legacy_id":"528","short_name":"SF-H14","lat":37.780949,"capacity":19,"name":"Stanyan St at Geary Blvd","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"529","lon":-122.429772,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"71af92f2-0999-4917-b7da-36e122a8f967","legacy_id":"529","short_name":"SF-W19-2","lat":37.734966,"capacity":19,"name":"Arlington St at Roanoke St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"530","lon":-122.442878,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"71944da6-f667-4ca6-ace6-70765d46a529","legacy_id":"530","short_name":"SF-G17","lat":37.783973,"capacity":27,"name":"Post St at Baker St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"531","lon":-122.48797,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d4a88e33-78c4-4bc4-86a5-da0e3dd6e4b6","legacy_id":"531","short_name":"SF-G6","lat":37.779673,"capacity":19,"name":"28th Ave at Geary Blvd","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"532","lon":-122.498498,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"bf7e294f-11cc-4b4a-9a37-036d0dc0f648","legacy_id":"532","short_name":"SF-J3","lat":37.775522,"capacity":18,"name":"38th Ave at Balboa St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"533","lon":-122.3988357,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"987bd538-e619-4284-beb8-c13c65fcf38b","legacy_id":"533","short_name":"SF-E28-2","lat":37.7930958,"capacity":32,"name":"Front St at California St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"534","lon":-122.426527,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"4f7840d9-aca0-4a53-8664-e9e043d21a72","legacy_id":"534","short_name":"SF-I21","lat":37.778307,"capacity":31,"name":"Fulton St at Laguna St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"536","lon":-122.437261,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3bc86f37-b447-4c09-93bc-d98785d3e49c","legacy_id":"536","short_name":"SF-A19","lat":37.805376,"capacity":27,"name":"Fillmore St at Jefferson St","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"537","lon":-122.482735,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"44647200-5fea-47fc-a629-c1884554afb8","legacy_id":"537","short_name":"SF-Z6","lat":37.722001,"capacity":30,"name":"Font Blvd at Arballo Dr","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"538","lon":-122.442326,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"fbf5768b-ac38-4841-9d94-e56a907dc5d6","legacy_id":"538","short_name":"SF-K17-2","lat":37.770519,"capacity":12,"name":"Haight St at Lyon St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":false,"station_id":"539","lon":-122.442702,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7b6183c2-7305-43de-953e-a502e04f783d","legacy_id":"539","short_name":"SF-A18","lat":37.802949,"capacity":0,"name":"North Point St at Divisadero St","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"540","lon":-122.476163,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b32262f7-54fe-4ea7-9859-e761407169a5","legacy_id":"540","short_name":"SF-W8","lat":37.731085,"capacity":27,"name":"Eucalyptus Dr at 20th Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"541","lon":-122.478859,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"c2169cbb-4ff3-405a-a656-729171b13d47","legacy_id":"541","short_name":"SF-Z7","lat":37.72095,"capacity":31,"name":"Holloway Ave at Arellano Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"543","lon":-122.511208,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"702e67bf-a75e-4352-8b20-425a19c1845c","legacy_id":"543","short_name":"SF-H0","lat":37.775211,"capacity":27,"name":"Great Hwy at Balboa St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"544","lon":-122.427457,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"236c090a-68d6-4e2a-8a93-9d701ec242d9","legacy_id":"544","short_name":"SF-C21","lat":37.797249,"capacity":19,"name":"Allyne Park (Green St at Gough St)","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"545","lon":-122.463774,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"0a8d57e4-f30f-4aa8-8409-4712e9869de0","legacy_id":"545","short_name":"SF-O12","lat":37.7587,"capacity":27,"name":"7th Ave at Lawton St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"546","lon":-122.26914636790752,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"492edeb7-7c9f-4845-b5cc-442faedb3a56","legacy_id":"546","short_name":"OK-L6-2","lat":37.802688402040665,"capacity":19,"name":"13th St at Webster St","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"547","lon":-122.40927904844284,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e01b3ae0-0543-484f-9085-bff4af3c174c","legacy_id":"547","short_name":"SF-A26","lat":37.80717108096738,"capacity":19,"name":"North Point St at Grant Ave","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"548","lon":-122.411536,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"2d63ccd8-6a9a-49de-9404-2ebb9ac3bf59","legacy_id":"548","short_name":"SF-A25","lat":37.806929,"capacity":28,"name":"North Point St at Powell St","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"549","lon":-122.42313,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"48ce0031-e9e2-4336-a60c-d9fd6d6403a2","legacy_id":"549","short_name":"SF-A22","lat":37.805442,"capacity":35,"name":"North Point St at Polk St","region_id":"3","rental_methods":["KEY","CREDITCARD"]}]},"last_updated":1632287915,"ttl":5} \ No newline at end of file From f16a7fe9a0e6f299dff1567ed1d50a2f990e37d2 Mon Sep 17 00:00:00 2001 From: nlarge-google Date: Thu, 7 Oct 2021 21:34:56 +0000 Subject: [PATCH 3/4] fix: Now uses chunksize :) --- .../run_csv_transform_kub/csv_transform.py | 161 +++++++++++------- .../bikeshare_stations_dag.py | 3 +- .../bikeshare_stations/pipeline.yaml | 5 +- 3 files changed, 102 insertions(+), 67 deletions(-) diff --git a/datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub/csv_transform.py b/datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub/csv_transform.py index ed7bedbf2..28589d92c 100644 --- a/datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub/csv_transform.py +++ b/datasets/san_francisco_bikeshare_stations/_images/run_csv_transform_kub/csv_transform.py @@ -12,12 +12,10 @@ # See the License for the specific language governing permissions and # limitations under the License. -import datetime import json import logging import os import pathlib -from shutil import copyfile import pandas as pd import requests @@ -28,40 +26,86 @@ def main( source_url_json: str, source_file: pathlib.Path, target_file: pathlib.Path, + chunksize: str, target_gcs_bucket: str, target_gcs_path: str, ) -> None: logging.info("San Francisco Bikeshare Stations process started") - logging.info("creating 'files' folder") pathlib.Path("./files").mkdir(parents=True, exist_ok=True) - logging.info("creating 'templates' folder") - pathlib.Path("./templates").mkdir(parents=True, exist_ok=True) - - logging.info(f"Extracting URL for stations: {source_url_json}") - source_file_stations_csv = str(source_file).replace(".csv", "") + "_stations.csv" source_file_stations_json = str(source_file).replace(".csv", "") + "_stations.json" + download_file_json(source_url_json, source_file_stations_json, source_file) + + chunksz = int(chunksize) + + logging.info(f"Opening batch file {source_file}") + with pd.read_csv( + source_file, # path to main source file to load in batches + engine="python", + encoding="utf-8", + quotechar='"', # string separator, typically double-quotes + chunksize=chunksz, # size of batch data, in no. of records + sep=",", # data column separator, typically "," + ) as reader: + for chunk_number, chunk in enumerate(reader): + target_file_batch = str(target_file).replace( + ".csv", "-" + str(chunk_number) + ".csv" + ) + df = pd.DataFrame() + df = pd.concat([df, chunk]) + process_chunk(df, target_file_batch, target_file, (not chunk_number == 0)) - logging.info(f"Downloading stations json file {source_url_json}") - download_file_json( - source_url_json, source_file_stations_json, source_file_stations_csv - ) - copyfile(source_file_stations_json, "./templates/bikeshare_stations.json") + upload_file_to_gcs(target_file, target_gcs_bucket, target_gcs_path) + + logging.info("San Francisco Bikeshare Stations process completed") + + +def process_chunk( + df: pd.DataFrame, target_file_batch: str, target_file: str, skip_header: bool +) -> None: + df = rename_headers(df) + df = filter_empty_data(df) + df = generate_location(df) + df = resolve_datatypes(df) + df = reorder_headers(df) + save_to_new_file(df, file_path=str(target_file_batch)) + append_batch_file(target_file_batch, target_file, skip_header, not (skip_header)) + + +def rename_headers(df: pd.DataFrame) -> None: + logging.info("Renaming Headers") + header_names = { + "data.stations.station_id": "station_id", + "data.stations.name": "name", + "data.stations.short_name": "short_name", + "data.stations.lat": "lat", + "data.stations.lon": "lon", + "data.stations.region_id": "region_id", + "data.stations.rental_methods": "rental_methods", + "data.stations.capacity": "capacity", + "data.stations.eightd_has_key_dispenser": "eightd_has_key_dispenser", + "data.stations.has_kiosk": "has_kiosk", + "data.stations.external_id": "external_id", + } - logging.info(f"Opening stations file {source_file_stations_csv}") - df = pd.read_csv(source_file_stations_csv) + df.rename(columns=header_names) - logging.info(f"Transformation Process Starting.. {source_file}") + return df - logging.info(f"Renaming Columns {source_file_stations_csv}") - rename_headers(df) +def filter_empty_data(df: pd.DataFrame) -> pd.DataFrame: + logging.info("Filter rows with empty key data") df = df[df["station_id"] != ""] df = df[df["name"] != ""] df = df[df["lat"] != ""] df = df[df["lon"] != ""] + return df + + +def generate_location(df: pd.DataFrame) -> pd.DataFrame: + logging.info("Generating location data") df["station_geom"] = ( "POINT(" + df["lon"][:].astype("string") @@ -70,9 +114,18 @@ def main( + ")" ) + return df + + +def resolve_datatypes(df: pd.DataFrame) -> pd.DataFrame: + logging.info("Resolving datatypes") df["region_id"] = df["region_id"].astype("Int64") - logging.info("Re-ordering Headers") + return df + + +def reorder_headers(df: pd.DataFrame) -> pd.DataFrame: + logging.info("Reordering Headers") df = df[ [ "station_id", @@ -90,47 +143,28 @@ def main( ] ] - logging.info(f"Transformation Process complete .. {source_file}") - - logging.info(f"Saving to output file.. {target_file}") - - try: - save_to_new_file(df, file_path=str(target_file)) - except Exception as e: - logging.error(f"Error saving output file: {e}.") - - logging.info( - f"Uploading output file to.. gs://{target_gcs_bucket}/{target_gcs_path}" - ) - upload_file_to_gcs(target_file, target_gcs_bucket, target_gcs_path) - - logging.info("San Francisco Bikeshare Stations process completed") + return df -def datetime_from_int(dt_int: int) -> str: - return datetime.datetime.fromtimestamp(dt_int).strftime("%Y-%m-%d %H:%M:%S") - - -def convert_dt_format(date_str: str, time_str: str) -> str: - return str(datetime.datetime.strptime(date_str, "%m/%d/%Y").date()) + " " + time_str - - -def rename_headers(df: pd.DataFrame) -> None: - header_names = { - "data.stations.station_id": "station_id", - "data.stations.name": "name", - "data.stations.short_name": "short_name", - "data.stations.lat": "lat", - "data.stations.lon": "lon", - "data.stations.region_id": "region_id", - "data.stations.rental_methods": "rental_methods", - "data.stations.capacity": "capacity", - "data.stations.eightd_has_key_dispenser": "eightd_has_key_dispenser", - "data.stations.has_kiosk": "has_kiosk", - "data.stations.external_id": "external_id", - } - - df.rename(columns=header_names, inplace=True) +def append_batch_file( + batch_file_path: str, target_file_path: str, skip_header: bool, truncate_file: bool +) -> None: + data_file = open(batch_file_path, "r") + if truncate_file: + target_file = open(target_file_path, "w+").close() + target_file = open(target_file_path, "a+") + if skip_header: + logging.info( + f"Appending batch file {batch_file_path} to {target_file_path} with skip header" + ) + next(data_file) + else: + logging.info(f"Appending batch file {batch_file_path} to {target_file_path}") + target_file.write(data_file.read()) + data_file.close() + target_file.close() + if os.path.exists(batch_file_path): + os.remove(batch_file_path) def save_to_new_file(df, file_path) -> None: @@ -143,17 +177,15 @@ def download_file_json( # this function extracts the json from a source url and creates # a csv file from that data to be used as an input file + logging.info(f"Downloading stations json file {source_url_json}") # download json url into object r r = requests.get(source_url_json + ".json", stream=True) # push object r (json) into json file - try: - with open(source_file_json, "wb") as f: - for chunk in r: - f.write(chunk) - except ValueError: - print(f"Writing JSON to {source_file_json} has failed") + with open(source_file_json, "wb") as f: + for chunk in r: + f.write(chunk) f = open( source_file_json.strip(), @@ -177,6 +209,7 @@ def upload_file_to_gcs(file_path: pathlib.Path, gcs_bucket: str, gcs_path: str) source_url_json=os.environ["SOURCE_URL_JSON"], source_file=pathlib.Path(os.environ["SOURCE_FILE"]).expanduser(), target_file=pathlib.Path(os.environ["TARGET_FILE"]).expanduser(), + chunksize=os.environ["CHUNKSIZE"], target_gcs_bucket=os.environ["TARGET_GCS_BUCKET"], target_gcs_path=os.environ["TARGET_GCS_PATH"], ) diff --git a/datasets/san_francisco_bikeshare_stations/bikeshare_stations/bikeshare_stations_dag.py b/datasets/san_francisco_bikeshare_stations/bikeshare_stations/bikeshare_stations_dag.py index 0fe57da7b..e041ca4d5 100644 --- a/datasets/san_francisco_bikeshare_stations/bikeshare_stations/bikeshare_stations_dag.py +++ b/datasets/san_francisco_bikeshare_stations/bikeshare_stations/bikeshare_stations_dag.py @@ -61,10 +61,11 @@ "SOURCE_URL_JSON": "https://gbfs.baywheels.com/gbfs/fr/station_information", "SOURCE_FILE": "files/data.csv", "TARGET_FILE": "files/data_output.csv", + "CHUNKSIZE": "750000", "TARGET_GCS_BUCKET": "{{ var.value.composer_bucket }}", "TARGET_GCS_PATH": "data/san_francisco_bikeshare_stations/bikeshare_stations/data_output.csv", }, - resources={"limit_memory": "2G", "limit_cpu": "1"}, + resources={"limit_memory": "8G", "limit_cpu": "3"}, ) # Task to load CSV data to a BigQuery table diff --git a/datasets/san_francisco_bikeshare_stations/bikeshare_stations/pipeline.yaml b/datasets/san_francisco_bikeshare_stations/bikeshare_stations/pipeline.yaml index cdfec1d04..37ee16150 100644 --- a/datasets/san_francisco_bikeshare_stations/bikeshare_stations/pipeline.yaml +++ b/datasets/san_francisco_bikeshare_stations/bikeshare_stations/pipeline.yaml @@ -57,11 +57,12 @@ dag: SOURCE_URL_JSON: "https://gbfs.baywheels.com/gbfs/fr/station_information" SOURCE_FILE: "files/data.csv" TARGET_FILE: "files/data_output.csv" + CHUNKSIZE: "750000" TARGET_GCS_BUCKET: "{{ var.value.composer_bucket }}" TARGET_GCS_PATH: "data/san_francisco_bikeshare_stations/bikeshare_stations/data_output.csv" resources: - limit_memory: "2G" - limit_cpu: "1" + limit_memory: "8G" + limit_cpu: "3" - operator: "GoogleCloudStorageToBigQueryOperator" description: "Task to load CSV data to a BigQuery table" From cf20d7d858b85e8f065494c1b759af0acdb21e67 Mon Sep 17 00:00:00 2001 From: Adler Santos Date: Wed, 13 Oct 2021 10:46:57 -0400 Subject: [PATCH 4/4] Delete bikeshare_stations.json --- templates/bikeshare_stations.json | 1 - 1 file changed, 1 deletion(-) delete mode 100644 templates/bikeshare_stations.json diff --git a/templates/bikeshare_stations.json b/templates/bikeshare_stations.json deleted file mode 100644 index d1b5b8772..000000000 --- a/templates/bikeshare_stations.json +++ /dev/null @@ -1 +0,0 @@ -{"data":{"stations":[{"has_kiosk":true,"station_id":"3","lon":-122.405234,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"1b13a386-c5f4-42cc-bc3b-ded95982e090","legacy_id":"3","short_name":"SF-G27","lat":37.7861375,"capacity":35,"name":"Powell St BART Station (Market St at 4th St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"4","lon":-122.4089225,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a00d04e6-0159-466a-b3ab-23f9550f418c","legacy_id":"4","short_name":"SF-G26","lat":37.785876,"capacity":35,"name":"Cyril Magnin St at Ellis St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"5","lon":-122.40844488143921,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a1e0b4b2-2c5c-4201-a78c-9e8a2152ab4e","legacy_id":"5","short_name":"SF-H26","lat":37.783899357084934,"capacity":35,"name":"Powell St BART Station (Market St at 5th St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"6","lon":-122.403234,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"23a2bad4-3ea1-4545-87eb-acbee3efccfc","legacy_id":"6","short_name":"SF-A27","lat":37.80477,"capacity":23,"name":"The Embarcadero at Sansome St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"7","lon":-122.27173805236816,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"9e3efff1-3d42-46fd-8206-4021277ba6c2","legacy_id":"7","short_name":"OK-L5","lat":37.8045623549303,"capacity":35,"name":"Frank H Ogawa Plaza","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"8","lon":-122.398525,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7c7ac914-40e5-426d-b9c4-f12b1a556be8","legacy_id":"8","short_name":"SF-C28-1","lat":37.799953,"capacity":23,"name":"The Embarcadero at Vallejo St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"9","lon":-122.40086898207666,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"75f6691a-df0a-4d7a-8b35-e5ffe33add4f","legacy_id":"9","short_name":"SF-C28-2","lat":37.79857210846256,"capacity":19,"name":"Broadway at Battery St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"10","lon":-122.4046885,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e5b0aca4-2ce6-49f8-82e8-8eed6e004147","legacy_id":"10","short_name":"SF-D27","lat":37.795402,"capacity":31,"name":"Washington St at Kearny St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"11","lon":-122.398436,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"faad71bc-21e3-4ce1-8b84-63f782a91d1b","legacy_id":"11","short_name":"SF-D28","lat":37.79728,"capacity":35,"name":"Davis St at Jackson St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"12","lon":-122.3945855,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"4fc98cbd-9c9b-401b-95a6-927e30bdbd46","legacy_id":"12","short_name":"SF-D29","lat":37.7963894,"capacity":23,"name":"Pier 1/2 at The Embarcadero","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"13","lon":-122.402855,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e82e7160-d8fb-452b-8f27-c0f75926d080","legacy_id":"13","short_name":"SF-E27","lat":37.7942465,"capacity":22,"name":"Commercial St at Montgomery St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"14","lon":-122.39997,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ed1bf0f9-aa06-4f57-8cd6-5775ff3c29f0","legacy_id":"14","short_name":"SF-E28","lat":37.795001,"capacity":31,"name":"Clay St at Battery St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"15","lon":-122.394203,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b2e9118f-aafb-49fb-b237-4ba08e21f51f","legacy_id":"15","short_name":"SF-E29-1","lat":37.795392,"capacity":38,"name":"San Francisco Ferry Building (Harry Bridges Plaza)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"16","lon":-122.3948805,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"84b1ea89-19b6-4f78-92e2-2a161f75e67e","legacy_id":"16","short_name":"SF-E29-2","lat":37.794525,"capacity":27,"name":"Market St at Steuart St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"17","lon":-122.397086,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"16fea24d-ec2c-4e37-8f63-fc9f793de2cf","legacy_id":"17","short_name":"SF-E29-3","lat":37.792251,"capacity":29,"name":"Embarcadero BART Station (Beale St at Market St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"18","lon":-122.26017236709595,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"790da352-5aaa-4bb9-8453-e8ec2f78c038","legacy_id":"18","short_name":"OK-A2","lat":37.85022187449679,"capacity":11,"name":"Telegraph Ave at Alcatraz Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"19","lon":-122.403452,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3213dcdb-2ba7-46ad-b358-258a34bde9e0","legacy_id":"19","short_name":"SF-F27","lat":37.788975,"capacity":35,"name":"Post St at Kearny St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"20","lon":-122.399051,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"cf56994c-cdd6-4586-9f56-eea2f51e81ae","legacy_id":"20","short_name":"SF-F28-1","lat":37.7913,"capacity":23,"name":"Mechanics Monument Plaza (Market St at Bush St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"21","lon":-122.400808,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"2b935f1b-2659-4d82-a348-6a3bb083914d","legacy_id":"21","short_name":"SF-F28-2","lat":37.7896195,"capacity":39,"name":"Montgomery St BART Station (Market St at 2nd St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"22","lon":-122.3938751220703,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"083eaf2a-4d3f-4d83-986a-98f67f7f22b4","legacy_id":"22","short_name":"SF-F29","lat":37.790296440371655,"capacity":31,"name":"Howard St at Beale St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"23","lon":-122.391038,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6327ad76-fdd0-4ea8-a09a-f1bccca719b3","legacy_id":"23","short_name":"SF-F30-1","lat":37.7914015,"capacity":23,"name":"The Embarcadero at Steuart St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"24","lon":-122.39033527452119,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"380aa51b-4c0a-4388-ad78-37edf7338a3e","legacy_id":"24","short_name":"SF-F30-2","lat":37.7896297,"capacity":19,"name":"Spear St at Folsom St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"25","lon":-122.39871607983103,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d79ae08e-a8d2-4aad-9f98-9b20afb8f6e0","legacy_id":"25","short_name":"SF-G28-1","lat":37.78646613354221,"capacity":18,"name":"Howard St at 2nd St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"26","lon":-122.39438,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a40fc1eb-e8e9-4d41-8f77-71365f0d9064","legacy_id":"26","short_name":"SF-G29-2","lat":37.78729,"capacity":23,"name":"1st St at Folsom St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"27","lon":-122.3918085,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"4a0d887c-7e9d-4f15-a28b-aeeff05f81b6","legacy_id":"27","short_name":"SF-G30-1","lat":37.787963,"capacity":23,"name":"Beale St at Harrison St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"28","lon":-122.3881105,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"9fae2998-e458-47f8-9c7c-978e01f05330","legacy_id":"28","short_name":"SF-G30-2","lat":37.787332,"capacity":19,"name":"The Embarcadero at Bryant St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"29","lon":-122.43944585323335,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3144f47a-86f7-40f6-9ff0-5c8120babf6a","legacy_id":"29","short_name":"SF-H18","lat":37.782404601934104,"capacity":27,"name":"O'Farrell St at Divisadero St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"30","lon":-122.395282,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ea11aa7f-c070-46a4-a074-70604340efa2","legacy_id":"30","short_name":"SF-J29","lat":37.776598,"capacity":19,"name":"San Francisco Caltrain (Townsend St at 4th St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"31","lon":-122.43455886840819,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"08302771-1d45-4ec8-be85-7359fc89edd4","legacy_id":"31","short_name":"SF-G19","lat":37.78381270927812,"capacity":31,"name":"Raymond Kimbell Playground","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"34","lon":-122.411926,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b48ebe9a-8d7b-4ac1-b0da-db5978404330","legacy_id":"34","short_name":"SF-H25","lat":37.7840775,"capacity":23,"name":"Father Alfred E Boeddeker Park","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"35","lon":-121.90457582473755,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"28988488-fb74-4bbc-9e69-613698b2dd8c","legacy_id":"35","short_name":"SJ-M6","lat":37.32911866814779,"capacity":23,"name":"Cahill Park","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"36","lon":-122.39887,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a81b1594-ce38-4374-b256-3f183c8e12bc","legacy_id":"36","short_name":"SF-H28","lat":37.78383,"capacity":35,"name":"Folsom St at 3rd St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"37","lon":-122.3962173,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"dcb5ad16-caa9-4d40-b279-6d36152069a2","legacy_id":"37","short_name":"SF-H29","lat":37.7851994,"capacity":37,"name":"2nd St at Folsom St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"38","lon":-122.38792061805725,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"8517bd49-73e1-4b27-8686-d9f38a1f1ec3","legacy_id":"38","short_name":"SF-H30","lat":37.78292608704408,"capacity":26,"name":"The Embarcadero at Pier 38","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"39","lon":-122.4368608,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"86fae8b7-9d4f-499a-9437-422a07103c57","legacy_id":"39","short_name":"SF-I19","lat":37.7789994,"capacity":27,"name":"Scott St at Golden Gate Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"41","lon":-122.418409,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"8b2524c3-cc5f-4a3d-97f6-224a540d3ecc","legacy_id":"41","short_name":"SF-I23-1","lat":37.7813455,"capacity":31,"name":"Golden Gate Ave at Polk St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"42","lon":-122.4181591,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"64ce6633-9ea3-4dc1-b33f-c9d14c523a6a","legacy_id":"42","short_name":"SF-I23-2","lat":37.7788325,"capacity":19,"name":"San Francisco City Hall (Polk St at Grove St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"43","lon":-122.4159632,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"54c91186-8493-44d1-ac4f-435350fee797","legacy_id":"43","short_name":"SF-I24","lat":37.778799,"capacity":31,"name":"San Francisco Public Library (Grove St at Hyde St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"44","lon":-122.4117382,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6ab85eb1-e112-4c57-8a44-110120d68a1d","legacy_id":"44","short_name":"SF-I25","lat":37.7810737,"capacity":31,"name":"Civic Center/UN Plaza BART Station (Market St at McAllister St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"46","lon":-122.24237322807312,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6064907e-3871-4b2c-829b-d01406cee6fb","legacy_id":"46","short_name":"OK-L12","lat":37.79013985185364,"capacity":15,"name":"San Antonio Park","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"47","lon":-122.3999862,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3c09035e-28d3-4031-9148-51c08343856b","legacy_id":"47","short_name":"SF-I28","lat":37.7811944,"capacity":31,"name":"4th St at Harrison St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"49","lon":-122.3949894,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a6bfff23-97d9-4a9d-b999-dd85168d8812","legacy_id":"49","short_name":"SF-I29-2","lat":37.7807601,"capacity":29,"name":"S Park St at 3rd St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"50","lon":-122.390288,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ba25987f-399d-49ce-9354-52785e48ea13","legacy_id":"50","short_name":"SF-I30","lat":37.780526,"capacity":39,"name":"2nd St at Townsend St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"51","lon":-122.4530929327011,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f2c2ba49-25e1-4493-8565-5df5af66e153","legacy_id":"51","short_name":"SF-J15","lat":37.77610091264586,"capacity":27,"name":"Parker Ave at McAllister St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"52","lon":-122.4418376,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"73fccaab-205c-4b1e-a547-5fb0f2a58056","legacy_id":"52","short_name":"SF-J17","lat":37.7774157,"capacity":27,"name":"McAllister St at Baker St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"53","lon":-122.4377775,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d533df76-e03c-4ef3-b928-968aaed45823","legacy_id":"53","short_name":"SF-J18","lat":37.775946,"capacity":27,"name":"Grove St at Divisadero","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"54","lon":-122.43327409029006,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"2b140c2a-c038-4983-9290-d801db8a13f5","legacy_id":"54","short_name":"SF-J19","lat":37.77754677017323,"capacity":23,"name":"Alamo Square (Steiner St at Fulton St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"55","lon":-122.4295585,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"fde4cecd-7497-4bdb-a452-0e1a755e7759","legacy_id":"55","short_name":"SF-J20","lat":37.7770527,"capacity":27,"name":"Webster St at Grove St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"56","lon":-122.42731690406801,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"891d3a5f-05ab-45f2-8427-b74a1ec12d5b","legacy_id":"56","short_name":"SF-K21","lat":37.77341396997343,"capacity":27,"name":"Koshland Park","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"58","lon":-122.417385,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a9c46d92-b21e-489a-b922-3deb4ec1ab35","legacy_id":"58","short_name":"SF-J23-1","lat":37.776619,"capacity":31,"name":"Market St at 10th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"59","lon":-122.418954,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"4990eb75-f06e-4737-b5e8-03f8f45ffe66","legacy_id":"59","short_name":"SF-J23-2","lat":37.774814,"capacity":27,"name":"S Van Ness Ave at Market St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"60","lon":-122.4094493687153,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"1822622c-b9e0-43fe-8bf9-9f26024aa426","legacy_id":"60","short_name":"SF-J24","lat":37.77452040113685,"capacity":31,"name":"8th St at Ringold St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"61","lon":-122.4113061,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6156f831-ca96-459d-aafe-685420751e4d","legacy_id":"61","short_name":"SF-J25","lat":37.7765126,"capacity":27,"name":"Howard St at 8th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"62","lon":-122.40643188357353,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"03eb8b17-d20f-400c-a98a-dcbc947228af","legacy_id":"62","short_name":"SF-J26","lat":37.77779057034257,"capacity":15,"name":"Victoria Manalo Draves Park","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"63","lon":-122.402694,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7d463937-ff3e-4fb2-802a-f5b7cca1159e","legacy_id":"63","short_name":"SF-J27","lat":37.7758375,"capacity":19,"name":"Bryant St at 6th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":false,"station_id":"64","lon":-122.3990176,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"5d14b4a5-720a-4849-8f65-78165d8bf63c","legacy_id":"64","short_name":"SF-J28","lat":37.7767539,"capacity":0,"name":"5th St at Brannan St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"66","lon":-122.392553,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f7cd5ed5-b319-4723-93d2-188e3c3333e5","legacy_id":"66","short_name":"SF-J29-1","lat":37.7785885,"capacity":39,"name":"3rd St at Townsend St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"70","lon":-122.4425712,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"5292350c-9e2a-4d8d-bed5-b2738edc1551","legacy_id":"70","short_name":"SF-K17","lat":37.7735622,"capacity":31,"name":"Central Ave at Fell St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"71","lon":-122.4390777,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b1a957d2-5e0e-4a99-bca3-7f3db21d30eb","legacy_id":"71","short_name":"SF-K18","lat":37.7730627,"capacity":27,"name":"Broderick St at Oak St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"72","lon":-122.4358575,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"5215d3e4-b85a-4499-a460-1b038f7a2bf1","legacy_id":"72","short_name":"SF-K19","lat":37.772354,"capacity":27,"name":"Page St at Scott St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"73","lon":-122.4337079,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"1de96988-6dfc-4f97-8570-6d8664b6e88a","legacy_id":"73","short_name":"SF-K20","lat":37.7717933,"capacity":27,"name":"Pierce St at Haight St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"74","lon":-122.4262025,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"83b33e8d-bf8c-4a2a-8ee3-942834af27b4","legacy_id":"74","short_name":"SF-J21","lat":37.7762475,"capacity":27,"name":"Laguna St at Hayes St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"75","lon":-122.42123901844025,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"bf116a73-3718-46c1-ac14-c295963150ae","legacy_id":"75","short_name":"SF-K22-1","lat":37.7737932060887,"capacity":35,"name":"Market St at Franklin St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"76","lon":-122.422301,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d8b96e4a-7123-41db-a02c-e4ce48302578","legacy_id":"76","short_name":"SF-K22-2","lat":37.77168,"capacity":19,"name":"McCoppin St at Valencia St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"77","lon":-122.4160402,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"49754dc9-1925-4020-a599-704c9f064b03","legacy_id":"77","short_name":"SF-K24","lat":37.7735069,"capacity":19,"name":"11th St at Natoma St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"78","lon":-122.4116467,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"16fbff76-56d1-4e2b-b735-ec21b8cd3181","legacy_id":"78","short_name":"SF-K25","lat":37.7737172,"capacity":27,"name":"Folsom St at 9th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"79","lon":-122.4036725,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"5f048eb1-0b31-49ac-9d17-9b9880dc0ae9","legacy_id":"79","short_name":"SF-K27","lat":37.7734919,"capacity":0,"name":"7th St at Brannan St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"80","lon":-122.39743709564209,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"38a24ab3-8b5e-4d6d-804b-d4e89d19601e","legacy_id":"80","short_name":"SF-K28","lat":37.77523486860597,"capacity":35,"name":"Townsend St at 5th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"81","lon":-122.39317,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"5f90cd60-c199-4919-a20c-a2e417627b9d","legacy_id":"81","short_name":"SF-K29-1","lat":37.77588,"capacity":35,"name":"Berry St at 4th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"84","lon":-122.43406206015258,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d006bbb9-ba51-4958-9c4f-cdd78527bfa1","legacy_id":"84","short_name":"SF-L19","lat":37.7692231,"capacity":19,"name":"Duboce Park","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"85","lon":-122.4291485,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"38a02670-3056-43fb-8271-20fbf6baa538","legacy_id":"85","short_name":"SF-L20","lat":37.769818,"capacity":27,"name":"Church St at Duboce Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"86","lon":-122.4269645,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"930fe54f-5572-4900-8910-6041386560bf","legacy_id":"86","short_name":"SF-L21","lat":37.769244,"capacity":19,"name":"Market St at Dolores St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"87","lon":-122.4154585,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"04678a3e-1ec0-4493-a3cc-b92e74ab40ec","legacy_id":"87","short_name":"SF-L24","lat":37.770282,"capacity":27,"name":"Folsom St at 13th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"88","lon":-122.4117258,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a0406a84-2708-4727-84bf-9ca96894ef45","legacy_id":"88","short_name":"SF-L25","lat":37.7700298,"capacity":27,"name":"11th St at Bryant St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"89","lon":-122.407054,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"2f20969c-74f7-4b6a-8e23-d4d1a31b75f5","legacy_id":"89","short_name":"SF-L26","lat":37.769263,"capacity":27,"name":"Division St at Potrero Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"90","lon":-122.402717,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e4e5d6b1-a335-41a9-8efe-4c4d9294d6e2","legacy_id":"90","short_name":"SF-L27","lat":37.771058,"capacity":27,"name":"Townsend St at 7th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"91","lon":-122.39843755960464,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"afa2db8d-61bb-461a-8019-d5cd2aa1ec25","legacy_id":"91","short_name":"SF-L28","lat":37.771762110313176,"capacity":23,"name":"Berry St at King St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"92","lon":-122.39302754402159,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"42952b44-cb91-43dd-bdbd-34e4f2a39046","legacy_id":"92","short_name":"SF-L29","lat":37.772300631747626,"capacity":25,"name":"Mission Bay Kids Park","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"93","lon":-122.3912365,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"28844b82-850f-4e02-95c6-59d6076e8516","legacy_id":"93","short_name":"SF-L30-1","lat":37.7703135,"capacity":27,"name":"4th St at Mission Bay Blvd S","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"95","lon":-122.4310597,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"0c9cb910-8442-4df6-a997-704d817583ab","legacy_id":"95","short_name":"SF-M20","lat":37.7662185,"capacity":27,"name":"Sanchez St at 15th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"96","lon":-122.4266585,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"fa33d61b-8ba5-4c23-9603-8d9ebf167d5d","legacy_id":"96","short_name":"SF-M21","lat":37.7661,"capacity":19,"name":"Dolores St at 15th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"97","lon":-122.420359,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b65fc6af-b92c-41c5-8c63-e26cdfa3cda1","legacy_id":"97","short_name":"SF-M22-1","lat":37.768227,"capacity":19,"name":"14th St at Mission St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"98","lon":-122.42189,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a5c8beca-df86-4cac-8229-ac1d7b010401","legacy_id":"98","short_name":"SF-M22-2","lat":37.765429,"capacity":23,"name":"Valencia St at 16th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"99","lon":-122.4154425,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"314fd7e5-4335-4b89-ac9d-2c099bc33d9f","legacy_id":"99","short_name":"SF-M24","lat":37.7670373,"capacity":19,"name":"Folsom St at 15th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"100","lon":-122.410662,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f3e171b4-04b0-418f-9d82-e62f4df245d8","legacy_id":"100","short_name":"SF-M25","lat":37.7671004,"capacity":19,"name":"Bryant St at 15th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"101","lon":-122.40735858678818,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"fdbfa7f9-d3eb-4c9d-ab6c-0e3300da314e","legacy_id":"101","short_name":"SF-M26","lat":37.767078504583665,"capacity":27,"name":"15th St at Potrero Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"102","lon":-122.399528,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7a555b4b-c8fa-456d-a8bb-4cb7c8bbbffa","legacy_id":"102","short_name":"SF-M27","lat":37.7668905,"capacity":2,"name":"Irwin St at 8th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"104","lon":-122.39083349704742,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"482f48f4-7ed6-4e69-a778-a2aba0f39c80","legacy_id":"104","short_name":"SF-M30","lat":37.76704457969368,"capacity":35,"name":"4th St at 16th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"105","lon":-122.4318042,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"84dfbc77-fe18-4e2c-9f89-9edb8aeaee2c","legacy_id":"105","short_name":"SF-N20-1","lat":37.764285,"capacity":19,"name":"16th St at Prosper St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"106","lon":-122.4306746,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"4cfebcba-c209-4f34-bcd3-2e6c4cdaee34","legacy_id":"106","short_name":"SF-N20-2","lat":37.7632417,"capacity":19,"name":"Sanchez St at 17th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"107","lon":-122.4264968,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3ccf483a-ed9f-4327-bf9b-d72b4170ebfc","legacy_id":"107","short_name":"SF-N21","lat":37.7630152,"capacity":23,"name":"17th St at Dolores St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"108","lon":-122.4199265,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d6ced8f4-977a-441a-86f0-27381b495794","legacy_id":"108","short_name":"SF-N22-1A","lat":37.7646845,"capacity":11,"name":"16th St Mission BART","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"109","lon":-122.4220555,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"18fb1a9a-e3ee-4a18-a00d-45c1e0d14d16","legacy_id":"109","short_name":"SF-N22-2","lat":37.763333,"capacity":23,"name":"17th St at Valencia St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"110","lon":-122.41552403555308,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d6ebe802-3db6-4106-b3c7-4791c801a91f","legacy_id":"110","short_name":"SF-N23","lat":37.7637348,"capacity":23,"name":"17th & Folsom Street Park (17th St at Folsom St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"112","lon":-122.4130036,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"4d2b40cb-88e2-4371-8532-b1e52e797c8c","legacy_id":"112","short_name":"SF-N24-2","lat":37.7638471,"capacity":19,"name":"Harrison St at 17th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"113","lon":-122.410349,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"906d869e-f513-4c60-ab76-15e2ddc68632","legacy_id":"113","short_name":"SF-N25","lat":37.7645435,"capacity":19,"name":"Franklin Square","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"114","lon":-122.4025701,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b3c834af-571f-4fee-808b-ae2a7c018b5c","legacy_id":"114","short_name":"SF-N27","lat":37.7644783,"capacity":19,"name":"Rhode Island St at 17th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"115","lon":-122.3990255,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"40aad9cb-3190-4190-b73f-95aa661cec18","legacy_id":"115","short_name":"SF-N28","lat":37.764965,"capacity":27,"name":"Jackson Playground","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"116","lon":-122.3947595,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"9a97cfb1-8882-4dfc-a075-2c22d646e457","legacy_id":"116","short_name":"SF-N29","lat":37.764794,"capacity":31,"name":"Mississippi St at 17th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"118","lon":-122.4367975,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"38a49a05-7382-4a28-b6b1-b57c6fe99745","legacy_id":"118","short_name":"SF-O18","lat":37.759211,"capacity":19,"name":"Eureka Valley Recreation Center","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"119","lon":-122.4326417,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"cd7359fc-6798-48ed-af32-9d5f6cff9ffa","legacy_id":"119","short_name":"SF-O19","lat":37.7610471,"capacity":15,"name":"18th St at Noe St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"120","lon":-122.4264353,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"53bea4e6-b907-424c-b519-d286ffb713d8","legacy_id":"120","short_name":"SF-O21","lat":37.7614205,"capacity":27,"name":"Mission Dolores Park","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"121","lon":-122.4213392,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f6c0f2ed-11cc-4b74-9d03-f2b298c9bd1b","legacy_id":"121","short_name":"SF-O22","lat":37.7592103,"capacity":23,"name":"Mission Playground","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"122","lon":-122.419074,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f8b56cb7-cb70-4097-99c4-446fc29600c9","legacy_id":"122","short_name":"SF-O23","lat":37.760278,"capacity":19,"name":"19th St at Mission St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"123","lon":-122.4148171,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"aa6d4372-55f7-451a-a9ab-a546001fd8f7","legacy_id":"123","short_name":"SF-O24","lat":37.7605936,"capacity":19,"name":"Folsom St at 19th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"124","lon":-122.410807,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"fb24c862-b4cf-45e1-9008-4812aa8370fd","legacy_id":"124","short_name":"SF-O25-1","lat":37.7604469,"capacity":19,"name":"19th St at Florida St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"125","lon":-122.4100475,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b3af6593-57d4-4b9a-ba7a-b2d8051bc6b9","legacy_id":"125","short_name":"SF-O25-2","lat":37.759162,"capacity":15,"name":"20th St at Bryant St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"126","lon":-122.3906477,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"0b596735-1b55-4aaa-8421-2ac1a39267b1","legacy_id":"126","short_name":"SF-O30","lat":37.7616343,"capacity":31,"name":"Esprit Park","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"127","lon":-122.421025,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"08a1a4d2-e83a-4911-8743-41006698f4da","legacy_id":"127","short_name":"SF-P22","lat":37.7567083,"capacity":23,"name":"Valencia St at 21st St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"129","lon":-122.412544,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"cae028f4-b136-4297-8f28-559986e3f810","legacy_id":"129","short_name":"SF-P24","lat":37.758862,"capacity":19,"name":"Harrison St at 20th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"130","lon":-122.39188492298126,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e7691d93-eed6-4388-b681-00ae0b455d23","legacy_id":"130","short_name":"SF-P30","lat":37.75770404149008,"capacity":35,"name":"22nd St Caltrain Station","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"131","lon":-122.4258368,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"578169a8-b821-427d-934e-0b5329577ea4","legacy_id":"131","short_name":"SF-Q21-1","lat":37.75499463,"capacity":23,"name":"22nd St at Dolores St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"132","lon":-122.4266139,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"2ed84bed-e42a-4f0d-a059-78a709748616","legacy_id":"132","short_name":"SF-Q21-2","lat":37.7518194,"capacity":19,"name":"24th St at Chattanooga St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"133","lon":-122.4209752,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"759c388e-ab9b-40c2-ae96-ee5190264916","legacy_id":"133","short_name":"SF-Q22-1","lat":37.7552126,"capacity":23,"name":"Valencia St at 22nd St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"134","lon":-122.4206278,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3437ead2-e5e0-4e1c-86cf-d925a96b2260","legacy_id":"134","short_name":"SF-Q22-2","lat":37.7524278,"capacity":23,"name":"Valencia St at 24th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"137","lon":-122.4339496,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b6190b6b-1f42-4b69-ab79-d6cfa18adea7","legacy_id":"137","short_name":"SF-R19","lat":37.750506,"capacity":19,"name":"Jersey St at Castro St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"138","lon":-122.4274114,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"673c88d0-961a-45ff-b394-ac9a33e58d55","legacy_id":"138","short_name":"SF-R20","lat":37.7509004,"capacity":19,"name":"Jersey St at Church St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"139","lon":-122.4120835,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"1d0da57a-5fe4-48af-b66b-5f380706eb4e","legacy_id":"139","short_name":"SF-R24","lat":37.750945,"capacity":23,"name":"Garfield Square (25th St at Harrison St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"140","lon":-122.4249863,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"9202aa09-26ee-4220-9281-c66b7bbe7b38","legacy_id":"140","short_name":"SF-S21","lat":37.7478584,"capacity":15,"name":"Cesar Chavez St at Dolores St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"141","lon":-122.420215,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"fb66d43b-6d13-411c-ac2d-e26fbca0b0f2","legacy_id":"141","short_name":"SF-S22-1","lat":37.7476755,"capacity":19,"name":"Valencia St at Cesar Chavez St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"142","lon":-122.42214024066925,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"aacc087a-f075-4682-a0df-be4c30c4a632","legacy_id":"142","short_name":"SF-S22-2","lat":37.745738796183325,"capacity":15,"name":"Guerrero Park","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"144","lon":-122.4114029,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"615bca10-5b2a-4b7e-876c-04c4d3d9e360","legacy_id":"144","short_name":"SF-S24","lat":37.7472996,"capacity":15,"name":"Precita Park","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"145","lon":-122.4268059,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"0fc2ae3f-b5ac-493b-bd93-8300b601f9db","legacy_id":"145","short_name":"SF-T20","lat":37.7436839,"capacity":15,"name":"29th St at Church St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"146","lon":-122.4231805,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"c7879d87-34c8-4b23-9c07-250fb012bd4b","legacy_id":"146","short_name":"SF-T21","lat":37.7423139,"capacity":15,"name":"30th St at San Jose Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"147","lon":-122.4214722,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"86e91819-05c0-4150-ab16-83d8480dc7f4","legacy_id":"147","short_name":"SF-T22","lat":37.7440667,"capacity":19,"name":"29th St at Tiffany Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"148","lon":-122.2876102,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"8f409200-2adf-4b2d-b675-6befa5adc6e3","legacy_id":"148","short_name":"EM-D2","lat":37.8297046,"capacity":23,"name":"Horton St at 40th St","region_id":"13","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"149","lon":-122.2856333,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"47f5b0d6-a2db-482c-9680-10759094c4a4","legacy_id":"149","short_name":"EM-D3","lat":37.8312752,"capacity":23,"name":"Emeryville Town Hall","region_id":"13","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"150","lon":-122.2782669,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"789f4684-fb14-456b-ad02-87ee28d80ff1","legacy_id":"150","short_name":"EM-D4","lat":37.8312769,"capacity":15,"name":"Adeline St at 40th St","region_id":"13","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"151","lon":-122.2871801,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"31871354-8b20-4566-9044-f70ac57026dc","legacy_id":"151","short_name":"EM-C2","lat":37.8361823,"capacity":23,"name":"53rd St at Hollis St","region_id":"13","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"152","lon":-122.28105068206787,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"1eef0966-a6b6-4da1-8726-09989c2eb044","legacy_id":"152","short_name":"EM-C3","lat":37.83563220458518,"capacity":19,"name":"47th St at San Pablo Ave","region_id":"13","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"153","lon":-122.2913604,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"5ea1329c-9fe6-4c24-9de7-34967a9fa428","legacy_id":"153","short_name":"EM-A1","lat":37.8409452,"capacity":19,"name":"59th St at Horton St","region_id":"13","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"154","lon":-122.2880451,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"4fea6876-e80d-4a29-9966-820ac15cd3b4","legacy_id":"154","short_name":"EM-A2","lat":37.8419238,"capacity":15,"name":"Doyle St at 59th St","region_id":"13","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"155","lon":-122.29352831840515,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"998afb43-2436-4f11-9ed1-380c9abc3e55","legacy_id":"155","short_name":"EM-B1","lat":37.84052116694969,"capacity":19,"name":"Emeryville Public Market","region_id":"13","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"156","lon":-122.2886647,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"9da2121d-d8a8-464d-a396-cd41c9487bc4","legacy_id":"156","short_name":"EM-B2","lat":37.8384435,"capacity":15,"name":"Stanford Ave at Hollis St","region_id":"13","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"157","lon":-122.2913761,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"83f44c93-d153-49b3-a8af-a6b4a7ea85db","legacy_id":"157","short_name":"EM-C1","lat":37.8467842,"capacity":19,"name":"65th St at Hollis St","region_id":"13","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"158","lon":-122.2634901,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"c3f56bed-65e3-425b-999e-82b3a4f73aeb","legacy_id":"158","short_name":"OK-E4","lat":37.8332786,"capacity":19,"name":"Shattuck Ave at Telegraph Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"159","lon":-122.2782444,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"92045ce2-112c-4cd9-ae42-39aac4f43e86","legacy_id":"159","short_name":"OK-J3","lat":37.8160598,"capacity":19,"name":"24th St at Market St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"160","lon":-122.29461686454057,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"270425db-c369-4d4b-b8de-fae86c896a3c","legacy_id":"160","short_name":"OK-N1","lat":37.8051895,"capacity":23,"name":"West Oakland BART Station","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"162","lon":-122.2720799,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"09c20e68-4f8c-4723-ae8f-bac3dd927848","legacy_id":"162","short_name":"OK-M6","lat":37.8005161,"capacity":27,"name":"Franklin St at 9th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"163","lon":-122.2653199,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ce264eb5-ebfe-4a03-8bd3-e319c32614ec","legacy_id":"163","short_name":"OK-M7","lat":37.7973195,"capacity":27,"name":"Lake Merritt BART Station","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"164","lon":-122.27484405040741,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e9b45d4b-900e-4d9f-bb75-74dcea012859","legacy_id":"164","short_name":"OK-J4","lat":37.814988230424156,"capacity":19,"name":"Isabella St at San Pablo Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"166","lon":-122.2525233,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"76d7eeec-413a-4940-9bc2-8222d35f8fdc","legacy_id":"166","short_name":"BK-A3","lat":37.8513755,"capacity":15,"name":"College Ave at Alcatraz Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"167","lon":-122.2525406,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b4717e68-fb91-4e74-819f-4a9580a84ca5","legacy_id":"167","short_name":"OK-A4","lat":37.8494355,"capacity":23,"name":"62nd St at Claremont Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"168","lon":-122.26556897163393,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"04059da9-ebad-42e8-928b-14e5e3edf26f","legacy_id":"168","short_name":"OK-B1","lat":37.849594967776646,"capacity":15,"name":"Alcatraz Ave at Shattuck Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"169","lon":-122.2653043,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"48e675de-7b94-49ff-bb5e-fa146c243599","legacy_id":"169","short_name":"OK-B2","lat":37.8465156,"capacity":19,"name":"Bushrod Park","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"170","lon":-122.261351,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"50518b51-6910-4f71-bb20-7b0d0fc4f4b7","legacy_id":"170","short_name":"OK-B3","lat":37.8444927,"capacity":15,"name":"Telegraph Ave at 58th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"171","lon":-122.251900434494,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"31146111-fc8f-4107-9087-1a160eefaa54","legacy_id":"171","short_name":"OK-B4","lat":37.84427875399067,"capacity":24,"name":"Rockridge BART Station","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"172","lon":-122.2515349,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"5f13426c-73f2-4272-a498-f11ff007e8d3","legacy_id":"172","short_name":"OK-B5","lat":37.8417999,"capacity":15,"name":"College Ave at Taft Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"173","lon":-122.2644881,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"cd4b4099-e2f5-4d46-bc1f-ed96d22548cc","legacy_id":"173","short_name":"OK-D3-1","lat":37.8403643,"capacity":15,"name":"Shattuck Ave at 55th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"174","lon":-122.267656,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"dcf29fa9-3304-4f6f-90eb-ef48ada9dbfe","legacy_id":"174","short_name":"OK-D3-2","lat":37.837369,"capacity":23,"name":"52nd St at MLK Jr Way","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"175","lon":-122.262654,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"971307f6-5491-4112-beac-6b6960af6c0d","legacy_id":"175","short_name":"OK-D4","lat":37.83575,"capacity":15,"name":"Telegraph Ave at 49th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"176","lon":-122.26631462574005,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"1af8102a-589a-47ea-97ec-4589b71403aa","legacy_id":"176","short_name":"OK-F4","lat":37.82840997305853,"capacity":31,"name":"MacArthur BART Station","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"177","lon":-122.2651002,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f3db9065-9d34-451e-ae8e-930612f8b8d7","legacy_id":"177","short_name":"OK-G4","lat":37.8262863,"capacity":19,"name":"MacArthur Blvd at Telegraph Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"178","lon":-122.2619284,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b96ee0c1-a83b-4f0c-9eae-4592672b3e86","legacy_id":"178","short_name":"OK-H5","lat":37.8193814,"capacity":19,"name":"Broadway at 30th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"179","lon":-122.26788640022278,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a0b6621e-016f-4a91-918c-2140bfd9813c","legacy_id":"179","short_name":"OK-I5","lat":37.816073115011406,"capacity":19,"name":"Telegraph Ave at 27th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"180","lon":-122.2687726,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"74e8630e-7e2a-447f-ae87-5c9898c7346a","legacy_id":"180","short_name":"OK-J5","lat":37.8126783,"capacity":19,"name":"Telegraph Ave at 23rd St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"181","lon":-122.2651925,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"cb84be53-d226-47fc-aa81-789c037361d4","legacy_id":"181","short_name":"OK-J6-1","lat":37.8113768,"capacity":27,"name":"Grand Ave at Webster St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"182","lon":-122.26795077323914,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6977a0c8-f59f-4d97-9868-e7b20cc2fdad","legacy_id":"182","short_name":"OK-K5-2","lat":37.809368612134854,"capacity":31,"name":"19th Street BART Station","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"183","lon":-122.2699271,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f1ee54eb-4abe-4158-9c82-53bcc640fc77","legacy_id":"183","short_name":"OK-K5-1","lat":37.8087021,"capacity":27,"name":"Telegraph Ave at 19th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"186","lon":-122.2626418,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b8398469-a2ba-4d86-8f5a-07f9883796bd","legacy_id":"186","short_name":"OK-L7-2","lat":37.8013189,"capacity":27,"name":"Lakeside Dr at 14th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"187","lon":-122.279352,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"759daccc-7f53-4b29-ab07-cf2d75a10610","legacy_id":"187","short_name":"OK-N5","lat":37.796248,"capacity":27,"name":"Jack London Square","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"188","lon":-122.267738,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"9cb2f8b5-0d32-4a15-a4f1-3990595156de","legacy_id":"188","short_name":"OK-C2","lat":37.8426295,"capacity":15,"name":"Dover St at 57th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"189","lon":-122.2717561,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a247eef9-7ee3-4827-8ddb-fbd8daca7a0b","legacy_id":"189","short_name":"OK-D2","lat":37.8396488,"capacity":15,"name":"Genoa St at 55th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"190","lon":-122.2709501,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b6e253b2-285d-4363-ae46-24e7c221cc08","legacy_id":"190","short_name":"OK-F3","lat":37.8302232,"capacity":23,"name":"West St at 40th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"191","lon":-122.2739367,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"316f6785-47aa-4e37-b81b-3cf829bf5120","legacy_id":"191","short_name":"OK-G2","lat":37.8305452,"capacity":15,"name":"Market St at 40th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"192","lon":-122.27179706096648,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"73295cf1-c5e1-41dd-8cd7-eab6512e8a34","legacy_id":"192","short_name":"OK-G3","lat":37.82669558640968,"capacity":23,"name":"37th St at West St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"193","lon":-122.2472152,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"1c2e5680-719b-4674-9837-092c367594ba","legacy_id":"193","short_name":"OK-H9-1","lat":37.8127441,"capacity":19,"name":"Grand Ave at Santa Clara Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"194","lon":-122.2432677,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"717e6e13-e1b2-4c13-944d-823a556c1635","legacy_id":"194","short_name":"OK-H9-2","lat":37.8110807,"capacity":15,"name":"Lakeshore Ave at Trestle Glen Rd","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"195","lon":-122.26077854633331,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"422ab254-5c2c-4a9c-9368-a49e8dab3ebf","legacy_id":"195","short_name":"OK-I6","lat":37.81231409135146,"capacity":23,"name":"Bay Pl at Vernon St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"196","lon":-122.25646018981932,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d5eedd49-f998-4b8a-9d1a-22853da216aa","legacy_id":"196","short_name":"OK-I8","lat":37.80889393398715,"capacity":23,"name":"Grand Ave at Perkins St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"197","lon":-122.2492512,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"70b61cdb-7b5d-4455-84e4-9b9c697b6740","legacy_id":"197","short_name":"OK-I9","lat":37.808715,"capacity":23,"name":"El Embarcadero at Grand Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"198","lon":-122.26449608802795,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"5fdc3d6d-e9c8-47cf-874e-d2f012cfb217","legacy_id":"198","short_name":"OK-J6-2","lat":37.80781318217903,"capacity":31,"name":"Snow Park","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"200","lon":-122.25381016731262,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7655722c-16c0-4996-9d92-4848ece2fc35","legacy_id":"200","short_name":"OK-K9","lat":37.800213566969795,"capacity":35,"name":"2nd Ave at E 18th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"201","lon":-122.2629973,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7018fb4d-6799-4a20-8ea4-739f789cd096","legacy_id":"201","short_name":"OK-L8","lat":37.7976728,"capacity":23,"name":"10th St at Fallon St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"202","lon":-122.2748943,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"8f34c934-e51e-4b0f-810c-916618b6cd90","legacy_id":"202","short_name":"OK-M5","lat":37.8007544,"capacity":27,"name":"Washington St at 8th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"203","lon":-122.27396965026855,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7686b58c-88a3-4ca8-a898-d4bcccf520b3","legacy_id":"203","short_name":"OK-N6","lat":37.795194764385954,"capacity":27,"name":"Webster St at 2nd St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"204","lon":-122.2618225,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"bf463e48-e629-4fed-9e7e-551e5c5a1af7","legacy_id":"204","short_name":"OK-C3","lat":37.8401858,"capacity":19,"name":"55th St at Telegraph Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"205","lon":-122.258732,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ffbf423a-2c1b-447a-a47d-9c1fddd152be","legacy_id":"205","short_name":"OK-C4","lat":37.8388,"capacity":19,"name":"Miles Ave at Cavour St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"206","lon":-122.2512714,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b31a7464-fb7f-4554-a89b-ef8b4c97a367","legacy_id":"206","short_name":"OK-C5","lat":37.8381269,"capacity":23,"name":"College Ave at Bryant Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"207","lon":-122.2516207,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"67ed16db-4800-4671-bba4-e8ef52d6d74e","legacy_id":"207","short_name":"OK-D5","lat":37.8357883,"capacity":23,"name":"Broadway at Coronado Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"208","lon":-121.88385039567946,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"453a6d0d-31ce-4204-b2e1-2f9532e4b356","legacy_id":"208","short_name":"SJ-N10-1","lat":37.33279952386071,"capacity":19,"name":"4th St at San Carlos St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"209","lon":-122.2674183,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"1dedc5ae-882d-4bb0-bcfe-33604cc116df","legacy_id":"209","short_name":"OK-E3","lat":37.8335577,"capacity":19,"name":"45th St at MLK Jr Way","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"210","lon":-122.25622415542603,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"42019e90-fa74-4a77-9051-5dfed81a32de","legacy_id":"210","short_name":"OK-E5","lat":37.8332935222321,"capacity":23,"name":"45th St at Manila","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"211","lon":-122.2567156,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"76d741e6-6b22-4d6a-a16f-8dbd7ab51c6f","legacy_id":"211","short_name":"OK-F5","lat":37.8277573,"capacity":23,"name":"Broadway at 40th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"212","lon":-122.26043654610294,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"4298a24b-394a-491d-9d8f-df90f381b187","legacy_id":"212","short_name":"OK-G5","lat":37.824892529951114,"capacity":31,"name":"Mosswood Park","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"213","lon":-122.2811926,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"df2bc9c0-0377-46c8-83ea-ef7ef9dcdb4d","legacy_id":"213","short_name":"OK-H2","lat":37.8238474,"capacity":15,"name":"32nd St at Adeline St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"214","lon":-122.2757325,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"77948e35-f1c6-4ff9-9d8c-787a16b20a27","legacy_id":"214","short_name":"OK-H3","lat":37.8233214,"capacity":19,"name":"Market St at Brockhurst St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"215","lon":-122.26597130298616,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b0f5f6bc-86db-4670-be8d-4112719fbd71","legacy_id":"215","short_name":"OK-H4-3","lat":37.82246767714513,"capacity":23,"name":"34th St at Telegraph Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"216","lon":-122.2756976,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"8a7e7744-c516-46b9-b079-2a6d3afc2383","legacy_id":"216","short_name":"OK-I3","lat":37.8178269,"capacity":19,"name":"San Pablo Ave at 27th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"217","lon":-122.2717615,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"10334650-998e-4022-a883-2c3110edeb40","legacy_id":"217","short_name":"OK-I4","lat":37.8170154,"capacity":19,"name":"27th St at MLK Jr Way","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"218","lon":-122.2851712,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"1af8f901-8697-4128-b6c8-45c7c7f2c684","legacy_id":"218","short_name":"OK-K2","lat":37.8123315,"capacity":15,"name":"DeFremery Park","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"219","lon":-122.2801923,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"77476eaf-b0a1-473b-8e68-9d6a312545b1","legacy_id":"219","short_name":"OK-K3","lat":37.8098236,"capacity":19,"name":"Marston Campbell Park","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"220","lon":-122.2734217,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"924ea8a9-841d-43b5-99a9-bff7ca8d4b64","legacy_id":"220","short_name":"OK-K4","lat":37.8113514,"capacity":19,"name":"San Pablo Ave at MLK Jr Way","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"221","lon":-122.253842,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ddc82a89-0b7e-41a7-ba69-05e3776d13cf","legacy_id":"221","short_name":"OK-L10","lat":37.794396,"capacity":15,"name":"6th Ave at E 12th St (Temporary Location)","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"222","lon":-122.2487796,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"4c05cf62-fcee-4f55-960f-aeccd2b09735","legacy_id":"222","short_name":"OK-L11","lat":37.7927143,"capacity":15,"name":"10th Ave at E 15th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"223","lon":-122.420141,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"cdc26b4b-f9dc-4b00-8cf4-1665b5bf8afd","legacy_id":"223","short_name":"SF-N22-1B","lat":37.7648385,"capacity":19,"name":"16th St Mission BART Station 2","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"224","lon":-122.24745869636536,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"885754e6-88c9-46ed-9376-f1b035a71b54","legacy_id":"224","short_name":"OK-L13","lat":37.800459411713945,"capacity":23,"name":"21st St at 5th Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"225","lon":-122.2343822,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6b89ea9f-180b-4954-8eab-6cfeb2b66027","legacy_id":"225","short_name":"OK-L14","lat":37.7851915,"capacity":15,"name":"23rd Ave at Foothill Blvd","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"226","lon":-122.2329915,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"28925943-fddd-4f98-86ef-9f8dbd9bc62d","legacy_id":"226","short_name":"OK-M14","lat":37.781123,"capacity":15,"name":"26th Ave at International Blvd","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"227","lon":-122.2226033,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ea88423e-8147-4d3e-a51f-22430d3d728c","legacy_id":"227","short_name":"OK-L16","lat":37.7837569,"capacity":15,"name":"Foothill Blvd at Fruitvale Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"228","lon":-122.2177284,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"9ac7060b-f5d5-4ae4-be01-2571b1419d3f","legacy_id":"228","short_name":"OK-K17","lat":37.77993,"capacity":19,"name":"Foothill Blvd at Harrington Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"229","lon":-122.21239820122717,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"0d6a9101-5b40-4fdf-9315-e494af1baf7b","legacy_id":"229","short_name":"OK-L19","lat":37.774152564302355,"capacity":19,"name":"Bond St at High St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"230","lon":-122.2914153,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a845426e-b1fe-4dab-b7a5-b6e581f4d7dc","legacy_id":"230","short_name":"OK-L1","lat":37.8107432,"capacity":15,"name":"14th St at Mandela Pkwy","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"231","lon":-122.28328227996825,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ac5e3053-b3f5-4396-9114-7650b67c7090","legacy_id":"231","short_name":"OK-L3","lat":37.80874983465997,"capacity":0,"name":"14th St at Filbert St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"232","lon":-122.2760402,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e4921f52-7a6c-4baa-b057-ddc7051980ca","legacy_id":"232","short_name":"OK-L4","lat":37.8061628,"capacity":19,"name":"MLK Jr Way at 14th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"233","lon":-122.255547,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ddc41c7f-69d7-48a9-a992-d0c543fd6f5e","legacy_id":"233","short_name":"OK-L9","lat":37.795913,"capacity":19,"name":"4th Ave at E 12th St (Temporary Location)","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"234","lon":-122.2254,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"51c15f4f-80bb-4c55-9675-70c184bb4318","legacy_id":"234","short_name":"OK-M16","lat":37.778058,"capacity":19,"name":"Farnam St at Fruitvale Ave","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"235","lon":-122.2893702,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e0c59a44-7e14-43bd-99e2-a294b3fc0951","legacy_id":"235","short_name":"OK-M2","lat":37.8072393,"capacity":19,"name":"Union St at 10th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"236","lon":-122.282497,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"2d1b2144-cbf3-4077-8fbb-400c7536613c","legacy_id":"236","short_name":"OK-M4","lat":37.8036865,"capacity":23,"name":"Market St at 8th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"237","lon":-122.2244982,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"cf1d4581-61da-4ade-97d5-2f856cdb0aad","legacy_id":"237","short_name":"OK-N17","lat":37.7752321,"capacity":15,"name":"Fruitvale BART Station","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"238","lon":-122.2730677,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3d923c3c-46ea-4a46-84b7-e95916cdb0bd","legacy_id":"238","short_name":"BK-C6","lat":37.8717192,"capacity":23,"name":"MLK Jr Way at University Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"239","lon":-122.2587857,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"874b7cea-2d90-4978-bc49-b9a38b597f81","legacy_id":"239","short_name":"BK-E9-1","lat":37.8689109,"capacity":23,"name":"Bancroft Way at Telegraph Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"240","lon":-122.2588044,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"318b8d9d-cf10-41a5-988a-860a07f0543d","legacy_id":"240","short_name":"BK-E9-2","lat":37.8660431,"capacity":19,"name":"Haste St at Telegraph Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"241","lon":-122.2702132,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"25e8f173-3c6f-43d5-9806-af1c72f6f3d8","legacy_id":"241","short_name":"BK-H6","lat":37.8524766,"capacity":23,"name":"Ashby BART Station","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"242","lon":-122.2693844139576,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"713e3a3a-c5a6-4f48-a122-c536326bc954","legacy_id":"242","short_name":"BK-F7","lat":37.86012459911685,"capacity":23,"name":"Milvia St at Derby St","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"243","lon":-122.2543374,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a646ab7e-7396-4009-abb8-0b51171325ff","legacy_id":"243","short_name":"BK-D10","lat":37.8693603,"capacity":30,"name":"Bancroft Way at College Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"244","lon":-122.26848721504211,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b43472b6-2dfc-451e-a668-abc1a1099b6e","legacy_id":"244","short_name":"BK-C7","lat":37.87367621459825,"capacity":23,"name":"Shattuck Ave at Hearst Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"245","lon":-122.268422,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7adb5dde-e34a-4964-98d3-f64a940beacb","legacy_id":"245","short_name":"BK-D7-1","lat":37.870139,"capacity":29,"name":"Downtown Berkeley BART","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"246","lon":-122.270556,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"99665404-d98e-472c-9f68-0016be3601db","legacy_id":"246","short_name":"BK-D7-2","lat":37.8690599,"capacity":27,"name":"Berkeley Civic Center","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"247","lon":-122.2658964,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a4176220-2f51-47dd-82c4-342dc97867bd","legacy_id":"247","short_name":"BK-E8","lat":37.8677892,"capacity":23,"name":"Fulton St at Bancroft Way","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"248","lon":-122.2597949,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f630e61e-56b0-4f69-a91b-2e85b44dfcb7","legacy_id":"248","short_name":"BK-H9","lat":37.8559558,"capacity":19,"name":"Telegraph Ave at Ashby Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"249","lon":-122.2532529,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f33b866f-ce2e-4d48-9b2a-cf566ba59039","legacy_id":"249","short_name":"BK-H10","lat":37.8584732,"capacity":19,"name":"Russell St at College Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"250","lon":-122.283093,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"930e63db-726c-4276-b3c3-fc51f32b3ddd","legacy_id":"250","short_name":"BK-C5","lat":37.873558,"capacity":27,"name":"North Berkeley BART Station","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"251","lon":-122.27972030639648,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f82dccaa-6309-4a54-a405-fe94412f71d6","legacy_id":"251","short_name":"BK-D5","lat":37.87055532905745,"capacity":15,"name":"California St at University Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"252","lon":-122.2674431,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"76709a87-13a8-4df3-a971-073c79fcf6b0","legacy_id":"252","short_name":"BK-E7","lat":37.8658466,"capacity":23,"name":"Channing Way at Shattuck Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"253","lon":-122.25379943847655,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"bd5a77f6-ebbe-496b-9887-069c87c7a423","legacy_id":"253","short_name":"BK-E10","lat":37.86641794050319,"capacity":23,"name":"Haste St at College Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"254","lon":-122.26959228515624,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"618c724d-9025-470b-8621-4500a9b69773","legacy_id":"254","short_name":"BK-A7","lat":37.88022244590679,"capacity":15,"name":"Vine St at Shattuck Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"255","lon":-122.26952791213989,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"5d2b4506-3169-4f9a-af15-31c78768917a","legacy_id":"255","short_name":"BK-B7","lat":37.876572549106854,"capacity":23,"name":"Virginia St at Shattuck Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"256","lon":-122.2601554,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"c8b190cd-c4a1-4597-bb18-3d9cc786e9cb","legacy_id":"256","short_name":"BK-C9","lat":37.8753207,"capacity":15,"name":"Hearst Ave at Euclid Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"257","lon":-122.29967594146727,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"08f875e7-d696-4a4d-9656-43f07a953de4","legacy_id":"257","short_name":"BK-C1","lat":37.870407115465376,"capacity":15,"name":"Fifth St at Delaware St","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"258","lon":-122.2664467,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3494fb75-e57c-491f-a6e7-c2440c3a37e3","legacy_id":"258","short_name":"BK-C8","lat":37.8723555,"capacity":23,"name":"University Ave at Oxford St","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"259","lon":-122.2993708,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d1e31ce1-f129-48e0-bfe9-ba2674ed2daa","legacy_id":"259","short_name":"BK-D1","lat":37.866249,"capacity":23,"name":"Addison St at Fourth St","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"262","lon":-122.28653311729431,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"0b81b2ae-d9bf-4b66-b5e0-687205d4bc12","legacy_id":"262","short_name":"BK-D4","lat":37.869966707604036,"capacity":15,"name":"West St at University Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"263","lon":-122.2902305,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"40205ede-0c43-44ab-8c9c-0d8ecd9f854e","legacy_id":"263","short_name":"BK-E3","lat":37.8628271,"capacity":23,"name":"Channing Way at San Pablo Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"265","lon":-122.2912095,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3845994c-9953-44ce-b75b-43d4cb5216e8","legacy_id":"265","short_name":"BK-F2","lat":37.8588682,"capacity":15,"name":"Ninth St at Parker St","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"266","lon":-122.2647911,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"70cd5518-091f-4331-a80e-53df97db1a81","legacy_id":"266","short_name":"BK-F8","lat":37.8624644,"capacity":23,"name":"Parker St at Fulton St","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"267","lon":-122.2535687,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a4ea165b-5dcf-4b41-ac2d-68718f98b147","legacy_id":"267","short_name":"BK-F10","lat":37.8618037,"capacity":19,"name":"Derby St at College Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"268","lon":-122.26157784461977,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"429a3ffa-e0df-4497-b6e9-91e3ccb12c1c","legacy_id":"268","short_name":"BK-G8","lat":37.85749021457153,"capacity":15,"name":"Ellsworth St at Russell St","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"269","lon":-122.258801,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f1987d85-0da3-4a03-b947-8c6c72947f32","legacy_id":"269","short_name":"BK-F9","lat":37.8623199,"capacity":19,"name":"Telegraph Ave at Carleton St","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"270","lon":-122.2896981239319,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7cec0a12-76ab-4472-b38c-8e8ad02688a5","legacy_id":"270","short_name":"BK-H3","lat":37.8539069616438,"capacity":15,"name":"Ninth St at Heinz Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"271","lon":-122.28312671184538,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"4a6b5ab4-b2d8-4657-b93f-a71bc7007283","legacy_id":"271","short_name":"BK-G4","lat":37.85578332030199,"capacity":19,"name":"San Pablo Park","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"273","lon":-122.26356536149979,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"4d1990b2-f487-43be-b436-018ad73ab0dd","legacy_id":"273","short_name":"BK-H8","lat":37.855573661828785,"capacity":19,"name":"Fulton St at Ashby Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"274","lon":-122.2675583,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ef04d469-63f4-464a-946f-056da6318051","legacy_id":"274","short_name":"BK-G7","lat":37.8575672,"capacity":20,"name":"Oregon St at Adeline St","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"275","lon":-121.8888891,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"0d48fc9e-6798-46f0-bbb6-67a168800e0b","legacy_id":"275","short_name":"SJ-K11","lat":37.3429973,"capacity":15,"name":"Julian St at 6th St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"276","lon":-121.9125165,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"2c7560e6-62c6-4403-8b97-8016471948b5","legacy_id":"276","short_name":"SJ-K5","lat":37.3322326,"capacity":23,"name":"Julian St at The Alameda","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"277","lon":-121.90861791372298,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"27045384-791c-4519-8087-fce2f7c48a69","legacy_id":"277","short_name":"SJ-K6","lat":37.333677122859896,"capacity":19,"name":"W Julian St at N Morrison St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"278","lon":-121.9048882,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d28bb0a7-8dc5-49be-86c7-9a3395eed019","legacy_id":"278","short_name":"SJ-L7-2","lat":37.3319323,"capacity":23,"name":"The Alameda at Bush St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"279","lon":-121.8841054,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7ae6ad74-9212-4a2b-bb52-aba03cb533e2","legacy_id":"279","short_name":"SJ-M11-1","lat":37.3391456,"capacity":15,"name":"Santa Clara St at 7th St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"280","lon":-121.88321471214294,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ed707a89-a68d-4921-a4cb-16c268e45a5b","legacy_id":"280","short_name":"SJ-M11-2","lat":37.3371223728942,"capacity":23,"name":"San Fernando St at 7th St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"281","lon":-121.8807965,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7dfd8e07-81a8-4734-bc70-5e47aadbfa5a","legacy_id":"281","short_name":"SJ-M11-3","lat":37.3383952,"capacity":19,"name":"9th St at San Fernando St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"282","lon":-121.88078,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7304d188-5de6-4a57-86e3-bb0b72481368","legacy_id":"282","short_name":"SJ-P10-2","lat":37.324414,"capacity":19,"name":"E Virginia St at S 2nd St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"283","lon":-121.8977018,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6bcc6da3-b25b-4fea-9c30-3eb88e282574","legacy_id":"283","short_name":"SJ-M8-2","lat":37.3302641,"capacity":19,"name":"Delmas Ave and San Fernando St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"284","lon":-122.40087568759917,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"8b4f5169-6d0c-4d43-aa31-d243c5aec7ec","legacy_id":"284","short_name":"SF-H27-1","lat":37.78487208436062,"capacity":19,"name":"Yerba Buena Center for the Arts (Howard St at 3rd St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"285","lon":-122.43115782737732,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3c2ae472-6b36-42ce-be4d-f99208a7e8b0","legacy_id":"285","short_name":"SF-H20","lat":37.78352083526095,"capacity":27,"name":"Webster St at O'Farrell St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"286","lon":-121.8766132,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"dc464713-3263-40bd-a059-af2efd7a4b9a","legacy_id":"286","short_name":"SJ-N12-1","lat":37.3364659,"capacity":19,"name":"San Carlos St at 11th St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"287","lon":-121.8892731,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"8fccc336-6544-4c73-a096-282131267f78","legacy_id":"287","short_name":"SJ-O9","lat":37.32673,"capacity":19,"name":"Almaden Blvd at Balbach St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"288","lon":-121.9020161,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"0d730ac1-7ce6-45cf-aca6-b412ea46709d","legacy_id":"288","short_name":"SJ-H10","lat":37.3509643,"capacity":27,"name":"Mission St at 1st St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"289","lon":-121.89584255218504,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"8941eac9-fb07-4d76-b623-fae2af79139e","legacy_id":"289","short_name":"SJ-I10","lat":37.35090179274617,"capacity":23,"name":"5th St at Taylor St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"290","lon":-121.89966201782227,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6c176d42-fea5-4df1-80eb-66a99cc73a21","legacy_id":"290","short_name":"SJ-I9","lat":37.34759257443888,"capacity":19,"name":"George St at 1st St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"291","lon":-121.9031829,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3ebc4f3f-2941-47cd-a173-83f01a91bf57","legacy_id":"291","short_name":"SJ-J8","lat":37.3413348,"capacity":15,"name":"Autumn Parkway at Coleman Ave","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"292","lon":-121.8969655,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7d8f4de7-d726-4af2-95b5-33032136239a","legacy_id":"292","short_name":"SJ-J9","lat":37.3448821,"capacity":19,"name":"Empire St at 1st St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"294","lon":-121.884559,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d6c452d5-88d5-48e2-8028-d46134c2beb8","legacy_id":"294","short_name":"SJ-O10","lat":37.327581,"capacity":27,"name":"Pierce Ave at Market St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"295","lon":-121.8759263,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"753e3e72-9498-4eef-a006-be1848cb36b3","legacy_id":"295","short_name":"SJ-O12","lat":37.3327938,"capacity":23,"name":"William St at 10th St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"296","lon":-121.87712,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"bb54f5c8-5578-4167-9599-8e55154de4fd","legacy_id":"296","short_name":"SJ-P10","lat":37.3259984,"capacity":27,"name":"5th St at Virginia St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"297","lon":-121.8879312,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"676591be-48bc-4653-995a-c4536e793135","legacy_id":"297","short_name":"SJ-P8","lat":37.3229796,"capacity":19,"name":"Locust St at Grant St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"298","lon":-121.88109040260315,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"0fd9a51c-67ac-4048-b531-bff644b82f47","legacy_id":"298","short_name":"SJ-P9","lat":37.322124625448566,"capacity":23,"name":"Oak St at 1st St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"299","lon":-121.8741186,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"46b4ef45-b06b-40eb-9fdf-9bc8ff104a4f","legacy_id":"299","short_name":"SJ-Q11","lat":37.3236779,"capacity":15,"name":"Bestor Art Park","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"300","lon":-121.884995,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"0cf3890c-4fde-49f7-9daa-7f2842695119","legacy_id":"300","short_name":"SJ-Q8","lat":37.3172979,"capacity":19,"name":"Palm St at Willow St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"301","lon":-121.8831724,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"adda58ee-59a9-4586-8210-da874168a93b","legacy_id":"301","short_name":"SJ-Q9","lat":37.3184498,"capacity":15,"name":"Willow St at Vine St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"303","lon":-121.905733,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"393ec80c-da84-4d7a-9452-e77f8de7caf2","legacy_id":"303","short_name":"SJ-H9","lat":37.352601,"capacity":23,"name":"San Pedro St at Hedding St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"304","lon":-121.89479783177376,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d6422284-e433-48c5-bf00-751c299189c8","legacy_id":"304","short_name":"SJ-J10","lat":37.3487586867448,"capacity":27,"name":"Jackson St at 5th St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"305","lon":-121.895617,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"13d36dad-f238-426c-9525-ec73552fa0b0","legacy_id":"305","short_name":"SJ-K9","lat":37.342725,"capacity":23,"name":"Ryland Park","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"306","lon":-121.889937,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"bae9be55-04d4-4641-9781-3d1c4b6950f1","legacy_id":"306","short_name":"SJ-L10","lat":37.339301,"capacity":15,"name":"Saint James Park","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"307","lon":-121.900084,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"daac8a55-dd65-4a1e-b0b9-65ec5002c812","legacy_id":"307","short_name":"SJ-L7-1","lat":37.332692,"capacity":23,"name":"SAP Center","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"308","lon":-121.8940901,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"fa83f661-540e-4720-9323-824c6529b796","legacy_id":"308","short_name":"SJ-L9","lat":37.336802,"capacity":15,"name":"San Pedro Square","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"309","lon":-121.886995,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"5c17e1c8-5d21-4309-afcb-e69da27acf31","legacy_id":"309","short_name":"SJ-M10-1","lat":37.337391,"capacity":23,"name":"San Jose City Hall","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"310","lon":-121.88566,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"c52ca98a-70c6-42da-9867-4f35060b5d2e","legacy_id":"310","short_name":"SJ-M10-2","lat":37.335885,"capacity":23,"name":"San Fernando St at 4th St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"311","lon":-121.886943,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"891b961d-b674-49be-9579-71f5feb4598d","legacy_id":"311","short_name":"SJ-M10-3","lat":37.333798,"capacity":19,"name":"Paseo De San Antonio at 2nd St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"312","lon":-121.901782,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"dc2f7685-c3e3-4536-b78b-740479cbb207","legacy_id":"312","short_name":"SJ-M7-1","lat":37.329732,"capacity":35,"name":"San Jose Diridon Station","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"313","lon":-121.8932,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"32974dc6-2aea-45d3-ae66-06f02f45ecaa","legacy_id":"313","short_name":"SJ-M8-1","lat":37.331415,"capacity":23,"name":"Almaden Blvd at San Fernando St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"314","lon":-121.894902,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"67b039eb-ea61-46c0-8da5-1f56de4ad9ca","legacy_id":"314","short_name":"SJ-M9-2","lat":37.333988,"capacity":11,"name":"Santa Clara St at Almaden Blvd","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"315","lon":-122.272968,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"bde0daf3-435d-4e6a-a477-ec9a4b4c17f7","legacy_id":"315","short_name":"OK-F2-2","lat":37.834174,"capacity":15,"name":"Market St at 45th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"316","lon":-121.88693761825562,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"c11e189e-080a-40ba-a0a4-98920af4806b","legacy_id":"316","short_name":"SJ-N10-2","lat":37.33116799422201,"capacity":3,"name":"1st St at San Carlos St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"317","lon":-121.877349,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"53d1c097-50e3-494d-bddc-bdab49c7c39b","legacy_id":"317","short_name":"SJ-N11","lat":37.333955,"capacity":19,"name":"San Salvador St at 9th St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"318","lon":-121.888979,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"caadcda3-bbdb-4cc5-825a-7e3d79ea921e","legacy_id":"318","short_name":"SJ-N9","lat":37.330698,"capacity":15,"name":"San Carlos St at Market St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"321","lon":-122.4027281,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"13f59664-7cdd-451c-b4bb-1e8d660164c8","legacy_id":"321","short_name":"SF-I27","lat":37.7807382,"capacity":31,"name":"Folsom St at 5th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"323","lon":-122.40595042705534,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"07303af0-cf6e-46f2-bf9c-9ebb61f21adc","legacy_id":"323","short_name":"SF-C26-1","lat":37.79801364395978,"capacity":15,"name":"Broadway at Kearny St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"324","lon":-122.40853071212767,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6d0651c2-022b-4e4d-add0-a1bda32e6725","legacy_id":"324","short_name":"SF-F26","lat":37.788299978150825,"capacity":27,"name":"Union Square (Powell St at Post St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"327","lon":-121.8817663192749,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"bd217291-f4ad-4e1d-8c13-e27d39a35fef","legacy_id":"327","short_name":"SJ-N10-3","lat":37.33203868095132,"capacity":19,"name":"5th St at San Salvador St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"336","lon":-122.4073773622513,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"940751e9-8763-4929-9f03-080b95e35a52","legacy_id":"336","short_name":"SF-N26","lat":37.76328094058097,"capacity":27,"name":"Potrero Ave at Mariposa St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"337","lon":-122.26658821105957,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3e04af83-e5cb-4472-95b5-1fc9caefa6fb","legacy_id":"337","short_name":"OK-K6","lat":37.80696976095594,"capacity":27,"name":"Webster St at 19th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"338","lon":-122.27057933807373,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"10c593a0-39c8-45ec-bbf6-fd7fbdf30cb5","legacy_id":"338","short_name":"OK-L6","lat":37.80318908113163,"capacity":23,"name":"13th St at Franklin St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"339","lon":-122.26643800735472,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"2dbb5c93-f749-47b9-bcad-ce6c3b26ba35","legacy_id":"339","short_name":"OK-L7","lat":37.80000163118878,"capacity":27,"name":"Jackson St at 11th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"340","lon":-122.270582,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"fd89514c-f878-4cd5-8113-8e5beead44de","legacy_id":"340","short_name":"BK-I6","lat":37.849735,"capacity":15,"name":"Harmon St at Adeline St","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"341","lon":-121.88927650451659,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d12ba265-5bfe-4a00-a19a-a7299822bd65","legacy_id":"341","short_name":"SJ-M10-4","lat":37.33618830029063,"capacity":11,"name":"Fountain Alley at S 2nd St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"343","lon":-122.393378,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"8013d0b6-dd3a-4f9f-9fee-a1e6e21aef90","legacy_id":"343","short_name":"SF I29-1","lat":37.783176,"capacity":27,"name":"Bryant St at 2nd St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"345","lon":-122.398198,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e66227f7-bd49-46be-b5ee-ce6518ac9dd4","legacy_id":"345","short_name":"SF-M28","lat":37.766594,"capacity":27,"name":"Hubbell St at 16th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"349","lon":-122.4066435,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"90e4028e-afee-480f-b327-4e7cc40f6796","legacy_id":"349","short_name":"SF-I26-","lat":37.7802645,"capacity":27,"name":"Howard St at 6th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"350","lon":-122.40578681230545,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"49cb42b6-8a2e-4e19-a4b5-0f70c5b45d39","legacy_id":"350","short_name":"SF-K26","lat":37.771431362921085,"capacity":31,"name":"8th St at Brannan St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"351","lon":-122.29339957237242,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"72266876-876c-41a9-a1d7-c4b4306b42c3","legacy_id":"351","short_name":"BK-D2","lat":37.86906047545393,"capacity":19,"name":"10th St at University Ave","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"352","lon":-122.40659952163695,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"c0bc3212-1e26-438b-9ebd-ea1d1c8e92ef","legacy_id":"352","short_name":"SF-Y25","lat":37.72694296622841,"capacity":23,"name":"Goettingen St at Bacon St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"355","lon":-122.38879501819609,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"194a64ab-b6b4-4724-bd21-01b4e9cbe629","legacy_id":"355","short_name":"SF-Q30","lat":37.755367132158526,"capacity":31,"name":"23rd St at Tennessee St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"356","lon":-122.42224826223539,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"dd3ef1c7-d691-4b1f-a2d2-a9b04363ad49","legacy_id":"356","short_name":"SF-L22","lat":37.7690102,"capacity":19,"name":"Valencia St at Clinton Park","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"357","lon":-121.89284384250641,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ccf416f8-ccc0-4f82-a659-e5d7851d2bcb","legacy_id":"357","short_name":"SJ-K10","lat":37.34113203547954,"capacity":23,"name":"2nd St at Julian St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"358","lon":-122.39289611577988,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"c4c4484d-0e18-44d4-a992-c5d0550ba94d","legacy_id":"358","short_name":"SF-Y29","lat":37.729278651730276,"capacity":19,"name":"Williams Ave at 3rd St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"359","lon":-122.3988045,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e6e22821-4578-4bae-94d8-b1dabf0cd0cd","legacy_id":"359","short_name":"SF-Y27","lat":37.730079,"capacity":15,"name":"Williams Ave at Apollo St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"360","lon":-122.38952457904814,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"9477b039-8d61-4917-b03a-43efb7d55c90","legacy_id":"360","short_name":"SF-V29","lat":37.73890064447666,"capacity":19,"name":"Jerrold Ave at 3rd St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"361","lon":-122.38565549254417,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"20a07c3b-b37e-41e5-bbeb-632e3aae4b46","legacy_id":"361","short_name":"SF-V30","lat":37.739853017984125,"capacity":19,"name":"Mendell St at Fairfax Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"362","lon":-122.3900556564331,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"dfaaaa16-03ba-40b5-8360-6ebfc97ea541","legacy_id":"362","short_name":"SF-X30","lat":37.7317266935217,"capacity":19,"name":"Lane St at Revere Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"363","lon":-122.3982846736908,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"21883e7a-ea31-4cfc-843a-ca8263b39fda","legacy_id":"363","short_name":"SF-G29-1","lat":37.78749210438603,"capacity":35,"name":"Salesforce Transit Center (Natoma St at 2nd St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"364","lon":-122.3899698,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d88b1cad-d8e4-4eff-9897-9dabbc43bcbb","legacy_id":"364","short_name":"SF-K30-2","lat":37.7719996,"capacity":31,"name":"China Basin St at 3rd St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"365","lon":-122.43194639682768,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"9d47758e-44c7-4a16-a66a-efe7f942e7d1","legacy_id":"365","short_name":"SF-I20","lat":37.78045005996349,"capacity":23,"name":"Turk St at Fillmore St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"368","lon":-122.419342,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3612155a-0fb2-4e66-8bab-f81979bfe54a","legacy_id":"368","short_name":"SF-G23","lat":37.785479,"capacity":27,"name":"Myrtle St at Polk St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"369","lon":-122.41670072078705,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"88fe4d18-7a30-4ffa-8e6d-9c8aa708e30f","legacy_id":"369","short_name":"SF-G24","lat":37.78709359600294,"capacity":27,"name":"Hyde St at Post St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"370","lon":-122.41327822208405,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"11547c9b-2e36-4fc5-9e81-9d5817ae35dc","legacy_id":"370","short_name":"SF-G25","lat":37.7873267660624,"capacity":19,"name":"Jones St at Post St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"371","lon":-122.4132756,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7b2083d3-b1bb-4ef3-ba53-bebc831bd0a4","legacy_id":"371","short_name":"SF-B25","lat":37.8027671,"capacity":19,"name":"Lombard St at Columbus Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"372","lon":-122.26240932941435,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"8d63ada7-a461-44c8-999d-4a8a45117e90","legacy_id":"372","short_name":"OK-K7","lat":37.804036784023594,"capacity":19,"name":"Madison St at 17th St","region_id":"12","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"373","lon":-122.40521550178528,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6e7a5099-b2ba-40d4-9a24-29e0ae7dfd4b","legacy_id":"373","short_name":"SF-R26","lat":37.75179164525661,"capacity":23,"name":"Potrero del Sol Park (25th St at Utah St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"375","lon":-122.446649,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e98999ee-5c3d-48b8-8735-baf6518ad915","legacy_id":"375","short_name":"SF-J16","lat":37.774804,"capacity":31,"name":"Grove St at Masonic Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"376","lon":-122.387449,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"fa0488df-ff17-42f1-9250-5a2bef70072b","legacy_id":"376","short_name":"SF-O30-2","lat":37.7603435,"capacity":23,"name":"Illinois St at 20th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"377","lon":-122.4537048,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"180e4d99-3717-4b99-8200-671af652921f","legacy_id":"377","short_name":"SF-K15-","lat":37.7719511,"capacity":19,"name":"Fell St at Stanyan St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"378","lon":-121.89055323600769,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"bd05ae96-7adc-422d-84ea-697cd3b73afc","legacy_id":"378","short_name":"SJ-J11","lat":37.3477119817597,"capacity":31,"name":"7th St at Empire St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"380","lon":-122.44729131460188,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"175541bb-0ac6-42ba-bb50-071317d1237b","legacy_id":"380","short_name":"SF-I16","lat":37.779046658472055,"capacity":23,"name":"Masonic Ave at Turk St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"381","lon":-122.4260938167572,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"2c3d0e1d-f278-48df-b887-4723d4bcbefe","legacy_id":"381","short_name":"SF-P21","lat":37.75823842417928,"capacity":27,"name":"20th St at Dolores St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"383","lon":-122.4217875,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"63758c7b-dfd9-4548-92a2-28fe8efb2faa","legacy_id":"383","short_name":"SF-I22","lat":37.780819,"capacity":31,"name":"Golden Gate Ave at Franklin St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"384","lon":-122.42156758904456,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ed438146-1615-45c6-bf54-07e2de0adcf1","legacy_id":"384","short_name":"SF-E23","lat":37.79416044174933,"capacity":27,"name":"Jackson St at Polk St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"385","lon":-122.2781754,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6b38a901-f4ae-4aef-b958-3b6efe69e9d6","legacy_id":"385","short_name":"BK-I5","lat":37.8505777,"capacity":14,"name":"Woolsey St at Sacramento St","region_id":"14","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"386","lon":-122.41997372800698,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"47fcca45-c6c5-4665-9f34-8852ca3c3ae8","legacy_id":"386","short_name":"SF-Q23-3","lat":37.7520708,"capacity":16,"name":"24th St at Bartlett St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"387","lon":-122.42552250623703,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"1bd76a29-5890-4194-993c-666c09af9993","legacy_id":"387","short_name":"SF-U21","lat":37.73981271734901,"capacity":19,"name":"Randall St at Chenery St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"388","lon":-121.88604980707169,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"534d8e3d-3814-48c9-b25e-1d2b8205fcd9","legacy_id":"388","short_name":"SJ-J12-2","lat":37.35288682729121,"capacity":15,"name":"Backesto Park (Jackson St at 13th St)","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"389","lon":-121.89193725585936,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d87d0852-6abb-428b-86dd-d470c64c8ff7","legacy_id":"389","short_name":"SJ-I11","lat":37.35306166133104,"capacity":23,"name":"Taylor St at 9th St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"390","lon":-122.39044725894927,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6e52cb4a-6cd5-4d29-ad74-68e3b6aa854f","legacy_id":"390","short_name":"SF-S29","lat":37.7504343570623,"capacity":15,"name":"Indiana St at Cesar Chavez St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"391","lon":-121.90443634986876,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3794a34d-764a-4af1-80db-1b0e0ce13fed","legacy_id":"391","short_name":"SJ-G10","lat":37.355029582252904,"capacity":19,"name":"1st St at Younger Ave","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"392","lon":-121.9117319583893,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"cfda2dee-2f6c-400d-a1a7-ba1b2bdc6aee","legacy_id":"392","short_name":"SJ-E9","lat":37.364060462258806,"capacity":15,"name":"Sonora Ave at 1st St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"393","lon":-121.91947817802429,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a96032c0-9ff2-4fbe-8f03-6b3f9816947d","legacy_id":"393","short_name":"SJ-I5","lat":37.33802231313689,"capacity":23,"name":"Asbury St at The Alameda","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"394","lon":-121.8876188993454,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7c086aa7-c33f-47e5-ace9-74c40807c409","legacy_id":"394","short_name":"SJ-J12-1","lat":37.349426308788004,"capacity":23,"name":"10th St at Empire St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"395","lon":-121.90683424472809,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ab8cc22e-0f34-4476-bf81-293cbbb2e69c","legacy_id":"395","short_name":"SJ-F10","lat":37.360854155253826,"capacity":27,"name":"Kerley Dr at Rosemary St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"396","lon":-121.9187942147255,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e81efb0f-faee-43dd-b8e0-1e1f0cad61f1","legacy_id":"396","short_name":"SJ-C9","lat":37.36767805240811,"capacity":23,"name":"Metro Dr at Technology Dr","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"397","lon":-121.90931528806688,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b8cadddb-5ca8-43ec-98f3-2276e036950b","legacy_id":"397","short_name":"SJ-E10","lat":37.36186680025918,"capacity":23,"name":"Gish Rd at 1st St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"398","lon":-122.4168576300144,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"36d93f40-149d-4b0d-ab4c-ea4aad093937","legacy_id":"398","short_name":"SF-D24","lat":37.796470691622936,"capacity":19,"name":"Leavenworth St at Broadway","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"399","lon":-122.4360635,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"43974bf5-147b-4348-aed6-eb29626cb1cf","legacy_id":"399","short_name":"SF-B19","lat":37.8026635,"capacity":27,"name":"Bay St at Fillmore St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"400","lon":-122.433523,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"94b81aae-caf3-4ad6-867f-353057ad98d5","legacy_id":"400","short_name":"SF-A20","lat":37.8044325,"capacity":28,"name":"Buchanan St at North Point St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"401","lon":-121.9168147444725,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"938f4dc0-e393-47e8-9449-3a82b2445662","legacy_id":"401","short_name":"SJ-D9","lat":37.36522655191025,"capacity":19,"name":"Skyport Dr at Technology Dr","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"402","lon":-121.89593575894831,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"c0f36b61-82e5-4f63-9a28-1fa11f0149c9","legacy_id":"402","short_name":"SJ-H11","lat":37.356834352780886,"capacity":23,"name":"Raymond Bernal Jr Memorial Park (8th St at Hedding St)","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"403","lon":-121.89225107431412,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6200707a-ffec-4dde-b142-4df69780264f","legacy_id":"403","short_name":"SJ-H12","lat":37.355692651246365,"capacity":23,"name":"10th St at Mission St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"404","lon":-121.87067806720735,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"c53990d7-f965-40f4-b305-3435e1c95a71","legacy_id":"404","short_name":"SJ-M14","lat":37.345758795303155,"capacity":19,"name":"21st St at Santa Clara St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"405","lon":-121.90597593784332,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e5b1f228-5347-47fc-a079-c1df0e8668f1","legacy_id":"405","short_name":"SJ-N5","lat":37.32345133870681,"capacity":27,"name":"Sunol St at San Carlos St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"406","lon":-121.91000461578369,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"2c00d99d-7518-4ecd-ab53-63e7a34034f6","legacy_id":"406","short_name":"SJ-O4","lat":37.316736478493425,"capacity":27,"name":"Parkmoor Ave at Race St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"407","lon":-121.89783275127412,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b09fd293-4364-4ce6-9341-0ced58486c5a","legacy_id":"407","short_name":"SJ-P6","lat":37.31515792998312,"capacity":15,"name":"Bird Ave at Coe Ave","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"409","lon":-122.2987177222967,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e5741f79-1c88-4f19-8f34-59b4ab198375","legacy_id":"409","short_name":"EM-B0-2","lat":37.83954308266563,"capacity":23,"name":"2100 Powell St","region_id":"13","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"410","lon":-122.38580167293549,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ba6302c6-3960-48c0-99c7-27936e2d1275","legacy_id":"410","short_name":"SF-S30","lat":37.7502901437285,"capacity":19,"name":"Cesar Chavez St at Michigan St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"411","lon":-122.4238085746765,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e2b8752f-c441-4d30-8bcf-f78b378c7c2d","legacy_id":"411","short_name":"SF-J22-1","lat":37.774017937683546,"capacity":27,"name":"Octavia Blvd at Page St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"412","lon":-122.43414044380188,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e0ae39c6-90d9-4302-8da9-582cdaaa2a60","legacy_id":"412","short_name":"SF-W19","lat":37.7328128005294,"capacity":40,"name":"Glen Park BART Station","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"413","lon":-122.4472364,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"90f3a6f3-b34b-48fa-b162-d7fdffd9637f","legacy_id":"413","short_name":"SF-AA15","lat":37.7228179,"capacity":25,"name":"Balboa Park BART Station","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"415","lon":-121.89299941062927,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ea2a009b-6a83-4b81-ba35-c175c492f4f4","legacy_id":"415","short_name":"SJ-P7","lat":37.31975695999228,"capacity":19,"name":"Delmas Ave at Virginia St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"416","lon":-121.9030898809433,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"46f36a3a-f550-4fe0-bfe8-b94fddaf95d8","legacy_id":"416","short_name":"SJ-N6","lat":37.321181834267314,"capacity":23,"name":"Auzerais Ave at Los Gatos Creek Trail","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"417","lon":-121.91232740879057,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"45d77294-6643-4ba4-bd8b-2e8c27430dfe","legacy_id":"417","short_name":"SJ-M5","lat":37.32601084794081,"capacity":23,"name":"Park Ave at Race St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"418","lon":-121.87438488006593,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"30429aed-9a47-4fd9-87fa-0db835aa8265","legacy_id":"418","short_name":"SJ-L13","lat":37.34398467798214,"capacity":19,"name":"17th St at Santa Clara St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"419","lon":-122.42066636681557,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"618f7cf2-3478-4607-9081-71f3a314f56f","legacy_id":"419","short_name":"SF-F23","lat":37.788628795347044,"capacity":15,"name":"Bush St at Polk St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"421","lon":-121.87877833843231,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7d59176c-49dd-4b07-a5ab-bcc109974db3","legacy_id":"421","short_name":"SJ-I14","lat":37.3600013909666,"capacity":19,"name":"23rd St at Taylor St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"422","lon":-121.90914899110793,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d75591d7-080d-46cb-8ada-0fbe6af676fc","legacy_id":"422","short_name":"SJ-J6","lat":37.33677476275722,"capacity":23,"name":"Stockton Ave at Lenzen Ave","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"423","lon":-121.87009871006012,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"94c877d2-f064-4373-b372-3f8997a07f30","legacy_id":"423","short_name":"SJ-R11","lat":37.32031582108647,"capacity":31,"name":"South San Jose State (7th St at Humboldt St)","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"424","lon":-122.43412166833876,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"664a552b-479c-40c3-b702-6b0b63751ce3","legacy_id":"424","short_name":"SF-C20","lat":37.799207926286,"capacity":19,"name":"Greenwich St at Webster St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"425","lon":-121.89632534980774,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"4e704be5-b76d-44a5-8d05-a9ba3e5ae20e","legacy_id":"425","short_name":"SJ-Q5","lat":37.31128394611736,"capacity":19,"name":"Bird Ave at Willow St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"426","lon":-121.91349685192107,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"68c89d1f-407a-4550-a2b7-ecf0ad7ee422","legacy_id":"426","short_name":"SJ-M4","lat":37.3233446905968,"capacity":19,"name":"San Carlos St at Meridian Ave","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"427","lon":-121.90829604864119,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"14750571-71a2-4c2f-8a6a-8f344866eebe","legacy_id":"427","short_name":"SJ-N5-2","lat":37.32096853145443,"capacity":27,"name":"Auzerais Ave at Lincoln Ave","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"431","lon":-122.4506950378418,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f503bee7-b169-43c4-a1ef-5b3ddd859a7a","legacy_id":"431","short_name":"SF-X14","lat":37.728281592452824,"capacity":27,"name":"Judson Ave at Gennessee St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"432","lon":-122.39097297191618,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a6c2bd25-bdaf-4548-baeb-e203cfa52b3e","legacy_id":"432","short_name":"SF-X29","lat":37.73309280990925,"capacity":19,"name":"Quesada Ave at 3rd St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"433","lon":-122.45112150907515,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d09b983e-bbce-4501-9e3c-7dc0fe605ff3","legacy_id":"433","short_name":"SF-W14","lat":37.7316566899845,"capacity":15,"name":"Gennessee St at Monterey Blvd","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"434","lon":-122.39456713199615,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f24186f7-5c85-4be8-8328-55de576a88db","legacy_id":"434","short_name":"SF-Z28","lat":37.72558734385659,"capacity":23,"name":"Carroll Ave at 3rd St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"435","lon":-122.38653659820555,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"9d4c484b-5e48-4115-8f87-e3f19b08c9d4","legacy_id":"435","short_name":"SF-Y30","lat":37.72939320661727,"capacity":19,"name":"Jennings St at Revere Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"436","lon":-122.38996982574461,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ba3699d9-448e-4246-aa88-b7543383af4e","legacy_id":"436","short_name":"SF-W29","lat":37.73629587217104,"capacity":23,"name":"McKinnon Ave at 3rd St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"437","lon":-122.3834355,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6c4a9d85-6ef7-43fc-82a5-172d1a045539","legacy_id":"437","short_name":"SF-V31","lat":37.740048,"capacity":15,"name":"Evans Ave at Mendell St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"438","lon":-122.3944985,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"9d5eb122-9e8b-49db-bf9c-a73c9e88c8d2","legacy_id":"438","short_name":"SF-V28","lat":37.7370395,"capacity":19,"name":"Oakdale Ave at Phelps St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"439","lon":-122.439361,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7dd926da-25ee-48fd-9de7-ad59a83f94a8","legacy_id":"439","short_name":"SF-G18","lat":37.784419,"capacity":31,"name":"Post St at Divisadero St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"440","lon":-122.449228,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"dd34aaa2-dd91-4d83-9f92-e8a2f1cc2f93","legacy_id":"440","short_name":"SF-M15","lat":37.765942,"capacity":23,"name":"Carl St at Cole St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"441","lon":-122.4244135,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f518d262-a592-4b3d-b026-b9215bea13d0","legacy_id":"441","short_name":"SF-B22","lat":37.8023,"capacity":23,"name":"Chestnut St at Van Ness Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"442","lon":-121.86796635389327,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6994e1e6-bb3c-4309-8207-52e6004a7302","legacy_id":"442","short_name":"SJ-H17","lat":37.3655356585599,"capacity":23,"name":"Newbury Park Dr at King Rd","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"443","lon":-121.87627851963045,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a7677436-088f-4c4f-82b9-e769e479ddf1","legacy_id":"443","short_name":"SJ-Q10","lat":37.32086614588923,"capacity":23,"name":"3rd St at Keyes St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"444","lon":-121.88133180141449,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3c12fd1d-c7fc-4570-8fa3-1449c096b818","legacy_id":"444","short_name":"SJ-G15","lat":37.37111641335901,"capacity":19,"name":"Mercado Way at Sierra Rd","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"445","lon":-122.399749,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"2a229da1-a8bc-485a-982b-df0c9de6d11e","legacy_id":"445","short_name":"SF-G28-2","lat":37.7864555,"capacity":20,"name":"Natoma St at New Montgomery St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"446","lon":-122.40731298923492,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"8d2b8bc1-39ed-43c4-83ca-6da147d76bea","legacy_id":"446","short_name":"SF-H26-2","lat":37.78227952975499,"capacity":15,"name":"Mint St at Mission St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"450","lon":-122.47065067291258,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ea3a94b3-f37e-4d32-afaf-e8bc1f89342f","legacy_id":"450","short_name":"SF-M10","lat":37.76393402521409,"capacity":27,"name":"Funston Ave at Irving St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"451","lon":-122.4673775,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"51e8e63d-0883-47e0-b280-210e0c990a49","legacy_id":"451","short_name":"SF-M11","lat":37.7642245,"capacity":23,"name":"10th Ave at Irving St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"453","lon":-122.3969730734825,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e1242828-b89b-4d56-a78e-6a34fd7d3c00","legacy_id":"453","short_name":"SF-J28-2","lat":37.77793367006746,"capacity":19,"name":"Brannan St at 4th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"454","lon":-122.464998,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"2815280a-8263-4537-a944-4fdc32774fde","legacy_id":"454","short_name":"SF-J12","lat":37.7751205,"capacity":23,"name":"7th Ave at Cabrillo St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"455","lon":-122.458104,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"bfb90ed7-6039-4c61-9b13-fb60b1786dde","legacy_id":"455","short_name":"SF-J13","lat":37.775328,"capacity":19,"name":"McAllister St at Arguello Blvd","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"456","lon":-122.45880603790283,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b513d838-5423-490c-bf7d-9f20771cf529","legacy_id":"456","short_name":"SF-G13","lat":37.78146761537824,"capacity":19,"name":"Arguello Blvd at Geary Blvd","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"457","lon":-122.46406316757202,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"09a8c4ba-29d9-43bd-a457-34e8f741d673","legacy_id":"457","short_name":"SF-M12","lat":37.76343361023245,"capacity":27,"name":"7th Ave at Irving St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"458","lon":-122.45763659477234,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ec61cf51-8375-4959-9f51-b225e317abb7","legacy_id":"458","short_name":"SF-M13","lat":37.76578298679633,"capacity":19,"name":"Frederick St at Arguello Blvd","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"459","lon":-122.4055145,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"9cac67a2-9219-455e-b3db-c771311c5b33","legacy_id":"459","short_name":"SF-Q26","lat":37.753259,"capacity":15,"name":"Utah St at 24th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"460","lon":-122.38633275032042,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"87168190-5491-47c8-bb9b-187ddf6052c3","legacy_id":"460","short_name":"SF-M30-2","lat":37.76909488728109,"capacity":12,"name":"Terry Francois Blvd at Warriors Way","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"461","lon":-122.3866885,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"afd6eb75-31a1-4efc-8049-b5617fc2b51f","legacy_id":"461","short_name":"SF-L31-1","lat":37.7717667,"capacity":27,"name":"Terry Francois Blvd at Mission Bay Blvd N","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"462","lon":-122.402087,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d82d9e94-bb62-4001-b6ad-50603199554d","legacy_id":"462","short_name":"SF-B28","lat":37.804648,"capacity":23,"name":"Cruise Terminal at Pier 27","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"463","lon":-122.3767840862274,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"c0d7ba8d-145a-40fc-aa06-f4c06fc49edb","legacy_id":"463","short_name":"SF-V32","lat":37.740321776391326,"capacity":27,"name":"Heron's Head Park","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"465","lon":-122.394495,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a7da1857-747a-4507-9d8f-2a9f95f0babf","legacy_id":"465","short_name":"SF-J29-3","lat":37.7763115,"capacity":18,"name":"San Francisco Caltrain Station (King St at 4th St)","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"466","lon":-122.46314182877539,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"9b4f6ef0-4568-4f52-8226-ec8432b75802","legacy_id":"466","short_name":"SF-H12","lat":37.77948760924334,"capacity":21,"name":"5th Ave at Anza St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"467","lon":-122.3914651,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"4c98bff8-3bd8-480e-ac8f-25fa4b09f84e","legacy_id":"467","short_name":"SF-I30-2","lat":37.7822586,"capacity":35,"name":"Brannan St at Colin P Kelly Jr St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"468","lon":-122.42295295000075,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"578f166a-d83f-4730-b12d-f1384b7b8c44","legacy_id":"468","short_name":"SF-J22-2","lat":37.77787007022392,"capacity":25,"name":"Grove St at Gough St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"469","lon":-122.43576988577843,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7baa314e-6125-4943-b469-40cd66776104","legacy_id":"469","short_name":"SF-H19","lat":37.781981687527214,"capacity":27,"name":"Ellis St at Pierce St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"470","lon":-121.87729239463806,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b6d76c7a-2082-430b-8403-da5db00becaf","legacy_id":"470","short_name":"SJ-L12","lat":37.3426625921454,"capacity":23,"name":"N 14th St at E Santa Clara St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"471","lon":-122.45462179183959,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"394b8db0-00f7-47b8-b85c-a36fd0de8340","legacy_id":"471","short_name":"SF-J14","lat":37.777609310293336,"capacity":21,"name":"Turk Blvd at Stanyan St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"472","lon":-121.89971968531609,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"eb283c26-5d6b-4da4-a2ac-f0bfe3329856","legacy_id":"472","short_name":"SJ-N7","lat":37.324125951150876,"capacity":23,"name":"Columbia Ave at Bird Ave","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"473","lon":-121.9000107049942,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"cf792877-0b6a-4594-b388-8eb06599b549","legacy_id":"473","short_name":"SJ-Q4","lat":37.309014074275915,"capacity":23,"name":"Willow St at Blewett Ave","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"474","lon":-122.4728095,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7f44afe0-3e39-41d5-a73d-121395143d81","legacy_id":"474","short_name":"SF-G10-2","lat":37.780364,"capacity":27,"name":"14th Ave at Geary Blvd","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"475","lon":-121.8636494,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"59a78eb1-a501-4145-b21f-bc2397898905","legacy_id":"475","short_name":"SJ-N14","lat":37.3398531,"capacity":15,"name":"22nd St at William St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"476","lon":-121.86652064323424,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ea511b7f-eae4-4ee8-9bba-ee7445e5133a","legacy_id":"476","short_name":"SJ-N14-2","lat":37.338468014146,"capacity":15,"name":"19th St at William St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"477","lon":-122.47610360383989,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"be15716e-f097-437b-8738-1db234d03b5e","legacy_id":"477","short_name":"SF-G9","lat":37.78071988575564,"capacity":23,"name":"17th Ave at Geary Blvd","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"478","lon":-122.42578603327274,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"c8a342d4-3bf7-4619-9ae1-9b382d5440e1","legacy_id":"478","short_name":"SF-B21","lat":37.80028668467315,"capacity":19,"name":"Greenwich St at Franklin St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"479","lon":-122.4233016371727,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"586dce76-7324-4117-9c58-7ed6d00151bf","legacy_id":"479","short_name":"SF-E22","lat":37.792979854977766,"capacity":27,"name":"Washington St at Van Ness Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"480","lon":-122.43540108203887,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"434e592c-be93-4300-b76a-98de4cd3326e","legacy_id":"480","short_name":"SF-F19","lat":37.788568914161615,"capacity":19,"name":"Steiner St at California St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"481","lon":-122.44737446308135,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"1e5323d3-5bd3-4259-a9d4-aec0e09d8f56","legacy_id":"481","short_name":"SF-H16","lat":37.781130551698666,"capacity":27,"name":"O'Farrell St at Masonic Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"482","lon":-122.4035775,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ab03623f-6fe9-4e9b-b38b-6e98513082d1","legacy_id":"482","short_name":"SF-K27-2","lat":37.772712,"capacity":23,"name":"Brannan St at 7th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"483","lon":-122.40088641643523,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"22a9d86b-ba44-4f2f-b167-355f99c7968c","legacy_id":"483","short_name":"SF-L27-2","lat":37.77122901793374,"capacity":27,"name":"7th St at King St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"485","lon":-122.4713658,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"91ab197f-ceb5-4dbe-b907-532afa8db43b","legacy_id":"485","short_name":"SF-J10","lat":37.7735636,"capacity":27,"name":"Funston Ave at Fulton St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"486","lon":-122.45864510536192,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f0083331-9bf8-407f-bba2-ab00c8968db9","legacy_id":"486","short_name":"SF-H13","lat":37.778486986397496,"capacity":19,"name":"Arguello Blvd at Edward St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"487","lon":-122.41088703274725,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"fb39d594-8fdb-440e-80c5-8a544b339007","legacy_id":"487","short_name":"SF-C25","lat":37.800496036682574,"capacity":30,"name":"Powell St at Columbus Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"488","lon":-122.3922705,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"2dfbc387-8432-4ac3-9526-fc79b5046eb8","legacy_id":"488","short_name":"SF-AA28","lat":37.722601,"capacity":19,"name":"Egbert Ave at Jennings St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"489","lon":-122.47196763753891,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"5a895f98-fd79-4db0-b19f-e2d312acf148","legacy_id":"489","short_name":"SF-G10-1","lat":37.782497875963806,"capacity":27,"name":"Funston Ave at Clement St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"490","lon":-122.46763586997984,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"48c7a222-5ed0-4b31-b520-4b6bfc5ca54d","legacy_id":"490","short_name":"SF-G11","lat":37.781840715520495,"capacity":27,"name":"9th Ave at Geary Blvd","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"491","lon":-121.89564406871794,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d68c980f-e659-4407-8e69-fea3ea84476a","legacy_id":"491","short_name":"SJ-L9-2","lat":37.338670604639425,"capacity":23,"name":"Devine St at San Pedro St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"492","lon":-122.43259012699126,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"63b2136c-c947-473e-977e-8cc0e6347699","legacy_id":"492","short_name":"SF-E20","lat":37.79080303242391,"capacity":19,"name":"Webster St at Clay St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"493","lon":-122.40790843963623,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b53670c4-7b44-4b35-88da-c8763a8802a2","legacy_id":"493","short_name":"SF-J26-2","lat":37.77666378283064,"capacity":19,"name":"Folsom St at 7th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"494","lon":-121.9049111008644,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"14f62ff9-1893-4379-8fe4-db578da909ee","legacy_id":"494","short_name":"SJ-M6-2","lat":37.326282324105776,"capacity":19,"name":"Park Ave at Laurel Grove Ln","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"495","lon":-121.88438951969147,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"218e755d-c0d3-4b33-8afc-b4b0e8ab3a41","legacy_id":"495","short_name":"SJ-L11","lat":37.343208488473465,"capacity":19,"name":"St James St at 9th St","region_id":"5","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"496","lon":-122.423534989357,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"cb20f487-2e7d-4c11-9f19-2b669ff9fd7f","legacy_id":"496","short_name":"SF-C22","lat":37.79762790889688,"capacity":23,"name":"Green St at Van Ness Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"497","lon":-122.43289589881897,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"57b62dd0-e022-47a7-ad7e-340fbe98188a","legacy_id":"497","short_name":"SF-X19","lat":37.73017446887281,"capacity":19,"name":"Alemany Blvd at Silver Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"498","lon":-122.45244383811949,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"47894de7-32c7-48ac-aa44-57c8def8a7f3","legacy_id":"498","short_name":"SF-Y14","lat":37.7258897887525,"capacity":23,"name":"Frida Kahlo Way at Cloud Cir","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"499","lon":-122.419976,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3a415706-d63c-4a35-9b1c-bb9127ddc925","legacy_id":"499","short_name":"SF-K23","lat":37.772219,"capacity":22,"name":"Otis St at Brady St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"500","lon":-122.4017154,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6732f1f5-616c-46bc-81e6-67c5319b3c73","legacy_id":"500","short_name":"SF-B28-2","lat":37.8020552,"capacity":31,"name":"Battery St at Filbert St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":false,"station_id":"501","lon":-122.4432384967804,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"fed768af-80bd-4567-9a94-df9b7e369433","legacy_id":"501","short_name":"SF-Y16","lat":37.72489268384971,"capacity":0,"name":"Balboa Park (San Jose Ave at Sgt. John V. Young Ln","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"502","lon":-122.44380980730057,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7dfe1c94-5eae-41a7-ad42-3d3f4c7610a3","legacy_id":"502","short_name":"SF-Z16","lat":37.72238229348268,"capacity":24,"name":"Delano Ave at Oneida Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"503","lon":-122.440105676651,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"ec02b98c-1713-4033-9466-47146c77d476","legacy_id":"503","short_name":"SF-BB17","lat":37.71616094545787,"capacity":19,"name":"London St at Geneva Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":false,"station_id":"504","lon":-122.43830323219298,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"c03c4e52-af17-45f6-adcd-47318c1d3aec","legacy_id":"504","short_name":"SF-AA17","lat":37.72154366557775,"capacity":0,"name":"Onondaga Ave at Alemany Blvd","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":false,"station_id":"505","lon":-122.43349134922028,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f730f60a-6481-45fa-a956-eb9b511f89e4","legacy_id":"505","short_name":"SF-CC18","lat":37.71319253793744,"capacity":0,"name":"Geneva Ave at Moscow St","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"506","lon":-122.4653774499893,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"df4b01d6-90bb-4faa-8437-d0391b8d115b","legacy_id":"506","short_name":"SF-G12","lat":37.78243851977672,"capacity":24,"name":"7th Ave at Clement St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"508","lon":-122.442203,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a7a6f245-fb70-495f-9598-89fa03d120f7","legacy_id":"508","short_name":"SF-H17","lat":37.782574,"capacity":27,"name":"St. Joseph's Ave at Geary Blvd","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"509","lon":-122.38689199090005,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"1a7a0757-fbbb-497e-b92b-cb0817cab274","legacy_id":"509","short_name":"SF-U30","lat":37.74197831512656,"capacity":19,"name":"Evans Ave at Newhall St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"510","lon":-122.431821,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"a5c3e383-f1b0-449f-8ad4-96291f38c636","legacy_id":"510","short_name":"SF-G20","lat":37.785394,"capacity":31,"name":"Post St at Webster St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"511","lon":-122.450012,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"8971b4a0-9868-422f-904c-d4c180fc34ae","legacy_id":"511","short_name":"SF-H15","lat":37.78068,"capacity":29,"name":"Anza St at Collins St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"512","lon":-122.440683,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e8bf72d0-c2cc-4e22-b678-4e715c2bd9ff","legacy_id":"512","short_name":"SF-E18","lat":37.7895875,"capacity":19,"name":"Divisadero St at Clay St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"513","lon":-122.40423738710535,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b8c5214e-5d26-47d0-aba5-d62ef145d083","legacy_id":"513","short_name":"SF-M26-2","lat":37.7685449,"capacity":27,"name":"Alameda St at Henry Adams St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"514","lon":-122.4500525,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e061c062-a4eb-4a4d-a19c-a6c6e3e03e1d","legacy_id":"514","short_name":"SF-F16","lat":37.7866115,"capacity":23,"name":"Laurel St at California St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"515","lon":-122.477667,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"37cf6b02-5cb0-4461-bf45-0ae60a1a2fb7","legacy_id":"515","short_name":"SF-F9","lat":37.785111,"capacity":23,"name":"18th Ave at California St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"516","lon":-122.492844,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"9818c353-b93e-4775-b23c-d602913945ca","legacy_id":"516","short_name":"SF-G5","lat":37.781722,"capacity":23,"name":"Clement St at 32nd Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"517","lon":-122.45342284440996,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"272f64c8-d2aa-4fe8-8fcd-9853367dc8b8","legacy_id":"517","short_name":"SF-F15","lat":37.78657849953654,"capacity":24,"name":"Spruce St at California St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"518","lon":-122.405943,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"6197f964-9002-4ddb-b4df-70d0bcf25ee9","legacy_id":"518","short_name":"SF-P26","lat":37.756808,"capacity":15,"name":"22nd St at Potrero Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"519","lon":-122.399998,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e60d1fa9-6274-4137-9fa2-160a32e29afa","legacy_id":"519","short_name":"SF-K28-3","lat":37.773238,"capacity":23,"name":"Townsend St at 6th St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"520","lon":-122.4827855,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"f8f12028-2117-4737-9a03-04548ad95e82","legacy_id":"520","short_name":"SF-G7","lat":37.7819295,"capacity":19,"name":"23rd Ave at Clement St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"521","lon":-122.509071,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"874736bb-35c8-48e8-a4d7-e8e811d418da","legacy_id":"521","short_name":"SF-J1","lat":37.772954,"capacity":23,"name":"48th Ave at Cabrillo St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":false,"station_id":"523","lon":-122.429315,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"c6fc1429-ff65-428a-920c-f07aacdf51e8","legacy_id":"523","short_name":"SF-E21","lat":37.791966,"capacity":0,"name":"Lafayette Park (Laguna St at Washington St)","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"524","lon":-122.494064,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"4938bd2c-37c1-4be9-9ad3-3b3d3d589248","legacy_id":"524","short_name":"SF-J5","lat":37.775681,"capacity":19,"name":"34th Ave at Balboa St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"525","lon":-122.480383,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"8777c08a-3535-4da3-bae1-a22f470177f3","legacy_id":"525","short_name":"SF-G8","lat":37.7799345,"capacity":18,"name":"21st Ave at Geary Blvd","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"527","lon":-122.395626,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"31d616be-a4ad-48ec-b8be-c08650a50136","legacy_id":"527","short_name":"SF-G29-3","lat":37.788032,"capacity":39,"name":"Tehama St at 1st St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"528","lon":-122.456303,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"41c6b82b-2e59-4fa2-a7ad-f6cd0bcd9130","legacy_id":"528","short_name":"SF-H14","lat":37.780949,"capacity":19,"name":"Stanyan St at Geary Blvd","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"529","lon":-122.429772,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"71af92f2-0999-4917-b7da-36e122a8f967","legacy_id":"529","short_name":"SF-W19-2","lat":37.734966,"capacity":19,"name":"Arlington St at Roanoke St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"530","lon":-122.442878,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"71944da6-f667-4ca6-ace6-70765d46a529","legacy_id":"530","short_name":"SF-G17","lat":37.783973,"capacity":27,"name":"Post St at Baker St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"531","lon":-122.48797,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"d4a88e33-78c4-4bc4-86a5-da0e3dd6e4b6","legacy_id":"531","short_name":"SF-G6","lat":37.779673,"capacity":19,"name":"28th Ave at Geary Blvd","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"532","lon":-122.498498,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"bf7e294f-11cc-4b4a-9a37-036d0dc0f648","legacy_id":"532","short_name":"SF-J3","lat":37.775522,"capacity":18,"name":"38th Ave at Balboa St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"533","lon":-122.3988357,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"987bd538-e619-4284-beb8-c13c65fcf38b","legacy_id":"533","short_name":"SF-E28-2","lat":37.7930958,"capacity":32,"name":"Front St at California St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"534","lon":-122.426527,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"4f7840d9-aca0-4a53-8664-e9e043d21a72","legacy_id":"534","short_name":"SF-I21","lat":37.778307,"capacity":31,"name":"Fulton St at Laguna St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"536","lon":-122.437261,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"3bc86f37-b447-4c09-93bc-d98785d3e49c","legacy_id":"536","short_name":"SF-A19","lat":37.805376,"capacity":27,"name":"Fillmore St at Jefferson St","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"537","lon":-122.482735,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"44647200-5fea-47fc-a629-c1884554afb8","legacy_id":"537","short_name":"SF-Z6","lat":37.722001,"capacity":30,"name":"Font Blvd at Arballo Dr","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"538","lon":-122.442326,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"fbf5768b-ac38-4841-9d94-e56a907dc5d6","legacy_id":"538","short_name":"SF-K17-2","lat":37.770519,"capacity":12,"name":"Haight St at Lyon St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":false,"station_id":"539","lon":-122.442702,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"7b6183c2-7305-43de-953e-a502e04f783d","legacy_id":"539","short_name":"SF-A18","lat":37.802949,"capacity":0,"name":"North Point St at Divisadero St","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"540","lon":-122.476163,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"b32262f7-54fe-4ea7-9859-e761407169a5","legacy_id":"540","short_name":"SF-W8","lat":37.731085,"capacity":27,"name":"Eucalyptus Dr at 20th Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"541","lon":-122.478859,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"c2169cbb-4ff3-405a-a656-729171b13d47","legacy_id":"541","short_name":"SF-Z7","lat":37.72095,"capacity":31,"name":"Holloway Ave at Arellano Ave","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"543","lon":-122.511208,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"702e67bf-a75e-4352-8b20-425a19c1845c","legacy_id":"543","short_name":"SF-H0","lat":37.775211,"capacity":27,"name":"Great Hwy at Balboa St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"544","lon":-122.427457,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"236c090a-68d6-4e2a-8a93-9d701ec242d9","legacy_id":"544","short_name":"SF-C21","lat":37.797249,"capacity":19,"name":"Allyne Park (Green St at Gough St)","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"545","lon":-122.463774,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"0a8d57e4-f30f-4aa8-8409-4712e9869de0","legacy_id":"545","short_name":"SF-O12","lat":37.7587,"capacity":27,"name":"7th Ave at Lawton St","region_id":"3","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"546","lon":-122.26914636790752,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"492edeb7-7c9f-4845-b5cc-442faedb3a56","legacy_id":"546","short_name":"OK-L6-2","lat":37.802688402040665,"capacity":19,"name":"13th St at Webster St","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"547","lon":-122.40927904844284,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"e01b3ae0-0543-484f-9085-bff4af3c174c","legacy_id":"547","short_name":"SF-A26","lat":37.80717108096738,"capacity":19,"name":"North Point St at Grant Ave","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"548","lon":-122.411536,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"2d63ccd8-6a9a-49de-9404-2ebb9ac3bf59","legacy_id":"548","short_name":"SF-A25","lat":37.806929,"capacity":28,"name":"North Point St at Powell St","rental_methods":["KEY","CREDITCARD"]},{"has_kiosk":true,"station_id":"549","lon":-122.42313,"eightd_has_key_dispenser":false,"station_type":"classic","electric_bike_surcharge_waiver":false,"eightd_station_services":[],"rental_uris":{"android":"https://sfo.lft.to/lastmile_qr_scan","ios":"https://sfo.lft.to/lastmile_qr_scan"},"external_id":"48ce0031-e9e2-4336-a60c-d9fd6d6403a2","legacy_id":"549","short_name":"SF-A22","lat":37.805442,"capacity":35,"name":"North Point St at Polk St","region_id":"3","rental_methods":["KEY","CREDITCARD"]}]},"last_updated":1632287915,"ttl":5} \ No newline at end of file