0.13.0 (August 25, 2023)

  • Introduce v1/place/{parcl_id}/mappings endpoint

Introduce v1/place/{parcl_id}/mappings endpoint

We are pleased to introduce a new endpoint, v1/place/{parcl_id}/mappings. This endpoint allows users to query a parcl_id and return the parcl_ids that geographically contain the queried parcl_ids (parcl_parcls), or are geographically contained by the queried parcl_id (child_parcls). The response object looks like this:

For the New York MSA:

{
    "parcl_id": 2900187,
    "location_name": "New York",
    "location_type": "MSA",
    "country_code": "USA",
    "parcl_mapping": {
        "parent_parcls": [],
        "child_parcls": [
            {
                "parcl_id": 5307837,
                "friendly_name": "Jersey",
                "boundary_type": "CITY"
            },
            {
                "parcl_id": 5372594,
                "friendly_name": "New York",
                "boundary_type": "CITY"
            },
            {
                "parcl_id": 5822447,
                "friendly_name": "Brooklyn County",
                "boundary_type": "COUNTY"
            },
            {
                "parcl_id": 5822484,
                "friendly_name": "Manhattan",
                "boundary_type": "COUNTY"
            }
        ]
    }
}

For New York City:

{
    "parcl_id": 5372594,
    "location_name": "New York",
    "location_type": "CITY",
    "country_code": "USA",
    "parcl_mapping": {
        "parent_parcls": [
            {
                "parcl_id": 2900187,
                "friendly_name": "New York",
                "boundary_type": "MSA"
            }
        ],
        "child_parcls": []
    }
}