With the Alchemy API, you can build many different kinds of applications and services that can analyze and extract data from texts. Here are some examples:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
alchemy: {
type: "app",
app: "alchemy",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://eth-mainnet.alchemyapi.io/nft/v2/${this.alchemy.$auth.api_key}/getSpamContracts`,
})
},
})
Alchemy uses API keys for authentication. When you connect your Alchemy account, Pipedream securely stores the keys so you can easily authenticate to Alchemy APIs in both code and no-code steps.
Generate and copy your API key from your Alchemy dashboard.