Your API Key

Request Example

API Information

HTTP MethodPOST
API URLhttps://smmmaria-backend-production.up.railway.app/api/v1
API KeyGet your API key from the card above.
Response formatJSON

Service list

Parameters

ParametersDescription
keyYour API key
actionservices

Example response

[
    {
        "service": 1,
        "name": "Followers",
        "type": "default",
        "category": "Instagram",
        "rate": "0.90",
        "min": "50",
        "max": "10000",
        "refill": true
    },
    {
        "service": 2,
        "name": "Comments",
        "type": "custom_comments",
        "category": "Instagram",
        "rate": "2.50",
        "min": "10",
        "max": "1500",
        "refill": false
    }
]

Add order

Parameters

ParametersDescription
keyYour API key
actionadd
serviceService ID
linkLink to page
quantityNeeded quantity
runs(optional) Runs to deliver
interval(optional) Interval in minutes

Example response

{
    "order": 23501
}

Order status

Parameters

ParametersDescription
keyYour API key
actionstatus
orderOrder ID

Example response

{
    "charge": "0.0900",
    "start_count": "1000",
    "status": "Completed",
    "remains": "0",
    "currency": "USD"
}

User balance

Parameters

ParametersDescription
keyYour API key
actionbalance

Example response

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

Create refill

Parameters

ParametersDescription
keyYour API key
actionrefill
orderOrder ID

Example response

{
    "refill": "1"
}

Refill status

Parameters

ParametersDescription
keyYour API key
actionrefill_status
refillRefill ID

Example response

{
    "status": "Completed"
}