Skip to main content

Authentication

Generate an API key from Settings > API Keys in the dashboard.
curl -H "Authorization: Bearer YOUR_API_KEY" \
  https://api.tembo.io/task/list

SDK

npm install @tembo-io/sdk
import Tembo from '@tembo-io/sdk';

const client = new Tembo({
  apiKey: process.env.TEMBO_API_KEY,
});

const task = await client.task.create({
  prompt: 'Fix the authentication bug in the login component',
  repositories: ['https://github.com/org/repo'],
});

Rate limits

100 requests per minute per API key. 1,000 requests per hour per organization.