Returns records from Precisely's CrimeIndex data to assess crime levels associated with a specific address.
By providing an Address input, it returns crime classification data at the Census Block Group level, allowing users to measure and incorporate crime statistics into various applications, such as insurance underwriting and fraud assessment.
Example
The query below returns the CrimeIndex results for the provided address.
query GetByAddress {
getByAddress(address: "125 S Wacker Dr, Chicago, IL 60606") {
addresses {
data {
crimeIndex {
data {
blockGroupCode
compositeIndexNational
violentCrimeIndexNational
robberyIndexNational
rapeIndexNational
aggravatedAssaultIndexNational
murderIndexNational
propertyCrimeIndexNational
arsonIndexNational
burglaryIndexNational
motorVehicleTheftIndexNational
larcenyTheftIndexNational
compositeCrimeCategory {
value
description
}
violentCrimeCategory {
value
description
}
robberyCategory {
value
description
}
rapeCategory {
value
description
}
aggravatedAssaultCategory {
value
description
}
murderCategory {
value
description
}
propertyCrimeCategory {
value
description
}
arsonCategory {
value
description
}
burglaryCategory {
value
description
}
motorVehicleTheftCategory {
value
description
}
larcenyTheftCategory {
value
description
}
compositeIndexState
violentCrimeIndexState
robberyIndexState
rapeIndexState
aggravatedAssaultIndexState
murderIndexState
propertyCrimeIndexState
arsonIndexState
burglaryIndexState
motorVehicleTheftIndexState
larcenyTheftIndexState
}
}
}
}
}
}