The starting point for your next project 6.3.0

Host API: https://api.ether-realms.com

Auth
Get user info after login
GET/api/auth/me
Login
POST/api/auth/login
Register
POST/api/auth/register
Blog
Get all posts
GET/api/post/list
Get post details by title
GET/api/post/details?title={title}
Get latest posts
GET/api/post/latest?title={title}
Search post
GET/api/post/search?query={query}
Calendar
Get all events
GET/api/calendar
Create new event
POST/api/calendar
Update event
PUT/api/calendar
Delete event
PATCH/api/calendar
Chat
Search contacts
GET/api/chat?endpoint=contacts
Get all conversations
GET/api/chat?endpoint=conversations
Get conversation details by ID
GET/api/chat?conversationId={conversationId}&endpoint=conversation
Mark conversation as seen when click
GET/api/chat?conversationId={conversationId}&endpoint=mark-as-seen
Create new conversation
POST/api/chat
Update conversation
PUT/api/chat
Mail
Get all labels
GET/api/mail/labels
Get mails by labelId
GET/api/mail/list?labelId={labelId}
Get mail details by ID
GET/api/mail/details?mailId={mailId}
Product
Get all products
GET/api/product/list
Get product details by ID
GET/api/product/details?productId={productId}
Search product
GET/api/product/search?query={query}
Pagination
Get products
GET/api/pagination?page={page}&perPage={perPage}