# Mobile Proxy

Source: https://docs.scrappey.com/docs/mobile-proxy

> Route your requests through real mobile carrier IPs to help satisfy strict anti-bot measures on websites that heavily track IP reputation and device behavior.

## Command

`"mobileProxy"`

## Parameters

| Parameter | Type | Required | Description |
| -------------- | ------- | -------- | ------------------------------------------------------------------- |
| `mobileProxy` | boolean | Yes | Set to `true` to use a mobile proxy. |
| `proxyCountry` | string | No | Country to route the mobile proxy through (e.g., `"UnitedStates"`). |

> **Tip**: View all available countries in the [Scrappey Builder](https://app.scrappey.com/#/builder) under **Advanced Options → Custom Proxy Country**.

## Example

```bash
curl -X POST "https://publisher.scrappey.com/api/v1?key=YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "cmd": "request.get",
    "url": "https://example.com",
    "mobileProxy": true,
    "proxyCountry": "UnitedStates"
  }'
```

## Notes

Best suited for:

* Accessing websites with aggressive anti-bot protection (e.g., ticketing, sneaker sites, streaming).
* Avoiding rate limits and CAPTCHAs.
* Mimicking real user traffic from mobile networks.

Use `mobileProxy` when authenticity and access success are more important than speed or cost. Cost is 7 credits per request.

## Related concepts

Go deeper in the [Scrappey knowledge base](https://scrappey.com/qa):

- [What is a mobile proxy?](https://scrappey.com/qa/proxies/what-is-a-mobile-proxy) — what it is and when to use it
- [Residential proxy](https://scrappey.com/qa/proxies/what-is-a-residential-proxy) — the closest alternative
- [Proxy web scraping](https://scrappey.com/qa/proxies/what-is-proxy-web-scraping) — how proxies route your requests
- [ISP proxy](https://scrappey.com/qa/proxies/what-is-an-isp-proxy) — another high-trust option
