1

Get your Secret Key

First, sign up on our Platform and get your Secret Key.

2

Get your Raccoon Passcode

Get your Raccoon Passcode. This is used to identify the end user for which this request is being made for.

We recommend using Tail SDK to link and manage your end user accounts of different third party apps securely, it uses this passcode to inject user’s authentication context into the app if available in Run Sessions.

3

Install Raccoon AI SDK

npm i raccoonai
4

Make your first request

import { RaccoonAI } from 'raccoonai'

const client = new RaccoonAI({secretKey: process.env.RACCOON_SECRET_KEY});
(async () => {
    const response = await client.lam.run({
        query: 'Find the price of iphone 16 on Amazon',
        raccoon_passcode: "<raccoon-passcode>"
    })
    console.log(response)
})()
5

Observe the session

Checkout the session live stream and recording Tasks page on the Platform or on the livestream_url returned in the response.

Next Steps

Was this page helpful?