Test our API endpoints with real-time responses and generate code examples
Get your token by logging in to your account
/api/auth/signupRegister your company and get your API key to start using the platform.
Request body for POST /api/auth/signup
{
"email": "admin@techcorp.com",
"password": "SecurePassword123!",
"companyName": "Tech Corp",
"fullName": "John Doe"
}{
"success": true,
"message": "Welcome to Coding Assessment Platform!",
"data": {
"company": {
"id": "comp_123",
"name": "Tech Corp",
"apiKey": "sk_live_abcdef123456789",
"createdAt": "2024-01-15T10:30:00Z"
},
"user": {
"id": "user_456",
"email": "admin@techcorp.com",
"fullName": "John Doe",
"role": "admin"
}
}
}// Create API Key & Company
const response = await fetch('https://evaluation.interviewscreener.com/api/auth/signup', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
"email": "admin@techcorp.com",
"password": "SecurePassword123!",
"companyName": "Tech Corp",
"fullName": "John Doe"
})
});
const data = await response.json();
console.log(data);Need help? Check out our or .
Register your company and get your API key to start using the platform.