RESTful API with predictable endpoints, consistent responses, and comprehensive documentation.
All API requests require authentication via API key. Include your key in the request header.
Authorization: Bearer mfd_live_xxxxxxxxxxxxx
// Or as query parameter
GET /v1/tiles/parcels/12/1234/2345?api_key=mfd_live_xxxxxBase URL: https://api.mapsfordevelopers.com
/v1/tiles/{layer}/{z}/{x}/{y}Retrieve vector tiles for a specific layer and tile coordinates
/v1/geocodeConvert addresses to coordinates (forward geocoding)
/v1/reverseConvert coordinates to addresses (reverse geocoding)
/v1/searchSearch POIs and parcels by query
/v1/parcel/{id}Get detailed parcel information by ID
All responses are JSON with consistent structure. Tile endpoints return Protobuf for optimal performance.
{
"success": true,
"data": {
"parcel_id": "TX-DAL-123456",
"owner": "John Smith",
"address": "123 Main St",
"city": "Dallas",
"state": "TX",
"assessed_value": 450000,
"lot_size_sqft": 8500,
"year_built": 1985,
"geometry": { "type": "Polygon", ... }
},
"meta": {
"request_id": "req_abc123",
"timestamp": "2024-01-15T10:30:00Z"
}
}Generous limits with clear overage pricing. No surprise bills.
Rate limit headers included in every response: X-RateLimit-Remaining
Get your API key and start building in minutes