curl --request POST \
--url https://api.easierprop.com/admin/login \
--header 'Content-Type: application/json' \
--data '
{
"username": "admin",
"password": "s3cret"
}
'{
"ok": true,
"data": {
"token": "eyJhbGciOiJIUzI1NiIs...",
"admin": {
"id": "70f60784-20f1-45ba-9a04-8e01c0b810c3",
"username": "admin",
"role": "admin"
}
}
}Authenticate with username and password. Returns a JWT token for subsequent admin API calls.
curl --request POST \
--url https://api.easierprop.com/admin/login \
--header 'Content-Type: application/json' \
--data '
{
"username": "admin",
"password": "s3cret"
}
'{
"ok": true,
"data": {
"token": "eyJhbGciOiJIUzI1NiIs...",
"admin": {
"id": "70f60784-20f1-45ba-9a04-8e01c0b810c3",
"username": "admin",
"role": "admin"
}
}
}Documentation Index
Fetch the complete documentation index at: https://docs.easierprop.com/llms.txt
Use this file to discover all available pages before exploring further.