I’m here to help you with your Google Sheets issue. To load data from Google Sheets, you can use the Google Sheets API. First, you’ll need to connect your Google account to Pipedream. Here’s an example Pipedream component that reads data from a Google Sheet: import { axios } from "@pipedream/platform"; export default defineComponent({ props: { google: { type: "app", app: "google", }, spreadsheetId: { type: "string", label: "Spreadsheet ID", }, range: { type: "string", label: "Range", description: "Enter the range of cells to read, e.g. 'Sheet1!A1:D5'", }, }, async run({ steps, $ }) { const sheetsUrl = `https://sheets.googleapis.com/v4/spreadsheets/${this.spreadsheetId}/values/${this.range}`; const response = await axios($, { url: sheetsUrl, headers: { Authorization: `Bearer ${this.google.$auth.oauth_access_token}`, }, }); return response; }, }); Replace spreadsheetId and range with the appropriate values for your Google Sheet. This component will return the data from the specified range in the sheet. If you need further assistance, please let me know!