> ## Documentation Index
> Fetch the complete documentation index at: https://docs.propertydata.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Property Walk and Transit Score

> Get Property Walk and Transit Score



## OpenAPI

````yaml api-reference/zillow/openapi.json get /api/v1/property/walk-and-transit-score
openapi: 3.1.0
info:
  title: US Property Data
  description: US Property Data Documentation
  version: 1.0.0
servers:
  - url: https://us-property-data.p.rapidapi.com
    description: RapiAPI
security: []
paths:
  /api/v1/property/walk-and-transit-score:
    get:
      tags:
        - Property
      summary: Get Property Walk and Transit Score
      description: Get Property Walk and Transit Score
      operationId: getApiV1PropertyWalk-and-transit-score
      parameters:
        - in: query
          name: zpid
          schema:
            type: string
            pattern: ^\d+$
            minLength: 1
            description: Unique Zillow Property ID (ZPID) used to identify the property
            example: '58916071'
          required: true
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  cost:
                    type: number
                    description: Cost of the request
                    example: 1
                  data:
                    type: object
                    properties:
                      id:
                        type: string
                        description: >-
                          Unique encoded identifier for the property used by the
                          Walk Score service.
                        example: UHJvcGVydHk6NTg5MTYwNzE
                      walkScore:
                        type: object
                        properties:
                          walkscore:
                            type: number
                            description: >-
                              Numeric walkability score indicating how easily
                              daily errands can be accomplished on foot.
                            example: 2
                          description:
                            type: string
                            description: >-
                              Human-readable category describing the walkability
                              level of the location.
                            example: Car-Dependent
                          ws_link:
                            type: string
                            description: >-
                              Link to the detailed Walk Score page for this
                              property location.
                            example: >-
                              https://www.walkscore.com/score/loc/lat=41.530857/lng=-72.85068/?utm_source=zillow2.com&utm_medium=ws_api&utm_campaign=ws_api
                        description: >-
                          Walkability information and score provided by Walk
                          Score for the property location.
                      transitScore:
                        type: object
                        properties:
                          transit_score:
                            type: number
                            description: >-
                              Numeric transit score indicating the availability
                              and usefulness of nearby public transportation.
                            example: 0
                          description:
                            type: string
                            description: >-
                              Human-readable category describing the level of
                              public transit access near the property.
                            example: No Nearby Transit
                          ws_link:
                            type: string
                            description: >-
                              Link to the detailed Transit Score page for this
                              property location.
                            example: >-
                              https://www.walkscore.com/score/loc/lat=41.5309/lng=-72.8507/?utm_source=zillow2.com&utm_medium=ts_api&utm_campaign=ts_api
                        description: >-
                          Public transit accessibility score and related
                          information for the property location.
                      bikeScore:
                        type: object
                        properties:
                          bikescore:
                            type: number
                            description: >-
                              Numeric bikeability score indicating how suitable
                              the area is for biking.
                            example: 19
                          description:
                            type: string
                            description: >-
                              Human-readable category describing the bike
                              friendliness of the area.
                            example: Somewhat Bikeable
                        description: >-
                          Biking accessibility and suitability score for the
                          property location.
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Bad request
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: >-
                      Invalid API key. Go to https://docs.rapidapi.com/docs/keys
                      for more info.
        '403':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: You are not subscribed to this API.
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  message:
                    type: string
                    example: 'Request failed with status 500: Internal Server Error'
                  status_code:
                    type: number
                    example: 500
                  cost:
                    type: number
                    example: 0
                  explain:
                    type: string
                    example: >-
                      Oops, it looks like there was an issue processing your
                      request. Don't worry, you won't be charged for this
                      request
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-rapidapi-key
      description: Rapid API Key

````