v1
latestOpenAPI 3.0.32026-07-132615.7 KBSearch sex offender records with JSON body
Recommended production method. Send your API key in X-API-Key or Authorization: Bearer and send search fields in the JSON body. Send optional X-Request-Id for customer-side request correlation. The standard endpoint also remains compatible with key in the JSON body for existing clients.
post/sexoffender
Headers
X-Request-Idstring
Optional opaque client correlation ID. Use a UUID or similar request ID; do not include names, emails, DOBs, member IDs, patient IDs, search values, or other sensitive data.
Request body
Example request
{
"firstName": "John",
"lastName": "Smith",
"dob": "1990-01-15",
"city": "San Francisco",
"state": "California",
"zipcode": "94104",
"address": "123 Main St",
"lat": 30.967,
"lng": -91.116,
"q": "John Smith San Francisco"
}Response
Successful search
Example response
{
"offenders": [
{
"name": "JOHN M DOE",
"firstName": "JOHN",
"lastName": "DOE",
"dob": "1990-01-15T00:00:00.000Z",
"dobPrecision": "exact",
"address": "123 MAIN ST",
"city": "RICHMOND",
"state": "Virginia",
"zipcode": "23219",
"locations": [
{
"type": "RES (Primary)"
}
],
"sex": "Male",
"age": "35",
"eyeColor": "Brown",
"hairColor": "Black",
"height": "5 ft 10 in",
"weight": "180 lbs.",
"race": "White",
"ethnicity": "Non-Hispanic",
"marks": "TAT R ARM",
"riskLevel": "Tier 3",
"crime": "SEXUAL ASSAULT (01/15/2005)",
"lat": 37.5407,
"lng": -77.436,
"jurisdiction": "VA",
"sources": [
{
"id": "nsopw",
"name": "National Sex Offender Public Website"
}
],
"stateData": {
"status": "Active",
"designation": "Sexually Violent Offender",
"locations": [
{
"type": "RES (Primary)"
}
]
}
}
]
}