Public
Documentation Settings

Postgre APIs App

The Node.js Blog App is a web application that allows users to create, read, update, and delete (CRUD) blog posts. It will be built using Node.js and Express on the server side.

Here are the REST API endpoints that may be required for the Node.js Blog App.

App link

Design and created by Aagam Jain

user APIs

The user APIs are that allow user to (sign in , login, and get details of user)

POST/api/login

https://postgre-apis-app.onrender.com/api/login

Allows a user to log in by sending a POST request with their username and password.

Bodyraw (json)
json
{
    "username": "gl01",
    "password": "hello"
}
Example Request
curl
curl --location 'https://postgre-apis-app.onrender.com/api/login' \
--data '{
    "username": "gl01",
    "password": "hello"
}'
200 OK
Example Response
json
{
  "done": true,
  "msg": "User have been login",
  "username": "gl01",
  "name": "Aagam Jain"
}
Date

Mon, 26 Dec 2022 12:58:29 GMT

Content-Type

application/json; charset=utf-8

Transfer-Encoding

chunked

Connection

keep-alive

CF-Ray

77f9fcfa687c1b82-DEL

ETag

W/"50-pHUqgWzKN0ftBnyinsO9S67vE7E"

Vary

Accept-Encoding

CF-Cache-Status

DYNAMIC

x-powered-by

Express

Server

cloudflare

Content-Encoding

br

alt-svc

h3=":443"; ma=86400, h3-29=":443"; ma=86400

POST/api/signup

https://postgre-apis-app.onrender.com/api/signup

Allows a user to log in by sending a POST request with their username and password.

Bodyraw (json)
json
{
    "username": "gl05",
    "name":"Aagam Jain",
    "email": "aagam5@gmail.com",
    "password": "hello"
}
Example Request
curl
curl --location 'https://postgre-apis-app.onrender.com/api/signup' \
--data-raw '{
    "username": "gl05",
    "name":"Aagam Jain",
    "email": "aagam5@gmail.com",
    "password": "hello"
}'
200 OK
Example Response
json
{
  "done": true,
  "msg": "New user have been created",
  "details": {
    "user_id": 14,
    "username": "gl05",
    "name": "Aagam Jain",
    "email": "aagam5@gmail.com",
    "password": "hello"
  }
}
Date

Mon, 26 Dec 2022 12:59:42 GMT

Content-Type

application/json; charset=utf-8

Transfer-Encoding

chunked

Connection

keep-alive

CF-Ray

77f9fec6ac331b82-DEL

ETag

W/"9d-4Ww6m+Vpcqq9j+Pon0x8FXYEqAU"

Vary

Accept-Encoding

CF-Cache-Status

DYNAMIC

x-powered-by

Express

Server

cloudflare

Content-Encoding

br

alt-svc

h3=":443"; ma=86400, h3-29=":443"; ma=86400

GET/api/users/all

https://postgre-apis-app.onrender.com/api/users/all

Allows a user to view all profiles of different users by sending a GET request.

Example Request
curl
curl --location 'https://postgre-apis-app.onrender.com/api/users/all' \
--data ''
200 OK
Example Response
json
{
  "done": true,
  "users": [
    {
      "user_id": 2,
      "username": "gl01",
      "email": "aagam@gmail.com",
      "name": "Aagam Jain"
    },
    {
      "user_id": 4,
      "username": "getlost01",
      "email": "aagam1@gmail.com",
      "name": "Aagam Jain"
    },
    {
      "user_id": 11,
      "username": "gl012",
      "email": "aagamjain@gmail.com",
      "name": "Aagam Jain"
    },
    {
      "user_id": 14,
      "username": "gl05",
      "email": "aagam5@gmail.com",
      "name": "Aagam Jain"
    }
  ]
}
Date

Mon, 26 Dec 2022 13:25:54 GMT

Content-Type

application/json; charset=utf-8

Transfer-Encoding

chunked

Connection

keep-alive

CF-Ray

77fa2526ff198ae1-DEL

ETag

W/"15d-khu38krpfLfAvGFqb4MjJDcEbB8"

Vary

Accept-Encoding

CF-Cache-Status

DYNAMIC

x-powered-by

Express

Server

cloudflare

Content-Encoding

br

alt-svc

h3=":443"; ma=86400, h3-29=":443"; ma=86400