Music Industry
spotify logo

Spotify Verification

Verify Spotify account control through OAuth. Confirm artists and users control their claimed profiles for music industry partnerships or playlist access.

How It Works

OAuth verification for Spotify accounts

Step 1

Initiate OAuth

Call our API to get a Spotify authorization URL. User is redirected to Spotify's login.

Step 2

User Authenticates

User logs into Spotify and grants permission to verify account control.

Step 3

Proof Generated

We verify the OAuth response and return a proof token with Spotify user ID and profile details.

API Integration

Integrate Spotify verification for music partnerships

1. Create Verification Request

curl -X POST https://api.proof.holdings/api/v1/verifications   -H "Authorization: Bearer pk_live_YOUR_API_KEY"   -H "Content-Type: application/json"   -d '{
    "type": "social",
    "channel": "spotify",
    "identifier": "spotify_user_id"
  }'

2. Verify the Proof Token

# After OAuth callback, check verification status
curl -X GET https://api.proof.holdings/api/v1/verifications/VERIFICATION_ID   -H "Authorization: Bearer pk_live_YOUR_API_KEY"

Response Example

{
  "id": "507f1f77bcf86cd799439011",
  "type": "social",
  "channel": "spotify",
  "status": "verified",
  "identifier": "spotify_user_id",
  "verified_at": "2026-03-15T10:30:00Z",
  "proof": {
    "token": "eyJhbGciOiJSUzI1NiIs...",
    "expires_at": "2026-04-14T10:30:00Z"
  }
}