Connect Zillow To Google Sheets [API Integration] - Apipheny (2024)

How to extract data from Zillow and import it into Google Sheets using a Zillow API

Zillow is one of the biggest real estate databases in the world. Keep reading to learn how to import Zillow data into Google Sheets, the easy way.

In this tutorial, you’ll learn how to connect theZillow APItoGoogle Sheetsin 5 steps:

  1. Install the Apipheny add-on
  2. Obtain the Zillow API Key and Host
  3. Choose your Zillow API endpoint
  4. Enter Zillow API request into Apipheny
  5. Run the Zillow API request in your Google Sheet

Step 1.) Install and open the Apipheny add-on for Google Sheets

Apipheny is a free API connector for Google Sheets. You can use Apipheny to connect your Google Sheets to API data sources, easily.

1.)Install Apipheny by opening the following link on desktop and then clicking the Install button in the Google Marketplace: https://apipheny.io/install

2.) After you’ve installed Apipheny, open a Google Sheet and then click on the Extensions dropdown in the menu at the top.

In the dropdown list you should see Apipheny. Click Apipheny then click Import API to open the Apipheny sidebar in your Google Sheet.

Connect Zillow To Google Sheets [API Integration] - Apipheny (1)

Tip: you can open a new Google Sheet by entering this URL in your browser: sheet.new

Step 2.) Obtain the Zillow API Key and Host

To get started with the Zillow API, you’ll first want to access the https://rapidapi.com/s.mahmoud97/api/zillow56/pricing page to subscribe. We choose the free Basic plan:

Connect Zillow To Google Sheets [API Integration] - Apipheny (2)

Go to the Endpoints page and in the mid section scroll down until you find the Header Parameters. In the right section choose Shell => cURL and you’ll find the cURL command:

Connect Zillow To Google Sheets [API Integration] - Apipheny (3)

Copy the Header Parameters (X-RapidAPI-Key and X-RapidAPI-Host) to a safe location because you’ll need it later!

Step 3.) Choose your Zillow API endpoint

In this section, we’ll show you how to browse the Zillow API documentation to find an API URL that retrieves the information you need from Zillow and imports it into your Google Sheet. If you already know your Zillow API URL, or you want to use the same example URL as us, just skip to Step 4.

First, open the Zillow API documentation page on RapidAPI: https://rapidapi.com/s.mahmoud97/api/zillow56

The left side of the window contains the endpoints available for the Zillow API:

Connect Zillow To Google Sheets [API Integration] - Apipheny (4)

If you click on the Property details item, a page containing the Reviews API documentation will be displayed. At the right side of the window will have the cURL command containing the endpoint URL and headers:

Connect Zillow To Google Sheets [API Integration] - Apipheny (5)

Zillow API endpoint examples

The GET Agent Reviews endpoint, which gets agent reviews by the agent’s zuid:

Method: GETAPI URL Path: https://zillow56.p.rapidapi.com/agent_reviews?zuid=zuid_valueHeaders: Header 1 Key: X-RapidAPI-Key  Header 1 Value: your_key Header 2 Key: X-RapidAPI-Host  Header 2 Value: your_host

Don’t forget to replace your_key and your_host with the values you get in Step 2. Replace zuid_value with a real zuid.

The GET Search for agents endpoint, which searches for agents by location and name:

Method: GETAPI URL Path: https://zillow56.p.rapidapi.com/search_agents?location=location_valueHeaders: Header 1 Key: X-RapidAPI-Key  Header 1 Value: your_key Header 2 Key: X-RapidAPI-Host  Header 2 Value: your_host

Don’t forget to replace your_key and your_host with the values you get in Step 2. Replace location_value with a real zuid.

The GET Property details endpoint, which gets a property’s details by its zpid:

Method: GETAPI URL Path: https://zillow56.p.rapidapi.com/property?zpid=id_valueHeaders: Header 1 Key: X-RapidAPI-Key Header 1 Value: your_key  Header 2 Key: X-RapidAPI-Host Header 2 Value: your_host

Don’t forget to replace your_key and your_host with the values you get in Step 2. Replace id_value with a real zpid.

Zillow API pagination

Pagination is a process that is used to divide a large dataset into smaller chunks (pages). Usually the endpoints that return a list of resources support pagination.

Some of the Zillow API endpoints use the pagination option. This means you need to add the page (the number of the page you want to obtain) parameter at the end of the URL.

Each endpoint that needs pagination will have in its documentation, in the Optional parameters section, relevant information about the page parameter and and how to use it.

