CREST SMM

API

طريقة HTTPPOST
نقطة الوصول https://crestsmm.org/api/v2
صيغة الاستجابةJSON

Service list

المعامل الوصف
key Your API key
action services

مثال على الاستجابة

[
  {
    "service": 1,
    "name": "Followers",
    "type": "Default",
    "category": "First Category",
    "rate": "0.90",
    "min": "50",
    "max": "10000",
    "refill": true,
    "cancel": true
  }
]

Add order

المعامل الوصف
key Your API key
action add
service Service ID
link URL to the page
quantity Needed quantity
runs اختياري Number of runs
interval اختياري Interval in minutes between runs

مثال على الاستجابة

{"order": 23501}

Order status

المعامل الوصف
key Your API key
action status
order Order ID

مثال على الاستجابة

{
  "charge": "0.27819",
  "start_count": "3572",
  "status": "Partial",
  "remains": "157",
  "currency": "USD"
}

Multiple order status

المعامل الوصف
key Your API key
action status
orders Order IDs separated by comma (max 100)

مثال على الاستجابة

{
  "1": {"charge": "0.27819", "start_count": "3572", "status": "Partial", "remains": "157", "currency": "USD"},
  "2": {"error": "Incorrect order ID"}
}

Create refill

المعامل الوصف
key Your API key
action refill
order Order ID

مثال على الاستجابة

{"refill": "1"}

Create multiple refill

المعامل الوصف
key Your API key
action refill
orders Order IDs separated by comma (max 100)

مثال على الاستجابة

[{"order": "1", "refill": "1"}, {"order": "2", "refill": "2"}]

Get refill status

المعامل الوصف
key Your API key
action refill_status
refill Refill ID

مثال على الاستجابة

{"status": "Completed"}

Get multiple refill status

المعامل الوصف
key Your API key
action refill_status
refills Refill IDs separated by comma (max 100)

مثال على الاستجابة

{
  "1": {"status": "Completed"},
  "2": {"status": "Pending"},
  "3": {"error": "Incorrect refill ID"}
}

Create cancel

المعامل الوصف
key Your API key
action cancel
orders Order IDs separated by comma (max 100)
order اختياري Single order ID (alias for orders — accepted for compatibility)

مثال على الاستجابة

[{"order": 9, "cancel": 1}]

User balance

المعامل الوصف
key Your API key
action balance

مثال على الاستجابة

{
  "balance": "100.84292",
  "currency": "USD"
}
CRESTSMMAdd to your home screen