← Back to Compliance & GRC
PCI DSS Checker
PCI DSS compliance assessment
https://hub.toolweb.in/compliance/pci-dss-checker/
Endpoints
POST
/pci-compliance
Pci Dss Compliance Check
Request Body (JSON)
{
"organization_name": "<string>",
"business_type": "<string>",
"company_size": "<string>",
"transaction_volume": "<string>",
"card_brands": "<array>",
"processing_methods": "<array>",
"stores_card_data": "<boolean>",
"transmits_card_data": "<boolean>",
"processes_card_data": "<boolean>",
"ecommerce_website": "<boolean>",
"physical_locations_pos": "<boolean>",
"mobile_payments": "<boolean>",
"third_party_processors": "<boolean>",
"cloud_services": "<boolean>",
"firewall_installed": "<boolean>",
"default_passwords_changed": "<boolean>",
"network_segmentation": "<boolean>",
"card_data_protected": "<boolean>",
"transmission_encrypted": "<boolean>",
"cryptographic_keys": "<boolean>",
"antivirus_installed": "<boolean>",
"secure_systems_development": "<boolean>",
"vulnerability_management": "<boolean>",
"access_controls_by_role": "<boolean>",
"unique_user_ids": "<boolean>",
"multifactor_auth": "<boolean>",
"physical_access_restricted": "<boolean>",
"media_securely_handled": "<boolean>",
"access_logged": "<boolean>",
"logs_regularly_reviewed": "<boolean>",
"log_integrity_protected": "<boolean>",
"vulnerability_scans": "<boolean>",
"penetration_testing": "<boolean>",
"network_monitoring": "<boolean>",
"security_policy_maintained": "<boolean>",
"security_awareness_program": "<boolean>",
"incident_response_plan": "<boolean>",
"service_provider_monitoring": "<boolean>"
}
Quick Start
# cURL
curl -H "X-API-Key: YOUR_API_KEY" \ https://hub.toolweb.in/compliance/pci-dss-checker/
# Python
import requests
r = requests.get("https://hub.toolweb.in/compliance/pci-dss-checker/",
headers={"X-API-Key": "YOUR_API_KEY"})
print(r.json())
# JavaScript
fetch("https://hub.toolweb.in/compliance/pci-dss-checker/", {
headers: { "X-API-Key": "YOUR_API_KEY" }
}).then(r => r.json()).then(console.log)
Sign up free to get your API key auto-filled.