Example:https://zillow56.p.rapidapi.com/search_url?url=https%3A%2F%2Fwww.zillow.com%2Fhomes%2Ffor_sale%2F2_p%2F%3FsearchQueryState%3D%257B%2522pagination%2522%253A%257B%2522currentPage%2522%253A2%257D%252C%2522mapBounds%2522%253A%257B%2522west%2522%253A-112.39143704189931%252C%2522east%2522%253A-110.78468655361806%252C%2522south%2522%253A32.79032628812945%252C%2522north%2522%253A33.7227901388417%257D%252C%2522isMapVisible%2522%253Atrue%252C%2522filterState%2522%253A%257B%2522con%2522%253A%257B%2522value%2522%253Afalse%257D%252C%2522apa%2522%253A%257B%2522value%2522%253Afalse%257D%252C%2522mf%2522%253A%257B%2522value%2522%253Afalse%257D%252C%2522ah%2522%253A%257B%2522value%2522%253Atrue%257D%252C%2522sort%2522%253A%257B%2522value%2522%253A%2522globalrelevanceex%2522%257D%252C%2522land%2522%253A%257B%2522value%2522%253Afalse%257D%252C%2522manu%2522%253A%257B%2522value%2522%253Afalse%257D%252C%2522apco%2522%253A%257B%2522value%2522%253Afalse%257D%257D%252C%2522isListVisible%2522%253Atrue%257D&page=2

In the example above, the data set will be divided in sets of 40 records per page (because this number is set by the API), and only the second page (page number 2) will be displayed in Google Sheets.

Step 4.) Enter the Zillow API request in Apipheny

Now for the last step, go back to your Google Sheet and make sure that the Apipheny add-on is open with the Import tab open.

With the Import Tab open, enter these details into the add-on:

Method: At the top of the Apipheny sidebar, select the HTTP method (GET or POST) as required by your API endpoint. For this example, we are using the GET method.

API URL: In Step 3, we explained how you can find the Zillow REST API endpoint that you need. Now copy the complete URL into the Apipheny add-on, where it says API URL Path, followed by any GET parameters required for your query.

For this example, we are using the Search for properties endpoint, which searches for filtered properties by address, neighborhood, city, or ZIP code. The corresponding URL for this endpoint is:

https://zillow56.p.rapidapi.com/search?location=location_value

If you use this same endpoint, make sure to replace location_value with a real location.

Headers. In the Headers section of the Apipheny add-on, add two rows with the following keys and values:

Header 1Key:X-RapidAPI-KeyValue:your_keyHeader 2Key:X-RapidAPI-HostValue:your_host

Don’t forget to replace your_key and your_host with the values you get at Step 2.)

Connect Zillow To Google Sheets [API Integration] - Apipheny (6)

Step 5.) Run the Zillow API Request

Finally, to get the Zillow API data in your Google Sheet, just click the Run button at the bottom of the Apipheny add-on and then wait for the Zillow API data to be imported into your Google Sheet:

Connect Zillow To Google Sheets [API Integration] - Apipheny (7)

After making a successful request to the Zillow API, try querying a different Zillow API endpoint, or try using one of the more advanced features in the Apipheny add-on, such as:

  • Save and schedule your Zillow API request
  • Make a POST request to the Zillow API (if available)
  • Use the custom =APIPHENY() function to call the Zillow API request inside your spreadsheet
  • Create a Zillow API request by referencing the value of a cell in the API URL with three curly braces eg. {{{Sheet1!A1}}}

Our latest demo

Apipheny Feature Tutorials

Make a GET request

Make a POST request

Save requests for later

Schedule requests for automatic updates

Reference cell values in requests

=APIPHENY custom function

Create custom OAuth2.0 connections

Pagination automation

Stack multiple URLs in a single request

Run all saved requests at once

Modify your request settings

Import JSON Google Sheets

Install Apipheny Here

  • ⭐️ Coingecko API: use coupon code APIPHENY20 for 20% off a premium Coingecko API plan. Click here to signup.
  • Crypto Tutorials: Binance | Bitfinex | Bitmex | BscScan | Cardano | Coinbase | Coingecko | Coinmarketcap | CoinAPI | Coinranking | Etherscan | | Glassnode | Huobi | LiveCoinWatch | Kraken | Kucoin | Magic Eden | Messari | Nomics | OpenSea | PancakeSwap | Rarible | Rarify | Solanart
  • Best Crypto APIs: list of the best APIs for cryptocurrency traders and devs

