testSong.php
NOTE
This endpoint no longer exists. This page is kept for historical reasons.
Gets whitelist/artist info about a song.
IMPORTANT
This endpoint uses the GET method.
Parameters
| Parameter | Explanation | Required |
|---|---|---|
songID | The ID of the song on newgrounds | Yes |
Response
A human-readable response stating who the artist is, whether they're whitelisted and scouted, the song name, and whether they allow external API use
Example
Python
py
import requests
songID = 787311
req = requests.get(f'https://www.boomlings.com/database/testSong.php?songID={songID}')
print(req.text)Response
html
Artist: DePianoman</br>Artist is NOT Whitelisted.</br>Artist is Scouted.</br></br>Song: Newbie - Space</br>External API allowed.Human-Readable Response
Artist: DePianoman
Artist is NOT Whitelisted.
Artist is Scouted.
Song: Newbie - Space
External API allowed.