Blockchain explorer for the Polygon (MATIC) network.
Emit new event when a new transaction is posted on the PolygonScan network for a specific address.
Emits a new event when a dataset refresh operation has completed. See the documentation
Emits an event when a dataset refresh operation has failed in Power BI. See the documentation
Emit new event when a new dataset refresh operation is created. See the documentation
Retrieves the balance of a specific address within the Polygon network. See the documentation
Adds new data rows to the specified table within the specified dataset from My workspace. See the documentation
Cancels a refresh operation for a specified dataset in Power BI. See the documentation
Obtains the contract ABI of a smart contract on the Polygon network. See the documentation
Creates a new Push Dataset in Power BI. See the documentation
The PolygonScan API provides access to blockchain data from the Polygon network. It allows for querying of blocks, transactions, and wallet addresses, among other data points. With Pipedream, you can integrate this API to automate monitoring, alerting, and data analysis tasks. You can leverage Pipedream's serverless platform to create workflows that react to events on the Polygon network in real-time, without having to manage infrastructure or write complex backend code.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
polygonscan: {
type: "app",
app: "polygonscan",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.polygonscan.com/api`,
params: {
module: `account`,
action: `balance`,
address: `{{your_address}}`, //For testing, try address "0x5A534988535cf27a70e74dFfe299D06486f185B7"
apikey: `${this.polygonscan.$auth.api_key}`,
},
})
},
})
The Microsoft Power BI API allows you to interact with your Power BI assets programmatically. With this API, you can embed your reports and dashboards into applications, manage Power BI datasets, push data into datasets for real-time dashboard updates, and automate your reporting workflows. On Pipedream, you can use this API to create intricate workflows that react to various triggers, like webhooks or schedules, and perform actions like refreshing datasets, posting to datasets, and managing Power BI assets.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_power_bi: {
type: "app",
app: "microsoft_power_bi",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.powerbi.com/v1.0/myorg/availableFeatures`,
headers: {
Authorization: `Bearer ${this.microsoft_power_bi.$auth.oauth_access_token}`,
},
})
},
})