Auth.GG
  • Welcome to Auth.GG!
  • C#
    • Initial Setup
    • Login
    • Register
    • Extend Subscription
    • User Information
    • Variables
    • Logs
  • Universal API
    • Application Information
    • Login
    • Register
    • Extend Subscription
    • Forgot Password
    • Change Password
    • Log
  • Admin API
    • Users
    • Licenses
    • HWID
  • FOR DEVELOPER
    • FAQ
Powered by GitBook
On this page
  • Receive App Info
  • Raw POST Example
  • Server response

Was this helpful?

  1. Universal API

Application Information

Receive information about your application

Receive App Info

POST https://api.auth.gg/v1/

This endpoint allows you to license any language that can make web requests

Query Parameters

Name
Type
Description

type

string

info

aid

string

AID is found in profile settings

secret

string

Secret is found in applications tab

apikey

string

API Key is found in profile settings, only available to premium members

{
"status":"Enabled", 
"developermode":"Enabled", 
"hash":"8f9f505befe899065cd73cdcedd1ff93", 
"version":"1.2", 
"downloadlink":"Enabled", 
"freemode":"Enabled", 
"login":"Enabled", 
"register":"Enabled", 
"users":"3", 
"name":"Demo"
}

Raw POST Example

POST /v1 HTTP/1.1
Host: api.auth.gg
Content-Type: application/x-www-form-urlencoded
Content-Length: 123

type=info&aid=demo&apikey=demo&secret=demo&username=demo&password=demo&hwid=demo

Server response

{
"status":"Enabled", 
"developermode":"Enabled", 
"hash":"8f9f505befe899065cd73cdcedd1ff93", 
"version":"1.2", 
"downloadlink":"Enabled", 
"freemode":"Enabled", 
"login":"Enabled", 
"register":"Enabled", 
"users":"3", 
"name":"Demo"
}

PreviousLogsNextLogin

Last updated 4 years ago

Was this helpful?