Popular API Tutorials

  • Amazon Ads
  • Ahrefs
  • Airtable
  • Alpha Vantage
  • Asana
  • Binance
  • Clickup
  • Coingecko
  • Coinmarketcap
  • Coinbase
  • Constant Contact
  • Discord
  • Drift
  • EasyWaySEO
  • Etsy
  • Eventbrite
  • Facebook Ads
  • Figma
  • Github
  • Google SERP
  • Hubspot
  • Hunter
  • Instagram
  • Intercom
  • JIRA
  • Linkedin
  • Linkedin Ads
  • Mailchimp
  • Monday
  • Minecraft
  • Paypal
  • Pipedrive
  • Product Hunt
  • Quickbooks
  • Reddit
  • Reddit Ads
  • Riot Games
  • Salesforce
  • Shipstation
  • Shopify
  • Slack
  • Snapchat
  • Spotify
  • Square
  • Squarespace
  • Stripe
  • SurveyMonkey
  • Tableau
  • TikTok
  • Trello
  • Twitch
  • Twitter
  • Typeform
  • Videoask
  • Weather Data
  • Webflow
  • Wikipedia
  • Woocommerce
  • WordPress
  • Yelp
  • Youtube
  • Zendesk
  • Zillow
  • Zink
  • Zoom

View All Tutorials

API Knowledge

What is an API?

What is an API URL?

What are parameters?

What is an endpoint?

What is an API key/token?

What is basic authentication?

What are headers?

What is a GET request?

What is a POST request?

Import JSON to Google Sheets

SEO by SearchCyrus

share:

TAGS : data apis Real Estate APIs Zillow API

Connect Zillow To Google Sheets [API Integration] - Apipheny (2024)
Top Articles
125 Maybe-Kinda Cringey but Extremely Cute Nicknames to Call Your Boyfriend
Astorino & Associates Eye Center: Ophthalmology
English Bulldog Puppies For Sale Under 1000 In Florida
Katie Pavlich Bikini Photos
Gamevault Agent
Pieology Nutrition Calculator Mobile
Hocus Pocus Showtimes Near Harkins Theatres Yuma Palms 14
Hendersonville (Tennessee) – Travel guide at Wikivoyage
Compare the Samsung Galaxy S24 - 256GB - Cobalt Violet vs Apple iPhone 16 Pro - 128GB - Desert Titanium | AT&T
Vardis Olive Garden (Georgioupolis, Kreta) ✈️ inkl. Flug buchen
Craigslist Dog Kennels For Sale
Things To Do In Atlanta Tomorrow Night
Non Sequitur
Crossword Nexus Solver
How To Cut Eelgrass Grounded
Pac Man Deviantart
Alexander Funeral Home Gallatin Obituaries
Energy Healing Conference Utah
Geometry Review Quiz 5 Answer Key
Hobby Stores Near Me Now
Icivics The Electoral Process Answer Key
Allybearloves
Bible Gateway passage: Revelation 3 - New Living Translation
Yisd Home Access Center
Pearson Correlation Coefficient
Home
Shadbase Get Out Of Jail
Gina Wilson Angle Addition Postulate
Celina Powell Lil Meech Video: A Controversial Encounter Shakes Social Media - Video Reddit Trend
Walmart Pharmacy Near Me Open
Marquette Gas Prices
A Christmas Horse - Alison Senxation
Ou Football Brainiacs
Access a Shared Resource | Computing for Arts + Sciences
Vera Bradley Factory Outlet Sunbury Products
Pixel Combat Unblocked
Movies - EPIC Theatres
Cvs Sport Physicals
Mercedes W204 Belt Diagram
Mia Malkova Bio, Net Worth, Age & More - Magzica
'Conan Exiles' 3.0 Guide: How To Unlock Spells And Sorcery
Teenbeautyfitness
Where Can I Cash A Huntington National Bank Check
Topos De Bolos Engraçados
Sand Castle Parents Guide
Gregory (Five Nights at Freddy's)
Grand Valley State University Library Hours
Hello – Cornerstone Chapel
Stoughton Commuter Rail Schedule
Nfsd Web Portal
Selly Medaline
Latest Posts
Article information

Author: Francesca Jacobs Ret

Last Updated:

Views: 5723

Rating: 4.8 / 5 (68 voted)

Reviews: 91% of readers found this page helpful

Author information

Name: Francesca Jacobs Ret

Birthday: 1996-12-09

Address: Apt. 141 1406 Mitch Summit, New Teganshire, UT 82655-0699

Phone: +2296092334654

Job: Technology Architect

Hobby: Snowboarding, Scouting, Foreign language learning, Dowsing, Baton twirling, Sculpting, Cabaret

Introduction: My name is Francesca Jacobs Ret, I am a innocent, super, beautiful, charming, lucky, gentle, clever person who loves writing and wants to share my knowledge and understanding with you.