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

Rhagymadrodd

Mae'r API Resimi yn caniatáu ichi integreiddio ein gwasanaethau SMM i'ch panel, ap neu lif gwaith eich hun. Mae pob cais yn dychwelyd JSON. Mae'r API yn gydnaws â'r fformat API panel SMM safonol a ddefnyddir gan JAP, SMMKings, Peakerr ac eraill - gan ei gwneud hi'n hawdd newid neu integreiddio.

URL sylfaen: https://resimi.xyz/api/v2.php

Mae pob pwynt terfyn yn derbyn ceisiadau GET a POST. Defnyddiwch POST ar gyfer archebion a chansladau, GET ar gyfer ymholiadau darllen yn unig.

Dilysu

Rhaid i bob cais gynnwys eich allwedd API fel y paramedr key.

Mae eich allwedd API yn Gosodiadau Cyfrif → API Access. Cadwch ef yn gyfrinachol - mae ganddo fynediad llawn i'ch cyfrif a'ch balans.
GET https://resimi.xyz/api/v2.php?key=YOUR_API_KEY&action=balance

Gwallau

Mae pob gwall yn dychwelyd gwrthrych JSON gydag allwedd error:

{"error": "Insufficient balance. Please add funds."}
Neges gwallYstyr geiriau:
Allwedd API annilysMae'r allwedd yn anghywir neu mae'r cyfrif wedi'i atal
Cydbwysedd annigonolYchwanegu arian cyn gosod archebion
Gwasanaeth heb ei ganfod neu'n anactifMae ID gwasanaeth yn anghywir neu mae'r gwasanaeth wedi'i analluogi
Rhaid i'r swm fod rhwng X ac YNifer y tu allan i'r ystod a ganiateir ar gyfer y gwasanaeth hwn
Ni ddaethpwyd o hyd i'r archebNid yw ID yr archeb yn bodoli neu mae'n perthyn i ddefnyddiwr arall
Ni ellir canslo archebMae'r archeb eisoes wedi'i chwblhau neu wedi'i chanslo

Cael Gwasanaethau

Yn dychwelyd y rhestr lawn o wasanaethau gweithredol gyda chyfraddau a therfynau.

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

Paramedrau

ParamedrMathDisgrifiad
key requiredstringEich allwedd API
action requiredstringRhaid bod yn gwasanaethau

Ymateb

[
  {
    "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
  },
  ...
]

Trefn Lle

Yn gosod archeb newydd. Mae balans yn cael ei dynnu ar unwaith. Yn dychwelyd ID yr archeb.

POST https://resimi.xyz/api/v2.php
ParamedrMathDisgrifiad
key requiredstringEich allwedd API
action requiredstringRhaid bod yn add
service requiredintegerID gwasanaeth o'r rhestr gwasanaethau
link requiredstringURL y proffil targed neu'r post
quantity requiredintegerCyfanswm y swm i'w gyflwyno
runs optionalintegerNifer y rhediadau porthiant diferu (diofyn: 1)
interval optionalintegerMunudau rhwng rhediadau porthiant diferu (diofyn: 0)
comments optionalstringSylwadau personol (ar gyfer gwasanaethau sylwadau), un fesul llinell

Ymateb—Llwyddiant

{"order": 98765}

Ymateb - Gwall

{"error": "Insufficient balance. Please add funds."}
Drip-porthiant: Set runs = nifer y sypiau a cyfwng = munudau rhwng pob un. Enghraifft — 1,000 o ddilynwyr dros 7 diwrnod: swm=1000&rhedeg=7&cyfwng=1440

Statws Archeb

Gwiriwch statws cyfredol archeb.

GET https://resimi.xyz/api/v2.php?key=YOUR_API_KEY&action=status&order=ORDER_ID
ParamedrMathDisgrifiad
key requiredstringEich allwedd API
action requiredstringRhaid bod yn statws
order requiredintegerDychwelwyd rhif adnabod archeb o <code>add</code>

Ymateb

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

Gwerthoedd statws

StatwsYstyr geiriau:
PendingAros i gael ei anfon at y darparwr
ProcessingAnfon at y darparwr, ciwio
In_progressCyflwyno ar y gweill
CompletedWedi'i gyflwyno'n llawn
PartialWedi'i ddosbarthu'n rhannol, yn weddill yn cael ei ad-dalu
CancelledWedi'i ganslo, yn weddill wedi'i ad-dalu

Canslo Archeb

Yn canslo archeb sydd ar y gweill neu sydd ar y gweill. Mae'r rhan sydd heb ei dosbarthu yn cael ei had-dalu i'ch balans.

POST https://resimi.xyz/api/v2.php
ParamedrMathDisgrifiad
key requiredstringEich allwedd API
action requiredstringRhaid bod canslo
order requiredintegerID archeb i ganslo

Ymateb—Llwyddiant

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

Gwirio Balans

Yn dychwelyd balans cyfredol y cyfrif sy'n gysylltiedig â'r allwedd API.

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

Ymateb

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

Enghreifftiau Cod

<?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?