Documentation Index
Fetch the complete documentation index at: https://docs.autotab.com/llms.txt
Use this file to discover all available pages before exploring further.
Installation
Get your API Key
In the Autotab app, navigate to Settings and enable the Developer API. Then, copy your API Key.
Now that you have enabled the Developer API, go back to the Dashboard and select the Skill you want to run with the API. You should see the id in the top right corner.
Run your skill
import { Configuration, RunApi } from 'autotab';
const runClient = new RunApi(new Configuration({
apiKey: process.env['AUTOTAB_API_KEY'],
}));
async function main() {
const run = await runClient.start({
runSkillRequest: {
skillId: "skill_fe517503-384a-45c5-87a3-94f98126e626"
}
});
console.log("result:", await runClient.retrieve({
id: run.id
}))
}
main();