Skip to content

Instantly share code, notes, and snippets.

@TESHAZ
Forked from dwisiswant0/spotiCheckAPI.v2.md
Created August 12, 2019 16:05
Show Gist options
  • Save TESHAZ/c1987c74b1e398a04b8dd899ad5dc658 to your computer and use it in GitHub Desktop.
Save TESHAZ/c1987c74b1e398a04b8dd899ad5dc658 to your computer and use it in GitHub Desktop.
Spotify Account Checker API v2

Spotify Account Checker API v2

Checking the Spotify account whether the login is valid or not.

  • Use POST http method.

What's new?

  • Getting information contains username
  • Getting information contains birthdate
  • Getting information contains country of origin
  • Getting information containing PO BOX
  • Getting information containing account type (FREE/PREMIUM, etc)
  • Getting information containing the expiration date of the subscription
Resource URL
Parameters
  • email (required). Email.
  • password (required). Password.

Example

Request

$ curl -X POST "https://api.dw1.co/spotify/v2/check" --data "email={EMAIL}&password={PASSWORD}"

Response (JSON)

If success:

{
    "status": true,
    "account": {
        "username": "....",
        "email": "....",
        "password": "....",
        "dob": "....",
        "country": "....",
        "postalcode": "...."
    },
    "subscription": {
        "type": "Spotify ....",
        "expired": ....
    }
}

Else:

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