Integrate pingmenow services into your applications with our powerful REST API
[
{
"service": 1,
"name": "Instagram Followers",
"type": "Default",
"category": "Instagram",
"rate": "2.50",
"min": "100",
"max": "10000",
"refill": true,
"cancel": true
},
{
"service": 2,
"name": "TikTok Views",
"type": "High Quality",
"category": "TikTok",
"rate": "1.20",
"min": "1000",
"max": "100000",
"refill": true,
"cancel": true
}
]
{
"order": 23501
}
{
"charge": "2.50",
"start_count": "1000",
"status": "Completed",
"remains": "0",
"currency": "USD"
}
{
"balance": "100.50",
"currency": "USD"
}
<?php
$api_key = 'YOUR_API_KEY';
$api_url = 'https://api.pingmenow.net/v2';
// Add order
$data = [
'key' => $api_key,
'action' => 'add',
'service' => 1,
'link' => 'https://instagram.com/username',
'quantity' => 1000
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $api_url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
$result = json_decode($response, true);
echo "Order ID: " . $result['order'];
?>
Get your API key and start integrating pingmenow services today