> For the complete documentation index, see [llms.txt](https://docs.sms4sats.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sms4sats.com/api-reference/get-services.md).

# Get Available Services

<mark style="color:blue;">`GET`</mark> `https://api2.sms4sats.com/getnumbersstatus`

Returns a list of services for which SMS activation numbers are currently available in the given country, along with the count of available numbers.

#### Query Parameters

| Name      | Type   | Required | Description                                                                              |
| --------- | ------ | -------- | ---------------------------------------------------------------------------------------- |
| `country` | Number | Yes      | Country code (e.g. `187` for USA). See [Get Countries](/api-reference/get-countries.md). |

{% tabs %}
{% tab title="200: OK" %}
{% code overflow="wrap" %}

```javascript
[
    {
        "key": "vk",
        "text": "vk.com",
        "value": "vk",
        "count": "28",
        "image": {
            "avatar": true,
            "src": "/assets/saimages/vk0.png"
        }
    },
    ...
]
```

{% endcode %}
{% endtab %}
{% endtabs %}

### Response Fields

| Field   | Type   | Description                                                                           |
| ------- | ------ | ------------------------------------------------------------------------------------- |
| `key`   | String | Service identifier                                                                    |
| `text`  | String | Human-readable service name                                                           |
| `value` | String | Service code to use in [Create Receive Order](/api-reference/create-receive-order.md) |
| `count` | String | Number of currently available numbers                                                 |

{% hint style="info" %}
Use the `value` field from this response as the `service` parameter when calling [Create Receive Order](/api-reference/create-receive-order.md).
{% endhint %}
