Real-time Yellow Pages business data — search local businesses by category and location, get full business profiles with contact info, hours, reviews, and more. All data is scraped directly from YellowPages.com and returned as structured JSON.
See real data shapes from every endpoint — no signup required.
/yellowpages/search
curl -G "https://api.pullapi.com/yellowpages/search" \
-H "x-rapidapi-key: YOUR_API_KEY"
{
"success": true,
"data": {
"query": "plumber",
"location": "New York, NY",
"page": 1,
"results": [
{
"name": "Roto-Rooter Plumbing & Water Cleanup",
"phone": "(212) 555-0198",
"street_address": "456 Broadway",
"city": "New York",
"state": "NY",
"zip_code": "10013",
"full_address": "456 Broadway, New York, NY 10013",
"categories": [ "Plumbers", "Water Heater Repair", "Drain Cleaning"
],
"website": "https://www.rotorooter.com",
"snippet": "24/7 Emergency Plumbing Services. Licensed & Insured.",
"years_in_business": 42,
"listing_url": "/new-york-ny/mip/roto-rooter-plumbing-12345678",
"is_ad": false
},
{
"name": "NYC Best Plumbing Inc",
"phone": "(718) 555-0234",
"street_address": "789 3rd Ave",
"city": "New York",
"state": "NY",
"zip_code": "10017",
"full_address": "789 3rd Ave, New York, NY 10017",
"categories": [ "Plumbers", "Plumbing Contractors"
],
"website": null,
"snippet": "Residential and commercial plumbing services.",
"years_in_business": 15,
"listing_url": "/new-york-ny/mip/nyc-best-plumbing-87654321",
"is_ad": false
}
],
"total_results": 87,
"has_next_page": true
},
"credits_used": 1,
"cache_hit": false,
"timestamp": "2026-03-15T12: 00: 00+00: 00"
}
2 endpoints across 2 categories.
/yellowpages/search
Search Yellow Pages for local businesses by keyword/category and location. Returns paginated results with business names, phone numbers, addresses, categories, and more.
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
query |
string | Yes | Business type or keyword to search for. Examples: "plumber", "restaurant", "dentist", "auto repair" | plumber |
location |
string | Yes | City and state to search in. Examples: "New York, NY", "Los Angeles, CA", "Chicago, IL" | New York, NY |
page |
integer | No | Page number for paginated results (starts at 1) | 1 |
{
"success": true,
"data": {
"query": "plumber",
"location": "New York, NY",
"page": 1,
"results": [
{
"name": "Roto-Rooter Plumbing & Water Cleanup",
"phone": "(212) 555-0198",
"street_address": "456 Broadway",
"city": "New York",
"state": "NY",
"zip_code": "10013",
"full_address": "456 Broadway, New York, NY 10013",
"categories": [ "Plumbers", "Water Heater Repair", "Drain Cleaning"
],
"website": "https://www.rotorooter.com",
"snippet": "24/7 Emergency Plumbing Services. Licensed & Insured.",
"years_in_business": 42,
"listing_url": "/new-york-ny/mip/roto-rooter-plumbing-12345678",
"is_ad": false
},
{
"name": "NYC Best Plumbing Inc",
"phone": "(718) 555-0234",
"street_address": "789 3rd Ave",
"city": "New York",
"state": "NY",
"zip_code": "10017",
"full_address": "789 3rd Ave, New York, NY 10017",
"categories": [ "Plumbers", "Plumbing Contractors"
],
"website": null,
"snippet": "Residential and commercial plumbing services.",
"years_in_business": 15,
"listing_url": "/new-york-ny/mip/nyc-best-plumbing-87654321",
"is_ad": false
}
],
"total_results": 87,
"has_next_page": true
},
"credits_used": 1,
"cache_hit": false,
"timestamp": "2026-03-15T12: 00: 00+00: 00"
}
/yellowpages/business
Get full business profile details including contact information, address with coordinates, business hours, payment methods, customer reviews, and photos. Requires the listing URL path from search results.
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
listing_url |
string | Yes | Business listing URL path from search results. This is the `listing_url` field returned by the... | /new-york-ny/mip/roto-rooter-plumbing-12345678 |
{
"success": true,
"data": {
"name": "Roto-Rooter Plumbing & Water Cleanup",
"business_type": "Plumber",
"phone": "(212) 555-0198",
"address": {
"street": "456 Broadway",
"city": "New York",
"state": "NY",
"zip_code": "10013",
"country": "US"
},
"full_address": "456 Broadway, New York, NY 10013",
"latitude": 40.7195,
"longitude": -74.0009,
"website": "https://www.rotorooter.com",
"email": "contact@rotorooter.com",
"rating": 4.5,
"review_count": 128,
"price_range": "$$",
"categories": [ "Plumbers", "Water Heater Repair", "Drain Cleaning", "Sewer Cleaning"
],
"hours": [
{
"day": "Monday",
"hours": "Open 24 Hours"
},
{
"day": "Tuesday",
"hours": "Open 24 Hours"
},
{
"day": "Wednesday",
"hours": "Open 24 Hours"
},
{
"day": "Thursday",
"hours": "Open 24 Hours"
},
{
"day": "Friday",
"hours": "Open 24 Hours"
},
{
"day": "Saturday",
"hours": "Open 24 Hours"
},
{
"day": "Sunday",
"hours": "Open 24 Hours"
}
],
"years_in_business": 42,
"payment_methods": [ "Visa", "MasterCard", "American Express", "Check"
],
"photo_url": "https://i4.ypcdn.com/blob/example-photo.jpg",
"reviews": [
{
"author": "John D.",
"rating": 5.0,
"date": "03/01/2026",
"text": "Fast response and excellent service. Fixed our leak within an hour of calling."
},
{
"author": "Sarah M.",
"rating": 4.0,
"date": "02/15/2026",
"text": "Professional and courteous. A bit pricey but good quality work."
}
],
"url": "https://www.yellowpages.com/new-york-ny/mip/roto-rooter-plumbing-12345678"
},
"credits_used": 1,
"cache_hit": false,
"timestamp": "2026-03-15T12: 00: 00+00: 00"
}
Get started in seconds with your preferred language.
curl -G "https://api.pullapi.com/yellowpages/search?query=plumber&location=New York, NY" \
-H "x-rapidapi-host: yellow-pages-scraper-api.p.rapidapi.com" \
-H "x-rapidapi-key: YOUR_API_KEY"
HTTP-based API. No Selenium, no Puppeteer, no headless browsers to manage.
Automatic residential proxy rotation handles anti-bot detection for you.
Smart Redis caching means faster repeated queries and lower costs.
No monthly commitment. Free tier included. Pay only for what you use.
What developers build with the Yellow Pages Scraper API.
More APIs in Business Data.
Lead Generation · Local SEO Audit
Startup Research · Funding Intelligence
Product Discovery · Launch Tracking
Talent Intelligence · Company Research
Salary Research · Job Market Analysis
Salary Benchmarking · Employer Branding
Start with the free tier. No credit card required.
Subscribe on RapidAPI →