Test and explore the Woocommerce Commerce Payment Method Checker API
GET : api.php
| Parameter | Type | Required | Description |
|---|---|---|---|
lista |
String | Yes | Woocommerce site URL to check |
| Code | Meaning |
|---|---|
| [#HQ] | High Quality - Working payment method |
| [#MID] | Medium Quality - Working but limited |
| [#ERROR] | Error - Site not working or invalid |
curl -X GET "https://yourdomain.com/api.php?lista=https://example.com/shop"
const site = "https://example.com/shop";
fetch(`https://yourdomain.com/api.php?lista=${encodeURIComponent(site)}`)
.then(response => response.text())
.then(data => console.log(data));
import requests
site = "https://example.com/shop"
response = requests.get(f"https://yourdomain.com/api.php?lista={site}")
print(response.text)
<?php
$site = "https://example.com/shop";
$response = file_get_contents("https://yourdomain.com/api.php?lista=" . urlencode($site));
echo $response;
?>