> ## Documentation Index
> Fetch the complete documentation index at: https://docs.telewing247.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Place SMM order

> Place a new SMM order

Places an SMM order for social media engagement. The API price is deducted from your wallet.

## Endpoint

```http theme={null}
POST /smm/order
```

## Body parameters

| Parameter    | Type    | Required | Description                                                                    |
| ------------ | ------- | -------- | ------------------------------------------------------------------------------ |
| `service_id` | integer | Yes      | The SMM service ID (from [Get SMM services](/api-reference/smm/get-services)). |
| `quantity`   | integer | Yes      | The quantity to order (e.g. followers, likes).                                 |
| `link`       | string  | Yes      | The target social media URL.                                                   |

## Example request

<CodeGroup>
  ```bash cURL theme={null}
  curl -X POST https://api.telewing247.com/api/api/v1/public/smm/order \
    -H "Accept: application/json" \
    -H "Content-Type: application/json" \
    -H "Authorization: Bearer ak_YOUR_API_KEY_HERE" \
    -d '{
      "service_id": 105,
      "quantity": 1000,
      "link": "https://instagram.com/myaccount"
    }'
  ```

  ```javascript Node.js theme={null}
  const response = await fetch(
    "https://api.telewing247.com/api/api/v1/public/smm/order",
    {
      method: "POST",
      headers: {
        Accept: "application/json",
        "Content-Type": "application/json",
        Authorization: "Bearer ak_YOUR_API_KEY_HERE",
      },
      body: JSON.stringify({
        service_id: 105,
        quantity: 1000,
        link: "https://instagram.com/myaccount",
      }),
    }
  );
  const data = await response.json();
  ```
</CodeGroup>
