import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
cursor: {
type: "app",
app: "cursor",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.cursor.com/v0/agents`,
auth: {
username: `${this.cursor.$auth.api_key}`,
password: ``,
},
})
},
})
Add a followup to an agent. See the documentation
Retrieve the conversation history of a cloud agent, including all user prompts and assistant responses. See the documentation
Gets the status of an agent. See the documentation
Launch a Cursor agent. See the documentation
List all available Cursor agents. See the documentation
Cursor uses API keys for authentication. When you connect your Cursor account, Pipedream securely stores the keys so you can easily authenticate to Cursor APIs in both code and no-code steps.