Rockset is a serverless search and analytics engine that allows you to create live dashboards and real-time data APIs on DynamoDB, Kafka, S3 and more.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
rockset: {
type: "app",
app: "rockset",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.rs2.usw2.rockset.com/v1/orgs/self/users/self`,
headers: {
"Authorization": `ApiKey ${this.rockset.$auth.apikey}`,
},
})
},
})
Rockset uses API keys for authentication. When you connect your Rockset account, Pipedream securely stores the keys so you can easily authenticate to Rockset APIs in both code and no-code steps.
API Keys in Rockset can be created via the Rocketset console. Located under the Manage menu to the left, option API Keys.