Account
All actions for the "/account" endpoint.
Create an account
POST https://api.lolwallpapers.net/beta/account
Request Body
displayName
string
The name that will be displayed on the website.
string
A valid email address.
password
string
A 8 characters long (minimum) password.
bio
string
A little description about the user.
{
"status": "success",
"data": null
}{
"status": "fail",
"data": {
"displayName": [
"This value should not be blank."
],
"email": [
"This value should not be blank."
],
"password": [
"This value should not be blank."
]
}
}Get the account information
GET https://api.lolwallpapers.net/beta/account
Edit the account
PATCH https://api.lolwallpapers.net/beta/account
Request Body
displayName
string
The name that will be displayed on the website.
string
A valid email address.
password
string
A 8 characters long (minimum) password.
bio
string
A little description about the user.
Get a list of wallpapers
GET https://api.lolwallpapers.net/beta/account/wallpapers
Query Parameters
limit
string
The amount of wallpapers to display per page. Default: 20 Minimum: 1 Maximum: 50
page
string
The page to display. Default: 1 Minimum: 1
Last updated
Was this helpful?