> For the complete documentation index, see [llms.txt](https://padiwise.gitbook.io/padiwise/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://padiwise.gitbook.io/padiwise/value-added-services/smm.md).

# Smm Services

### Fetch All SMM Services

&#x20;<mark style="color:red;">`GET`</mark>  `{{ BASE }}/getsmmservices`

```
--header 'Accept: application/json'
--header 'Authorization: Bearer {{  access_token }}'
```

Response Body

```
{
    "status": true,
    "message": "success",
    "data": [
         {
            "service": "{{ service id }}",
            "name": "TikTok Followers [MQ] | 30 Days Refill [🔴Start Live Stream Before Order]",
            "type": "Default",
            "rate": "456.46", // in naira
            "min": "10",
            "max": "500000",
            "dripfeed": false,
            "refill": false,
            "cancel": true,
            "category": "🎵 TIKTOK FOLLOWERS"
        },
        {
            "service": "{{ service id }}",
            "name": "Youtube Subscribers 100% Real [10K] [50-70/Day - R30] [0-1H Start]",
            "type": "Default",
            "rate": "3,638.25",
            "min": "20",
            "max": "25000",
            "dripfeed": false,
            "refill": false,
            "cancel": false,
            "category": "⚜️ YOUTUBE SUBSCRIBERS  [GUARANTEED - REFILL]"
        }
    ]
}
```

### Buy SMM Service

&#x20;<mark style="color:green;">`POST`</mark>  `{{ BASE }}/buysmm`&#x20;

```
--header 'Accept: application/json'
--header 'Authorization: Bearer {{  access_token }}'
```

**Request Body**

Below are the request body parameters :tada:

| Name             | Type   | Description               |
| ---------------- | ------ | ------------------------- |
| serviceid        | String | Service ID                |
| smmlinks         | String | Link to page              |
| quantity         | number | Quantity's                |
| transaction\_pin | String | Your Padiwise account pin |

Response Body

```
{
    "status": true,
    "message": "success",
    "data": {
        'order_id' => {{ Order ID }},
        'amount' => {{ amount }},
        'service' => {{ service ID }},
        'smmlink' => {{ Page/Channel Link }},
        'reference_id' => {{ Reference ID }},
        'status' => 'processing',
    }
}
```
