Documentation Index
Fetch the complete documentation index at: https://test-8862363a-tembo-update-docs-new-features-2026-03.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Have questions? Chat with our team in real time – open the support chat in the app.
Create tasks, manage repositories, and automate workflows programmatically.
Documentation Index
Fetch the complete documentation index at: https://test-8862363a-tembo-update-docs-new-features-2026-03.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://api.tembo.io/task/list
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'],
});
Was this page helpful?