Loading dashboard…
Overview
Pro Plan
Analyze a track
Drop an audio file for instant AI detection
Total Analyses
0
vs last 7 days
AI Detected
0
flagged as AI-generated
Human Verified
0
confirmed human-made
Avg AI Score
across all analyses
Activity
Analyze tracks to see activity
Detection Breakdown
No data yet
Recent Analyses
TrackDateScoreVerdictConfidence
Loading…
History
TrackDateScoreVerdictConfidenceEngine
Loading…
Batch Upload
Drop audio files or click to browse
MP3, WAV, FLAC, OGG, M4A — up to 50 files per batch
API Access

Integrate AI Song Checker detection into your workflow via REST API. Read the docs →

Your API Key
Contact contact@nthg.fr for access
cURL
curl -X POST https://api.aisongchecker.pro/v1/analyze \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"features": { ... }}'
Python
import requests response = requests.post( "https://api.aisongchecker.pro/v1/analyze", headers={"Authorization": "Bearer YOUR_API_KEY"}, json={"features": extracted_features} ) print(f"Verdict: {response.json()['prediction']}")