Endpoint 2.1: The Unofficial API

Methods

POST /users

Create a new user with the most stylishly inefficient data

POST /users HTTP/1.1
Host: neo-brutalist-backend.com
Content-Type: application/json
{
    "name": "Your Name",
    "email": "your_email@neobrutalist.com",
    "password": "password123"
}

GET /users/{id}

Fetch a user by their stylishly inefficient ID

GET /users/{id} HTTP/1.1
Host: neo-brutalist-backend.com
Accept: application/json

DELETE /users/{id}

Uncreate a user because, why not?

DELETE /users/{id} HTTP/1.1
Host: neo-brutalist-backend.com
Accept: application/json

Endpoints

/users/{id}/styles

Get the most stylishly inefficient styles for the user

/users/{id}/styles/{style_id}

Get a specific style for the user

Back to Endpoint 2