Auth
Logout
Logout and invalidate the current session.
curl -X POST "https://loading/v1/auth/logout"{
"success": true
}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string"
}
]
}Create Session Endpoint
Create a session by verifying a signed challenge. The challenge must have been requested within the last 60 seconds and the signature must be valid for the challenge message. Rate limited to 5 requests per minute per IP to prevent brute force.
Request Challenge
Request a challenge for wallet authentication. The challenge must be signed by the wallet and submitted to /session within 60 seconds. Rate limited to 10 requests per minute per IP to prevent abuse.