Comprehensive guides, API references, and tutorials to help you get the most out of Metis.
import { MetisClient } from '@metis/sdk';
const client = new MetisClient({
apiKey: process.env.METIS_API_KEY
});
// Create an interview
const interview = await client.interviews.create({
candidateName: "John Doe",
position: "Senior Developer",
templateId: "tech-screening"
});
console.log('Interview started:', interview.id);