GET
/
v1
/
insights
/
lokascore
curl --request GET \
  --url https://api.findloka.com/v1/insights/lokascore \
  --header 'Authorization: <authorization>'
{
  "loka_score": 78,
  "description": "This location has excellent accessibility, good shopping options, and above-average safety ratings. It's within walking distance of public transportation and has several parks nearby.",
  "property_tags": ["Active Lifestyle"],
  "quality_rating": "Moderate",
  "score_range": {
    "min": 0,
    "max": 100
  }
}

Overview

The LokaScore API provides a comprehensive numerical score that evaluates the overall quality and suitability of a location. This score aggregates multiple location metrics into a single value, making it easy to quickly assess and compare different addresses.

To obtain an API key, please contact our sales team.

Authorization

Authorization
string
required

Your API key for authentication

Query Parameters

address
string
required

The full address for which to retrieve the LokaScore

{
  "loka_score": 78,
  "description": "This location has excellent accessibility, good shopping options, and above-average safety ratings. It's within walking distance of public transportation and has several parks nearby.",
  "property_tags": ["Active Lifestyle"],
  "quality_rating": "Moderate",
  "score_range": {
    "min": 0,
    "max": 100
  }
}

Notes

  • The response includes:
    • loka_score: A numerical score from 0 to 100 representing the overall quality of the location
    • description: A textual explanation of the score, highlighting key factors that influenced it
    • property_tags: An array of descriptive tags that characterize the location
    • quality_rating: A concise evaluation of the property’s overall appeal based on key metrics
    • score_range: The minimum and maximum possible scores for reference
  • A score of -1 indicates that data is not available for the requested address
  • The LokaScore is calculated using a proprietary algorithm that considers all available metrics
  • Tags provide a quick way to understand the key characteristics of a location
  • This score is useful for quickly comparing multiple locations without analyzing individual metrics
  • Make sure to URL-encode the address parameter when making requests