Public
Documentation Settings

Yoga-backend

Yoga-backend API allows users to interact to the Ktor-yoga backend to Login, Signup, Authenticate and Register for their Yoga classes.

GETWelcome Endpoint

https://ktor-yoga.onrender.com/

This is the base endpoint that displays a simple welcome message.

Use this to activate the server in case the server goes off.

Example Request
curl
curl --location 'https://ktor-yoga.onrender.com/'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

POSTSignUp Endpoint

https://ktor-yoga.onrender.com/signup

StartFragment

This endpoint is used to Sign up users and returns their unique user id and JWT auth token along with other details.

EndFragment

Bodyraw (json)
json
{
    "username" : "test-user",
    "password" : "test-pass"
}
Example Request
curl
curl --location 'https://ktor-yoga.onrender.com/signup' \
--data '{
    "username" : "test-user",
    "password" : "test-pass"
}'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

POSTSignIn Endpoint

https://ktor-yoga.onrender.com/signin

This endpoint is used to Sign in users and returns their unique user id and JWT auth token along with other details.

Bodyraw (json)
json
{
    "username" : "test-user",
    "password" : "test-pass"
}
Example Request
curl
curl --location 'https://ktor-yoga.onrender.com/signin' \
--data '{
    "username" : "test-user",
    "password" : "test-pass"
}'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers