API backlinks_check
This API should be used only for mass backlinks check for a domain list. For other purposes you could use other APIs:
- check_message - API spam filter to check Posts/comments.
- check_newuser - Registrations check.
- send_feedback - Send feedback to CleanTalk.
- spam_check - mass check for IPs, emails for spam activity.
- Nginx Anti-Spam Module - check all POST requests for spam
- Universal Anti-Spam Plugin - this plugin can be installed on any custom websites or CMS.
Very often spam messages are disguised as neutral posts and have no spam text, but such messages contain links to spam sites or fraudulent sites.
This API allows you to identify if a domain was used in other spam messages.
The CleanTalk Anti-Spam Service collects links from millions of spam messages so you can check any domain from links for spam activity.
If a domain exists in the database, then this is one of the major signs of spam.
This method is included in the Blacklist API spam_check().
Note: our servers count each record that you request for checking. If you made 1 multiple records request, in your CleanTalk dashboard you will see a few checks (as many as there were records in the request).
Call required GET params
-
method_name - should be 'backlinks_check',
-
auth_key - API Key. To obtain a key please get an account here https://cleantalk.org/register?platform=api.
Example:
https://api.cleantalk.org/?method_name=backlinks_check&auth_key=123456&domain=example.com
API returns JSON string, for example:
{"data":{"example.com":{"appears":1,"frequency":"164","updated":"2016-08-05 07:15:51"}}}
Response explanation
- data - array with results,
- appears - marker which defines record existence in the database 0|1.
- frequency - counts websites with backlinks in the record.
- updated - last time a backlink was found.
Multiple records check
You can submit multiple records to test per 1 call, to do that use POST options:
data - string with records to check separated by ','.
Example:
wget -O- --post-data='data=example.com,example1.com' https://api.cleantalk.org/?method_name=backlinks_check\&auth_key=123456
Response:
{"data":{"example.com":{"appears":1,"frequency":"164","updated":"2016-08-05 07:15:51"},"example1.com":{"appears":0}}}
Restrictions
If you get calls limit, API returns error notice. Example:
{"error_message":"Calls limit exceeded.","error_no":10}
Current calls limit is 100 per 60 seconds.
If you get data elements limit in backlinks_check method, API returns error notice. Example:
{"error_message":"Recevied 1001 records to check, maximum 1000 records check perl call.","error_no":8}
Current data elements limit is 1000.
Recommended timeout is no more than 180 seconds.
If you haven't found the answer to your question, please, contact our support team:
https://cleantalk.org/my/support/open
It would also be interesting
- How the CleanTalk Anti-Spam API Works. API Main HelpAPI Main Help Method "check_newuser" Method "check_message" Send_feedback Built-In...
- Spam Check API - API Method spam_checkAPI Method "spam_check" Common description Method's get parameters Response Explanation Multiple...
- CleanTalk API methodsCleanTalk APIs CleanTalk provides API services that enable you to integrate CleanTalk Anti-Spam functionality...