Skip to content

Instantly share code, notes, and snippets.

@dwisiswant0
Last active October 8, 2023 19:36
Show Gist options
  • Save dwisiswant0/3f58f76d62e3afd57b05fd1a1487d961 to your computer and use it in GitHub Desktop.
Save dwisiswant0/3f58f76d62e3afd57b05fd1a1487d961 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": "...."
}
@gerome99
Copy link

gerome99 commented Oct 8, 2023

-_- 2023

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment