Back to Home

Documentation

Documentation

Complete guides, API reference, and tutorials

Getting Started

Features

API Reference

Advanced

API Endpoints

POST /api/auth/register

Register a new user account

POST /api/interviews/create

Create a new interview session

GET /api/resumes

Retrieve all user resumes

POST /api/analyze-ats

Analyze resume ATS compatibility

Code Examples

Here's how to get started with the AI²SARS API:

// Register a new user
const response = await fetch('/api/auth/register', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    email: 'user@example.com',
    password: 'secure-password'
  })
});

// Create an interview
const interview = await fetch('/api/interviews/create', {
  method: 'POST',
  headers: { 'Authorization': 'Bearer token' },
  body: JSON.stringify({
    role: 'Software Engineer',
    difficulty: 'intermediate',
    duration: 30
  })
});

Need Help?

Can't find what you're looking for? We're here to help!