Blog APi
  1. Authentication
Blog APi
  • blogs
    • Blogs
      • Delete Blog
      • Get Blog
      • Add Blog
      • Get All Blogs
      • Update Blog
    • Authentication
      • Register User
        POST
      • Login
        POST
  1. Authentication

Register User

Developing
POST
http://localhost:8080/api/v1/auth/register
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://localhost:8080/api/v1/auth/register' \
--header 'Content-Type: application/json' \
--data-raw '{
    "first_name": "string",
    "last_name": "string",
    "email": "string",
    "password": "string",
    "gender": "string"
}'
Response Response Example
{}

Request

Body Params application/json

Examples

Responses

🟢201Created
application/json
Body

Modified at 2025-06-02 22:57:50
Previous
Update Blog
Next
Login
Built with