Skip to content

Instantly share code, notes, and snippets.

@dwisiswant0
Last active March 29, 2018 14:04
Show Gist options
  • Save dwisiswant0/5f082b95b514755311c6ae47b29ffbb5 to your computer and use it in GitHub Desktop.
Save dwisiswant0/5f082b95b514755311c6ae47b29ffbb5 to your computer and use it in GitHub Desktop.
Spotify Account Checker API

Spotify Account Checker API

Update March 29, 2018

This API is deprecated, please check spotiCheckAPI v2 here.

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

  • Use POST http method.
Resource URL
Parameters
  • email (required). Email.
  • password (required). Password.

Example

Request

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

Response (JSON)

If success:

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

Else:

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