Privacy & Third Parties – Endpoint
Base URL
https://api.rsch.ioPath
/api/v1/recon/privacyMethod
GETQuery Parameters
domain– Required. Domain or URL whose page should be inspected, for exampletestphp.vulnweb.comorhttps://testphp.vulnweb.com.
Example Request
GET https://api.rsch.io/api/v1/recon/privacy?domain=testphp.vulnweb.comResponses follow the standard API envelope:
{
"status": "success",
"request_id": "b8949cd3-66d8-42bd-831a-86ab1355d780",
"date": "2025-11-19 08:23:21",
"duration": 0.134777545928955,
"data": {
"input": "http://testphp.vulnweb.com/",
"url": "http://testphp.vulnweb.com/",
"final_url": "http://testphp.vulnweb.com/",
"status_code": 200,
"host": "testphp.vulnweb.com",
"privacy": {
"has_privacy_policy_link": true,
"privacy_links": [
{
"text": "Privacy Policy",
"href": "privacy.php"
}
],
"has_cookie_text": false,
"cookie_keywords": []
},
"third_parties": {
"assets": {
"scripts": [],
"images": [
{
"url": "http://testphp.vulnweb.com/images/logo.gif",
"host": "testphp.vulnweb.com",
"first_party": true
}
],
"iframes": [],
"stylesheets": [
{
"url": "http://testphp.vulnweb.com/style.css",
"host": "testphp.vulnweb.com",
"first_party": true
}
]
},
"summary": {
"first_party_domains": 1,
"third_party_domains": 0,
"third_party_details": []
}
}
}
}On error, the envelope contains an error field with a human-readable message.
Last updated on