Enterprise-grade REST APIs for building conversational AI. Complete infrastructure for chats, tasks, memories, and workflows.
Simple REST APIs with JWT authentication. No complex setup, no vendor lock-in.
const jwt = await new jose.SignJWT({
email: 'user@example.com',
firstName: 'John',
lastName: 'Doe'
})
.setProtectedHeader({
alg: 'RS256',
kid: process.env.KEY_ID
})
.setIssuedAt()
.setExpirationTime('1h')
.sign(privateKey);
const res = await fetch(
'https://api.tskr.ai/chats/chat_123/messages',
{
method: 'POST',
headers: {
'Authorization': `Bearer ${jwt}`,
'Content-Type': 'application/json'
},
body: JSON.stringify({
content: 'Schedule our quarterly review',
role: 'user'
})
}
);Delegated APIs for user-specific operations, Management APIs for account-level control
Operate on user-specific data with email-scoped authentication
Manage assistants and users across your account
Native integrations with encrypted OAuth token storage
Get your API key and start integrating in minutes