NiftyKit is the tool to build, collaborate, and launch projects — without coding.
Emit new event when a new NFT is minted in NiftyKit. See the documentation
Run any Bash in a Pipedream step within your workflow. Refer to the Pipedream Bash docs to learn more.
The NiftyKit API offers a platform to create, sell, and manage digital collectibles on the blockchain. Users can mint non-fungible tokens (NFTs), set up drop campaigns, and handle various aspects of the NFT lifecycle. Integrating NiftyKit with Pipedream enables users to automate workflows related to NFTs, like minting in response to events, updating listings based on market conditions, or synchronizing NFT ownership data with other databases.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
niftykit: {
type: "app",
app: "niftykit",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.niftykit.com/v3/collections/reveal`,
headers: {
"accept": `application/json`,
"x-api-key": `${this.niftykit.$auth.api_access_key}`,
},
})
},
})
# $PIPEDREAM_STEPS file contains data from previous steps
cat $PIPEDREAM_STEPS | jq .trigger.context.id
# Write data to $PIPEDREAM_EXPORTS to return it from the step
# Exports must be written as key=value
echo foo=bar >> $PIPEDREAM_EXPORTS