Cobalt is a powerful, yet easy to use, API that allows you to build all sorts of applications.
Here are some examples of what you can build with Cobalt:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
cobalt: {
type: "app",
app: "cobalt",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://cobalt-api.cobaltgp.com/v0/companies`,
headers: {
"Authorization": `${this.cobalt.$auth.api_key}`,
},
})
},
})
Cobalt uses API keys for authentication. When you connect your Cobalt account, Pipedream securely stores the keys so you can easily authenticate to Cobalt APIs in both code and no-code steps.