Services How It Works Blog Free Reseller Panel API Login Sign Up Free

Réamhrá

Ligeann an Resimi API duit ár seirbhísí SMM a chomhtháthú isteach i do phainéal, aip nó sreabhadh oibre féin. Filleann gach iarratas JSON. Tá an API comhoiriúnach leis an bhformáid API painéil SMM caighdeánach a úsáideann JAP, SMMKings, Peakerr agus daoine eile - rud a fhágann go bhfuil sé éasca é a aistriú nó a chomhtháthú.

Bun-URL: https://resimi.xyz/api/v2.php

Glacann gach críochphointe le hiarratais GET agus POST araon. Úsáid POST le haghaidh orduithe agus cealuithe, GET le haghaidh ceisteanna inléite amháin.

Fíordheimhniú

Ní mór d'eochair API a chur san áireamh i ngach iarratas mar pharaiméadar key.

Tá d’eochair API i Socruithe Cuntais → API Access. Coinnigh faoi rún é - tá rochtain iomlán aige ar do chuntas agus iarmhéid.
GET https://resimi.xyz/api/v2.php?key=YOUR_API_KEY&action=balance

Earráidí

Seolann gach earráid réad JSON le heochair error:

{"error": "Insufficient balance. Please add funds."}
Teachtaireacht earráideBrí
Eochair API neamhbhailíTá an eochair mícheart nó tá an cuntas ar fionraí
Cothromaíocht neamhleorCuir cistí leis sula ndéantar orduithe
Seirbhís gan aimsiú nó neamhghníomhachTá an t-aitheantas seirbhíse mícheart nó tá an tseirbhís díchumasaithe
Caithfidh an chainníocht a bheith idir X agus YCainníocht lasmuigh den raon ceadaithe don tseirbhís seo
Níor aimsíodh an t-ordúNíl aitheantas an ordaithe ann nó is le húsáideoir eile é
Ní féidir ordú a chur ar cealTá an t-ordú críochnaithe nó curtha ar ceal cheana féin

Faigh Seirbhísí

Seoltar ar ais an liosta iomlán de sheirbhísí gníomhacha le rátaí agus teorainneacha.

GET https://resimi.xyz/api/v2.php?key=YOUR_API_KEY&action=services

Paraiméadair

ParaiméadarCineálCur síos
key requiredstringD'eochair API
action requiredstringCaithfidh gur seirbhísí é

Freagra

[
  {
    "service": 1234,
    "category": "Instagram",
    "name": "Instagram Followers — HQ | Refill 30 days",
    "type": "Default",
    "rate": "0.5000",
    "min": 100,
    "max": 100000,
    "dripfeed": true,
    "refill": true,
    "cancel": false
  },
  ...
]

Ordú Áite

Cuireann sé ordú nua. Baintear an t-iarmhéid láithreach. Aitheantas an ordaithe ar ais.

POST https://resimi.xyz/api/v2.php
ParaiméadarCineálCur síos
key requiredstringD'eochair API
action requiredstringCaithfidh sé a bheith cuir
service requiredintegerAitheantas seirbhíse ón liosta seirbhísí
link requiredstringURL an spriocphróifíl nó postála
quantity requiredintegerCainníocht iomlán le seachadadh
runs optionalintegerLíon na ritheanna drip-beatha (réamhshocraithe: 1)
interval optionalintegerMiontuairiscí idir ritheanna drip-beatha (réamhshocraithe: 0)
comments optionalstringTráchtanna saincheaptha (le haghaidh seirbhísí tuairimí), ceann in aghaidh an líne

Freagra - Rath

{"order": 98765}

Freagra - Earráid

{"error": "Insufficient balance. Please add funds."}
Drip-beatha: Socraigh runs = líon na mbaisceanna agus eatramh = nóiméad idir gach ceann acu. Sampla — 1,000 leantóir thar 7 lá: quantity=1000&runs=7&eatramh=1440

Stádas an Ordaithe

Seiceáil stádas reatha ordú.

GET https://resimi.xyz/api/v2.php?key=YOUR_API_KEY&action=status&order=ORDER_ID
ParaiméadarCineálCur síos
key requiredstringD'eochair API
action requiredstringCaithfidh stádas a bheith ann
order requiredintegerAitheantas an ordaithe ar ais ó <code>cuir</code>

Freagra

{
  "charge": "0.5000",
  "start_count": 1240,
  "status": "In_progress",
  "remains": 630,
  "currency": "USD"
}

Luachanna stádais

StádasBrí
PendingAg fanacht le seoladh chuig an soláthraí
ProcessingSeolta chuig an soláthraí, ciúáilte
In_progressSeachadadh ar siúl
CompletedSeachadadh go hiomlán
PartialSeachadadh i bpáirt, fós aisíoctha
CancelledCealaithe, aisíoctha fós

Cealaigh Ordú

Cealaítear ordú atá ar feitheamh nó atá idir lámha. Aisíoctar an chuid neamhsheachadta le d’iarmhéid.

