# cURL Request Parameters

Below is a list of parameters, followed by examples of request types:

<table><thead><tr><th width="201">Parameter</th><th>Description</th></tr></thead><tbody><tr><td>USERNAME</td><td>Username of proxy user.</td></tr><tr><td>mob</td><td>Indicates query for mobile proxy.</td></tr><tr><td>country</td><td>Country code in two-letter format, not case sensitive. For example, nl indicates a proxy in the Netherlands; za for South Africa; it for Italy.</td></tr><tr><td>SID</td><td>Session ID keeps the same IP for next queries. Otherwise, a new IP is assigned for each new request. The same IP address is used until the end user device disconnects. SID supports any number up to 9 digits. The lowest SID can be sid-10000, and the highest SID can be sid-999999999.</td></tr><tr><td>PASSWORD</td><td>Proxy user password.</td></tr><tr><td>site URL</td><td>User's destination site.</td></tr></tbody></table>

&#x20;

A basic query inserting only USERNAME and PASSWORD will be performed from a random mobile IP address:

{% code overflow="wrap" %}

```bash
curl-x USERNAME-mob-any:PASSWORD@gw.netnut.net:5959 "https://example.site.com"
```

{% endcode %}

Request a specific country:

{% code overflow="wrap" %}

```bash
curl-x  USERNAME-mob-nl:PASSWORD@gw.netnut.net:5959 "https://example.site.com"
```

{% endcode %}

Add the **SID** (session ID) parameter to use the same IP for next queries. Note that SID must be preceded by a country:

{% code overflow="wrap" %}

```bash
curl-x "USERNAME-mob-any-sid-947045456:PASSWORD@gw.netnut.net:5959" https://example.site.com
```

{% endcode %}

***
