← Back to Productivity & Business

Interview Buddy

Real-time interview assistant

https://hub.toolweb.in/tools/interview-buddy/

Endpoints

GET /status

Health Check

POST /auth/send-otp

Send Otp

Request Body (JSON)

{
  "email": "<string>"
}
POST /auth/verify-otp

Verify Otp

Request Body (JSON)

{
  "email": "<string>",
  "otp": "<string>"
}
GET /auth/me

Get Me

POST /auth/logout

Logout

POST /chat/stream

Chat Stream

Request Body (JSON)

{
  "question": "<string>"
}

Quick Start

# cURL
curl -H "X-API-Key: YOUR_API_KEY" \
  https://hub.toolweb.in/tools/interview-buddy/
# Python
import requests
r = requests.get("https://hub.toolweb.in/tools/interview-buddy/",
    headers={"X-API-Key": "YOUR_API_KEY"})
print(r.json())
# JavaScript
fetch("https://hub.toolweb.in/tools/interview-buddy/", {
  headers: { "X-API-Key": "YOUR_API_KEY" }
}).then(r => r.json()).then(console.log)

Sign up free to get your API key auto-filled.