This isn't YQL, but it may help. Personally, I'd look for a database of ZIP codes with a latitude/longitude. When you/the users specifies a ZIP code and a radius, you can then query the lat/lng of their entry and then perform a lookup for other ZIP codes nearby.
This is a radius search that takes into account the curvature of the earth for calculations:
https://developers.google.com/maps/articles/phpsqlsearch
The fun part:
SELECT id, ( 3959 * acos( cos( radians(37) ) * cos( radians( lat ) ) * cos( radians( lng ) - radians(-122) ) + sin( radians(37) ) * sin( radians( lat ) ) ) ) AS distance
FROM markers HAVING distance < 25
ORDER BY distance LIMIT 0 , 20;
Failing that, you could always look for an API (perhaps Google's navigation/directions) and retrieve the total (driving) distance between 2 ZIP codes.
Hope that helps