GitHub Examples
Code snippets and SDK usage.
GitHub Examples
Check out our GitHub Organization for full SDKs.
Node.js SDK
const PrepTalk = require('@preptalk/node');
const client = new PrepTalk('API_KEY');
await client.interviews.create({
candidate: 'jane@example.com',
role: 'Product Manager'
});
Python SDK
import preptalk
client = preptalk.Client('API_KEY')
report = client.reports.get('interview_id')
print(report.score)
