| Parameter | Type | Required | Description |
| key | string | Required | Your API key |
| action | string | Required | Must be services |
// PHP Example
$ch = curl_init();
curl_setopt_array($ch, [
CURLOPT_URL => 'https://matrixland.net/api/v2',
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => 'key=YOUR_API_KEY&action=services',
CURLOPT_RETURNTRANSFER => true,
]);
$response = curl_exec($ch);
$data = json_decode($response, true);
# Python Example
import requests
response = requests.post(
'https://matrixland.net/api/v2',
data={'key': 'YOUR_API_KEY', 'action': 'services'}
)
data = response.json()
# cURL Example
curl -X POST https://matrixland.net/api/v2 \
-d "key=YOUR_API_KEY&action=services"
✅ Response Example
[
{
"service": 1,
"name": "Instagram Followers",
"type": "Default",
"category": "Instagram",
"rate": "0.80",
"min": "100",
"max": "100000",
"refill": true
}
]