A PHP wrapper class for the API available at stopforumspam.com. An API key is required only for updating the spam database. Uses the JSON interface internally.
$sfs = new StopForumSpam();
$args = array('email' => 'email@example.com', 'ip' => '192.168.1.1', 'username' => 'JohnDoe');
$spamcheck = $sfs->is_spammer( $args );
This is the data, as returned by StopForumSpam.com, without parsing.
$sfs = new StopForumSpam();
$args = array('email' => 'email@example.com', 'ip' => '192.168.1.1', 'username' => 'JohnDoe');
$user = $sfs->get( $args );
Licensend under the BSD 3-Clause License.