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

# Device-type targeting

> You can target different device types to execute the request on.

| Key  | Value                                                                    |
| ---- | ------------------------------------------------------------------------ |
| type | The type of device to target. Possible values: `mobile`, `common`, `tv`. |

**Supported Devices**

* `mobile` to execute request on mobile devices.

* `common` to execute request on any non-mobile device.

* `tv` to execute request on tv devices.

Example using query parameters:

```bash theme={null}
curl -x https://network.joinmassive.com:65535 \
     -U '{PROXY_USERNAME}-type-mobile-country-US:{API_KEY}' \
     https://cloudflare.com/cdn-cgi/trace
```

This parameter can be used in combination with all other options. The following request targets a mobile IP in New York State and assigns it a persistent session:

```bash theme={null}
curl -x https://network.joinmassive.com:65535 \
     -U '{PROXY_USERNAME}-type-mobile-country-US-subdivision-NY-session-1:{API_KEY}' \
     https://cloudflare.com/cdn-cgi/trace
```
