API

Developer API

Integrate pingmenow services into your applications with our powerful REST API

HTTP Method POST
API URL https://api.pingmenow.net/v2
Response format JSON

Service List

Get all available services

GET
Parameters
key Your API key
action services
Example Response
JSON Response
[
    {
        "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
    }
]

Add Order

Create a new order

POST
Parameters
key Your API key
action add
service Service ID
link Link to page
quantity Needed quantity
Example Response
JSON Response
{
    "order": 23501
}

Order Status

Get order status

GET
Parameters
key Your API key
action status
order Order ID
Example Response
JSON Response
{
    "charge": "2.50",
    "start_count": "1000",
    "status": "Completed",
    "remains": "0",
    "currency": "USD"
}

User Balance

Check account balance

GET
Parameters
key Your API key
action balance
Example Response
JSON Response
{
    "balance": "100.50",
    "currency": "USD"
}

PHP Example

PHP Code
<?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'];
?>

Ready to Get Started?

Get your API key and start integrating pingmenow services today