Developer Resources

API Documentation

Integrate our services directly into your applications with our powerful and easy-to-use API.

Table of Contents

Introduction

Welcome to the SevoraSMM API documentation. Our API allows you to programmatically access our services, place orders, and manage your account.

POSThttps://sevorasmm.com/api/v2

Authentication

All API requests require your unique API Key. You can find your API Key in your Settings page.

Request Parameters
ParameterDescription
keyYour API Key
actionThe action to perform (e.g., services, add, status)

Service List

Get a list of all available services.

key=YOUR_API_KEY&action=services
Response Example (JSON)
[
    {
        "service": 1,
        "name": "Instagram Followers [Real] [Instant]",
        "category": "Instagram - Followers",
        "rate": "1.20",
        "min": 100,
        "max": 10000
    },
    {
        "service": 2,
        "name": "YouTube Views [Non-Drop]",
        "category": "YouTube - Views",
        "rate": "2.50",
        "min": 500,
        "max": 100000
    }
]

Add Order

Place a new order.

Request Parameters
ParameterDescription
keyYour API Key
actionSet to add
serviceService ID
linkLink to page/post
quantityNeeded quantity
Response Example
{
    "order": 23501
}

Order Status

Get status of an order.

Request Parameters
ParameterDescription
keyYour API Key
actionSet to status
orderOrder ID
api_docs.order_status.response_example
{
    "charge": "0.27819",
    "start_count": "3572",
    "status": "Partial",
    "remains": "157",
    "currency": "USD"
}

User Balance

Get current user balance.

key=YOUR_API_KEY&action=balance
Response Example (JSON)
{
    "balance": "100.84",
    "currency": "USD"
}