ATTOM · Example Payload

Attom Area Hierarchy Example

Real EstateProperty DataProperty IntelligenceMortgageAssessmentAVMForeclosureTransactionsOwner DataBuilding PermitsGeospatialBoundariesDemographicsNeighborhoodPOIInsuranceMortgage TechnologyPropTech

Attom Area Hierarchy Example is an example object payload from ATTOM, with 3 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

summaryrequestresponse

Example Payload

Raw ↑
{
  "summary": "Geographic hierarchy for latitude/longitude 40.9062610,-74.6840960",
  "request": {
    "method": "GET",
    "url": "https://api.gateway.attomdata.com/areaapi/area/hierarchy/lookup?latitude=40.9062610&longitude=-74.6840960",
    "headers": {
      "apikey": "YOUR_ATTOM_API_KEY",
      "Accept": "application/json"
    }
  },
  "response": {
    "status": {
      "version": "1.0.0",
      "code": 0,
      "msg": "SuccessWithResult",
      "total": 5
    },
    "response": {
      "hierarchy": [
        { "geoIdV4": "e8cb063f1f2befa182a656a6563665ee", "geoTypeAbbreviation": "ST", "name": "New Jersey" },
        { "geoIdV4": "5a4e9bfcd44d4dca1a82eed5d5a3a1a1", "geoTypeAbbreviation": "CO", "name": "Morris County" },
        { "geoIdV4": "f0a1b2c3d4e5f60718293a4b5c6d7e8f", "geoTypeAbbreviation": "MS", "name": "New York-Newark-Jersey City" },
        { "geoIdV4": "1234567890abcdef1234567890abcdef", "geoTypeAbbreviation": "ZI", "name": "07849" },
        { "geoIdV4": "abcdef1234567890abcdef1234567890", "geoTypeAbbreviation": "ND", "name": "Lake Hopatcong" }
      ]
    }
  }
}