API Documentation
RESTful API for programmatic access to Shelby County title data.
Quick Start
# Search by address
curl "https://shelby-title-api.corpimco.workers.dev/v1/search?q=123+Main+St"
# Get property details
curl "https://shelby-title-api.corpimco.workers.dev/v1/property/{parcel_id}"
# Generate title report
curl "https://shelby-title-api.corpimco.workers.dev/v1/property/{parcel_id}/title-report"
Endpoints
| Method | Endpoint | Description |
| GET | /v1/search | Search properties by address, parcel, or owner |
| GET | /v1/geocode/suggest | Autocomplete address suggestions |
| GET | /v1/property/:parcel_id | Full property details |
| GET | /v1/property/:parcel_id/deeds | Deed chain of title |
| GET | /v1/property/:parcel_id/liens | Liens and mortgages |
| GET | /v1/property/:parcel_id/taxes | Tax payment history |
| GET | /v1/property/:parcel_id/courts | Court case records |
| GET | /v1/property/:parcel_id/flood | FEMA flood zone data |
| GET | /v1/property/:parcel_id/title-report | AI-generated title report |
| POST | /v1/batch | Submit batch search job |