Find your perfect RoomMate

We're building the smartest way to match roommates. Explore listings, create profiles, and discover verified spaces.

Friends enjoying time together
100+
Active Listings
50+
Verified Users
95%
Match Rate
24/7
Support

API Routes

Live from the router

Live
GET / (root)
pages # home
GET /auth/login (auth_login)
sessions # new
POST /auth/login
sessions # create
POST /auth/logout (auth_logout)
sessions # destroy
GET /auth/register (auth_register)
users # new
POST /auth/register
users # create
GET /dashboard (dashboard)
dashboards # show
GET /listings (listings)
listings # index
POST /listings
listings # create
DELETE /listings/:id
listings # destroy
GET /listings/:id (listing)
listings # show
PATCH /listings/:id
listings # update
PUT /listings/:id
listings # update
GET /listings/:id/edit (edit_listing)
listings # edit
PATCH /listings/:id/verify (verify_listing)
verification_requests # verify
GET /listings/new (new_listing)
listings # new
GET /listings/search (search_listings)
listings # search
GET /matches (matches)
matches # index
GET /matches/:id (match)
matches # show
POST /matches/:id/like (like_match)
matches # like
POST /matches/generate (generate_matches)
matches # generate
GET /profile (profile)
profiles # show
PATCH /profile
profiles # update
PUT /profile
profiles # update
GET /profile/edit (edit_profile)
profiles # edit
GET /verification_requests (verification_requests)
verification_requests # index