A clean REST API to search tutors, send inquiries, and manage the marketplace. JSON in, JSON out. All endpoints authenticated via bearer tokens.
{ "role": "student" }{ "token": "eyJhbGciOi…", "user": { "id": "u_9821", "role": "student" } }curl -X POST https://api.tutorhub.ae/v1/auth/session \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{ "role": "student" }'