POST https://resimi.xyz/api/v2.php
ParaiméadarCineálCur síos
key requiredstringD'eochair API
action requiredstringNí mór a chur ar ceal
order requiredintegerOrdú aitheantais a chealú

Freagra - Rath

{"success": true, "refunded": 0.2500}

Seiceáil Iarmhéid

Filleann sé iarmhéid reatha an chuntais a bhaineann leis an eochair API.

GET https://resimi.xyz/api/v2.php?key=YOUR_API_KEY&action=balance

Freagra

{"balance": "12.4800", "currency": "USD"}

Samplaí de Chóid

<?php
$apiUrl = "https://resimi.xyz/api/v2.php";
$apiKey = "YOUR_API_KEY";

function smmApi(string $url, string $key, array $params): array {
    $params['key'] = $key;
    $ch = curl_init($url);
    curl_setopt_array($ch, [
        CURLOPT_RETURNTRANSFER => true,
        CURLOPT_POST => true,
        CURLOPT_POSTFIELDS => http_build_query($params),
        CURLOPT_TIMEOUT => 30,
    ]);
    $response = curl_exec($ch);
    curl_close($ch);
    return json_decode($response, true) ?? [];
}

// Get services
$services = smmApi($apiUrl, $apiKey, ['action' => 'services']);

// Place an order
$order = smmApi($apiUrl, $apiKey, [
    'action' => 'add',
    'service' => 1234,
    'link' => 'https://instagram.com/yourprofile',
    'quantity' => 1000,
]);
echo "Order ID: " . ($order['order'] ?? 'Error: ' . $order['error']);

// Check balance
$balance = smmApi($apiUrl, $apiKey, ['action' => 'balance']);
echo "Balance: $" . $balance['balance'];
import requests

API_URL = "https://resimi.xyz/api/v2.php"
API_KEY = "YOUR_API_KEY"

def smm_api(params: dict) -> dict:
    params["key"] = API_KEY
    response = requests.post(API_URL, data=params, timeout=30)
    return response.json()

# Get services
services = smm_api({"action": "services"})
for svc in services[:3]:
    print(f"[{svc['service']}] {svc['name']} - ${svc['rate']}/1K")

# Place an order
order = smm_api({
    "action": "add",
    "service": 1234,
    "link": "https://instagram.com/yourprofile",
    "quantity": 1000,
})
print(f"Order ID: {order.get('order', 'Error: ' + order.get('error', ''))}")

# Check status
status = smm_api({"action": "status", "order": order.get("order")})
print(f"Status: {status.get('status')} | Remains: {status.get('remains')}")

# Check balance
balance = smm_api({"action": "balance"})
print(f"Balance: ${balance['balance']}")
const API_URL = "https://resimi.xyz/api/v2.php";
const API_KEY = "YOUR_API_KEY";

async function smmApi(params) {
    const body = new URLSearchParams({ key: API_KEY, ...params });
    const res = await fetch(API_URL, { method: "POST", body });
    return res.json();
}

// Get services
const services = await smmApi({ action: "services" });
console.log(`Found ${services.length} services`);

// Place an order
const order = await smmApi({
    action: "add",
    service: 1234,
    link: "https://instagram.com/yourprofile",
    quantity: 1000,
});
console.log("Order ID:", order.order ?? "Error: " + order.error);

// Check status
const status = await smmApi({ action: "status", order: order.order });
console.log("Status:", status.status, "| Remains:", status.remains);

// Cancel an order
const cancel = await smmApi({ action: "cancel", order: order.order });
console.log("Refunded:", cancel.refunded);

// Check balance
const balance = await smmApi({ action: "balance" });
console.log("Balance: $" + balance.balance);
# Get services
curl -X GET "https://resimi.xyz/api/v2.php?key=YOUR_API_KEY&action=services"

# Place an order
curl -X POST "https://resimi.xyz/api/v2.php" \
  -d "key=YOUR_API_KEY" \
  -d "action=add" \
  -d "service=1234" \
  -d "link=https://instagram.com/yourprofile" \
  -d "quantity=1000"

# Place a drip-feed order (1000 followers over 7 days)
curl -X POST "https://resimi.xyz/api/v2.php" \
  -d "key=YOUR_API_KEY" \
  -d "action=add" \
  -d "service=1234" \
  -d "link=https://instagram.com/yourprofile" \
  -d "quantity=1000" \
  -d "runs=7" \
  -d "interval=1440"

# Check order status
curl -X GET "https://resimi.xyz/api/v2.php?key=YOUR_API_KEY&action=status&order=98765"

# Cancel an order
curl -X POST "https://resimi.xyz/api/v2.php" \
  -d "key=YOUR_API_KEY" \
  -d "action=cancel" \
  -d "order=98765"

# Check balance
curl -X GET "https://resimi.xyz/api/v2.php?key=YOUR_API_KEY&action=balance"
How can we help?