PoPaAP
PoPaAP WebsiteDiscord
PoPaAP WebsiteDiscord
  1. Auth
  • Use Encrypted Body
    • Javascript
  • API
    • Auth
      • Create Developer Account
        POST
      • Developer Login
        POST
      • Get My Profile
        GET
    • Applications
      • List My Applications
      • Create New Application
      • Get Application Limits
      • Get Application Details
      • Update Application
      • Delete Application
    • Statistics
      • Get Statistics
    • Plans
      • Create New Plan
      • Get Application Plans
      • Update Plan
      • Delete Plan
    • Licenses
      • Generate Licenses
      • Get Application Licenses
      • Validate License
      • Check License Expiration
      • Update License Notes
      • Delete License
      • Get My Licenses
      • Reset License HWID
      • Get License Users
    • User Authentication
      • Create User Account
      • User Login
      • Validate User License
      • Update User License
      • Get User Info
    • Variables
      • Get Public Variable
    • /files
    • /collaborators
    • /logs
    • /webhooks
    • Check API Health Status
      GET
PoPaAP WebsiteDiscord
PoPaAP WebsiteDiscord
  1. Auth

Create Developer Account

POST
https://v1.popaap.cc/api/auth/register
Last modified:2025-07-25 17:55:33
Maintainer:Kipstz

Request

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://v1.popaap.cc/api/auth/register' \
--header 'Content-Type: application/json' \
--data-raw '{
    "username": "Reuben_Murray",
    "email": "Ashlynn43@yahoo.com",
    "password": "tempor"
}'
Response Response Example
{
    "message": "User created successfully",
    "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VySWQiOiIzIiwidXNlcm5hbWUiOiJVc2VyVGVzdCIsImFwcGxpY2F0aW9uSWQiOjEyLCJsaWNlbnNlSWQiOjksImlhdCI6MTc1MjE0MzE3MCwiZXhwIjoxNzUyNzQ3OTcwfQ.woBcy-HiR8af8D8j1gUy9yverLDngcmj1wXjSJbOQAU",
    "user": {
        "id": "3",
        "username": "UserTest",
        "license_key": "AF30170C98C2925DCF4939FBD0A7FD53",
        "hwid": "hwid",
        "ip_address": "127.0.0.1",
        "created_at": "2025-07-10T10:26:09.983Z"
    }
}
Modified at 2025-07-25 17:55:33
Previous
Javascript
Next
Developer Login
Built with