API Playground

Interactive API Testing

Test our API endpoints with real-time responses and generate code examples

Environment:
API Key

Get your token by logging in to your account

Endpoints

POST

Create API Key & Company

/api/auth/signup

Register your company and get your API key to start using the platform.

Request Body

Request body for POST /api/auth/signup

Example Request
{
  "email": "admin@techcorp.com",
  "password": "SecurePassword123!",
  "companyName": "Tech Corp",
  "fullName": "John Doe"
}

Response Examples

201
Company and API key created successfully
{
  "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"
    }
  }
}

Code Examples

// 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);

Additional Information

Category:Getting Started
Authentication:Not Required

Need help? Check out our or .