1. Authentication
Authvaultix
  • Getting Started
  • Overview
    • Security Practices
    • SDK & Code Examples
    • ? QnA
    • rate limiting
  • Dashboard
    • Manage Applications
    • Account Settings
      • Settings
      • Billing History
      • Login History
      • Notifications
      • Keyboard Shortcuts
      • Preferences
      • Forms
      • Bug Bounty
    • Seller
      • Team Member
      • Seller Keys
      • Seller Logs
    • App
      • Licenses
      • Users
      • Token
      • Subscriptions
      • Chats
      • Sessions
      • Webhook
      • Files
      • Global Variables
      • User Variables
      • Logs
      • Blacklists
      • Whitelists
      • Audit Logs
      • Web Loader
      • Tamper Log
  • API
    • initialization
      • init
    • Authentication
      • Login
        POST
      • register
        POST
      • License Login
        POST
      • Forgot Password
        POST
      • OTP Verify
        POST
      • Logout
        POST
      • Change Username
        POST
    • Sessions
      • Session Check
      • Fetch Online
    • Licensing
      • Upgrade Access
    • Users
      • Get User Variable
      • Set User Variable
      • Global Variable
      • Ban User
      • Check Blacklist
    • Files
      • Download File
    • Chat
      • Send Message
      • Fetch Messages
    • Webhooks
      • Webhook
    • Security
      • Tamper Detection
  • Seller API
    • Seller Key
      • Validate Seller Key
    • Users
      • Add HWID To Existing User
      • Create User
  1. Authentication

Login

POST
https://authvaultix.com/api/1.0/
Last modified:2026-08-03 10:59:45
Log into the application using a username and password.

Request

Query Params

Responses

🟢200Success
application/json
Bodyapplication/json

🟢201
🟢202
🟠400
🟠401
🟠403
🟠429
🔴5XX
🔴502
🔴503
🔴504
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://authvaultix.com/api/1.0/?type=login&username=&pass=&sessionid=&name=&ownerid=&hwid=&token=&os=&architecture=&device=&cpu_cores=&ram=&version=&is_web='
Response Response Example
200 - Success Login
{
  "success": true,
  "code": 68,
  "message": "Logged in!",
  "info": {
    "username": "Luffy",
    "subscriptions": [
      {
        "subscription": "VIP",
        "key": "AVX-XXXX-YYYY-ZZZZ",
        "expiry": "1735689600",
        "timeleft": 864000
      }
    ],
    "ip": "103.45.67.89",
    "hwid": "A1B2-C3D4-E5F6-7890-XYZ1",
    "createdate": "1700000000",
    "lastlogin": "1700005000"
  },
  "permissions": [
    "VIP"
  ],
  "nonce": "84729103",
  "ownerid": "5d36476ca4"
}
Modified at 2026-08-03 10:59:45
Previous
init
Next
register
Built with