Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Version History

Version 1 Current »

Overview

The State Neighbourhoods API allows you to retrieve a list of Neighbourhoods within a specified county. This is useful for obtaining Neighbourhoods information for a particular county.

Base URL

The base URL for the API is https://api.realtyfeed.com.

Endpoint

Get Neighbourhoods by State

Endpoint

GET /geo/neighbourhood/county/{county}

Path Parameters

  • county (string): The county name for which Neighbourhoods will be retrieved. Supported counties include:

    • 'Davidson', 'Maricopa', 'Bexar', 'Los Angeles', 'Allen', 'King', … (look at the API response)

Response

  • 200 OK: Returns a JSON response containing a list of Neighbourhoods within the specified county.

    Example:

  • [
        "Sharpstown",
        "Blackshear",
        "Shadow Hills",
        "Pelican Bay",
        "Alief",
        "Acorn",
        "Park Terrace",
        "Westside",
        "Arlington Heights",
        "South Hills"
    ]

404 Not Found: If no Neighbourhoods are found for the given county.

Usage

To use the county Neighbourhoods API, perform a GET request to the specified endpoint with the county name as a path parameter. The API will respond with a list of Neighbourhoods within the specified county.

  • No labels