The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

NAME

WebService::Yelp::Neighborhood - Yelp.com API Neighborhood Class

SYNOPSIS

use strict;
my $yelp = WebService::Yelp->new({ywsid => 'XXXXXXXXXXXX'});
my $biz_res = $yelp->search_review_hood({
term => 'cream puffs',
location => 'San Francisco',
};
for my $b (@{$biz_res->businesses()}) {
for my $n (@{$b->neighborhood()}) {
print $b->name . " is in the " . $n->name . " neighborhood\n";
}
}
# or
my $hood_res = $yelp->search_neighborhood_location({
location =>
'1512 Shattuck Avenue, Berkeley, CA',
});
for my $n (@{$hood_res->neighborhoods}) {
print "the " . $n->name . " neighborhood in " . $b->city . "\n";
}

DESCRIPTION

Yelp's neighborhoods define specific area's of a city. You can see the entire list here:

Note that business searches currently only return the name and URL portions within a particular business. The neighborhood search functions also return the city and state fields.

METHODS (Read Only)

name

The name of the neighborhood.

city

The neighborhood's city.

state

The neighborhood's state.

url

The url linking to Yelp's main page for this neighborhood.