Link Reputation
Show the URIBL reputation for links contained in the supplied email test. For more information on URIBL, visit http://www.uribl.com/about.shtml#info.
URLs:
Sandbox:
https://sandbox.emailonacid.com/v4/linkReputation - Default (XML) Request
https://sandbox.emailonacid.com/v4/linkReputation/xml - XML Request
https://sandbox.emailonacid.com/v4/linkReputation/json - JSON Request
Production:
https://api.emailonacid.com/v4/linkReputation - Default (XML) Request
https://api.emailonacid.com/v4/linkReputation/xml - XML Request
https://api.emailonacid.com/v4/linkReputation/json - JSON Request
Request:
XML
<?xml version="1.0" encoding="utf-8"?> <linkreputation> <eoa_test_id>UNIQUE EMAIL TEST ID</eoa_test_id> </linkreputation>
JSON
{ "eoa_test_id" : UNIQUE EMAIL TEST ID }
JSON Validation Schema:
Click here to download.
Request Details
Element | Description | Data Type | Required |
---|---|---|---|
eoa_test_id |
The reference id for the test to retrieve | Integer | Y |
Response:
XML
<?xml version="1.0" encoding="utf-8"?> <xml> <url_result> <url>http://www.emailonacid.com/contact</url> <listed> TRUE </listed> <uribl_result> <uribl> <name>red.uribl.com</name> <url>http://www.uribl.com/about.shtml#info</url> </uribl> </uribl_result> <count>1</count> </url_result> <url_result> <url>mailto:test@example.com</url> <listed></listed> <uribl_result></uribl_result> <count>1</count> </url_result> ... </xml>
JSON
[{ "url_result" : { "url" : "http:\/\/www.emailonacid.com\/contact", "listed" : true, "uribl_result" : [{ "uribl" : { "name" : "grey.uribl.com", "url" : "http:\/\/www.uribl.com\/about.shtml#info" } } ], "count" : 1 } }, { "url_result" : { "url" : "mailto:test@example.com", "listed" : false, "uribl_result" : [], "count" : 2 } }, ... ]
Response Details
Element | Description |
---|---|
url |
URL that was tested. |
listed |
Whether or not the URL was present on a uribl list. |
uribl_result |
Container with the URIBL list that was matched against, along with the URL for the URIBL information. |
count |
Number of times the link appears. |