Walk Score Cities API

Supported cities list

Operations 1

GET /transit/supported/cities/ List Supported Cities #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/walk-score-cities-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

walk-score-cities-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Walk Score Transit Cities API
  description: The Walk Score Public Transit API provides detailed transit data including Transit Scores, nearby stops, route networks, stop details, and route details. The API returns information about bus, rail, and other transit options within one mile of any location. Used by real estate platforms, commute calculators, and urban planning applications to surface public transportation options.
  version: 1.0.0
  contact:
    url: https://www.walkscore.com/professional/public-transit-api.php
  termsOfService: https://www.walkscore.com/professional/terms.php
servers:
- url: https://transit.walkscore.com
  description: Walk Score Transit API
security:
- apiKey: []
tags:
- name: Cities
  description: Supported cities list
paths:
  /transit/supported/cities/:
    get:
      operationId: listSupportedCities
      summary: List Supported Cities
      description: Returns a list of all cities supported by the Transit Score API, including city name, state (US) or country code (non-US), and estimated population. Use this to validate city/state combinations before requesting transit scores.
      tags:
      - Cities
      parameters:
      - name: wsapikey
        in: query
        required: true
        schema:
          type: string
        description: Your Walk Score API key
      responses:
        '200':
          description: Array of supported cities
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SupportedCity'
        '400':
          description: Invalid API key
components:
  schemas:
    SupportedCity:
      type: object
      properties:
        city:
          type: string
          description: Canonical city name
          example: Seattle
        state:
          type: string
          description: Two-letter US state code (US cities only)
          example: WA
        country:
          type: string
          description: Two-letter ISO-3166 country code (non-US cities only)
        population:
          type: integer
          description: Estimated city population
          example: 737000
  securitySchemes:
    apiKey:
      type: apiKey
      in: query
      name: wsapikey
      description: Walk Score API key, contact Walk Score to obtain