with NiftyKit and Rumi AI?
Emit new event when a new NFT is minted in NiftyKit. See the documentation
Emit new events when a session is completed. See the documentation
Add access to a session for specific email addresses or domains. See the documentation
Stream an AI query against session memories. See the documentation
Get information about the current authenticated user. See the documentation
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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
rumi_ai: {
type: "app",
app: "rumi_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.rumi.ai/v1.0/users/me`,
headers: {
Authorization: `Bearer ${this.rumi_ai.$auth.oauth_access_token}`,
},
})
},
})