There’s a lot of different ways to export data from Twitter to Google Sheets. The best way is to use the Twitter API.
In this tutorial, you will learn how to connect Twitter to Google Sheets in 6 steps:
Apipheny is an API connector for Google Sheets. You can use Apipheny to connect your Google Sheets to unlimited API data sources, make unlimited API requests, and more. There is a 30 day free trial included.
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.
Tip: you can open a new Google Sheet by entering this URL in your browser: sheet.new
First, make sure you’re logged in to your Twitter account.
Then, in your Twitter developer account’s dashboard, click on the developer menu item on the top right side of the page. Then, in the drop-down menu, select the Apps item:
Then, on the next page, click the Create an app button:
Complete all the required fields (App name, Website URL and Tell us how this app will be used) and then click the Create button:
Then, in the Review our Developer Terms popup, click the Create button:
Your app has now been created and the app’s details will be shown on the page:
On the app’s Keys and tokens tab, you will find the API key and API secret key necessary to generate a Bearer token:
In a command prompt window for Windows OS or a terminal for Mac OS, enter the following command and press the Enter key to run the command:
curl -u "your_API_key:your_API_secret" --data "grant_type=client_credentials" "https://api.twitter.com/oauth2/token"
Note: For Mac OS you may need to use single quotes ( ' ) instead of double quotes ( " ).
Don’t forget to replace your_API_key and your_API_secret with real values that you obtained above.
Your Bearer token will then be displayed in the response.
Copy and paste your Bearer token somewhere safe because you will need it in the next steps.
Note: If the token/key that you generate has an expiration time, you will need to complete this same process again to get a new token when the old one expires.
In this section, we’ll show you how to browse the Twitter API documentation to find an API URL endpoint that retrieves the data you need from Twitter, if the data you want is available from the Twitter API. If the data you need is not available via the API, then you’ll need to use another method such as scraping.
You can check if the data you need is available from the Twitter API by checking the API documentation to see what endpoints are available. An endpoint is the last part of the API URL that tells the Twitter API what specific data to return back to you.
If you already know the Twitter API base URL and endpoint that you need, or you want to use the same example URL as us, just skip to Step 4.
To browse the available Twitter endpoints, first open the Twitter API documentation page: https://developer.twitter.com/en/docs/api-reference-index
The menu on the left contains a list of categories for the available APIs:
The full list of categorized APIs and their endpoints are displayed on the right of this menu, squared in purple.
Clicking on an endpoint link opens the dedicated page that shows the endpoint’s details in the context of its API. All the API’s available endpoints are first shown as part of a Table of Contents, with the current endpoint selected.
For example, if you click the endpoint Accounts and users > Create and manage lists > Get lists/list (https://api.twitter.com/1.1/lists/list.json), the dedicated page will first show the API’s name (Create and manage lists), followed by a Table of Contents containing links to all this API’s endpoints:
Lower down the page, the specific documentation contains the HTTP method used (eg. GET) and the endpoint’s URL path (/lists/list.json), a short description of the endpoint’s purpose, a description of the available parameters and an example request and response:
All API calls to Twitter should be made to the https://api.twitter.com/1.1/ base URL, and all endpoints and parameters should be appended to this base URL:
https://api.twitter.com/1.1/
In the next step, we show an example API request to Twitter from Google Sheets with a completed API URL.
Now here’s the last step. Go back to your Google Sheet and make sure that the Apipheny add-on is open on the “Import” tab. 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) 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 Twitter 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 statuses/user_timeline endpoint, that returns a collection of the most recent Tweets posted by the user indicated by the screen_name or user_id parameters.
The complete API URL with parameters for this endpoint is:
https://api.twitter.com/1.1/statuses/user_timeline.json?exclude_replies=false&include_rts=true&count=2&screen_name=valid_user
You can copy and paste the above example API URL into Apipheny and try it out. Just replace screen_name with the username/handle of any valid Twitter user.
Headers: In the Headers section of the Apipheny add-on, add one row with the following key and value:
Headers Key: Authorization Value: Bearer your_access_token
If you’re following this example, just copy “Authorization” into the Key field and “Bearer your-access-token” into the Value field.
your_access_token is the value you generated previously, in Step 3. There should be a literal space between “Bearer” and “your_access_token”.
Here’s our Twitter API request entered into Apipheny, with the API URL and headers:
Finally, click the Run button at the bottom of the Apipheny add-on and then wait for the Twitter API data to be imported into your Google Sheet, like this:
After making a successful request to the Twitter API, try querying a different endpoint, or try changing the parameters in the API URL. You could also try using one of the more advanced features in the Apipheny add-on, such as:
Make a GET request
Make a POST request
PUT, PATCH, & DELETE Requests
Save requests for later
Schedule requests for automatic updates
Reference cell values in requests
=APIPHENY custom function
Stack multiple URLs in a single request
Run all saved requests at once
Modify your request settings
Import & export saved API settings
Crypto API tutorials and more:
Ahrefs API
Airtable API
Alpha Vantage API
Asana API
Binance API
Clickup API
Coingecko API
Coinmarketcap API
Coinbase API
Constant Contact API
Discord API
Drift API
Etsy API
Eventbrite API
Facebook Graph API
Facebook Ads API
Figma API
Github API
Google SERP API
Hubspot API
Hunter API
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?