curl --request POST \
--url http://localhost/mogl/mogl-backend/api/login \
--header 'Content-Type: application/json' \
--data '
{
"email": "user@example.com",
"password": "secret123"
}
'{
"access_token": "<string>",
"token_type": "Bearer",
"user": {}
}Authenticate a user and return a JWT Bearer token. Rate limited to 15 requests/minute.
curl --request POST \
--url http://localhost/mogl/mogl-backend/api/login \
--header 'Content-Type: application/json' \
--data '
{
"email": "user@example.com",
"password": "secret123"
}
'{
"access_token": "<string>",
"token_type": "Bearer",
"user": {}
}Documentation Index
Fetch the complete documentation index at: https://developer.mogl.online/llms.txt
Use this file to discover all available pages before exploring further.