# Regional Geo Targeting > Source: https://scrape.do/documentation/proxies/regional-geo-code/ Target regions instead of countries It may be more efficient for you to scrape some websites by region. For example, scraping an e-commerce site serving in the European Union using any one of more than one European country can always help to keep your success rate higher. You can access regionally with the `regionalGeoCode=europe` parameter. > [!NOTE] > This feature can only be used with **Super Proxy**! ## Supported Regions | **Available Regions** | Region Code | | :-------------------- | :------------------------ | | Europe | europe | | Asia | asia | | Africa | africa | | Oceania | oceania | | North America | northamerica | | South America | southamerica    | ## Example **cURL (API mode)** ```bash curl --location 'http://api.scrape.do/?url=https%3A%2F%2Fhttpbin.co%2Fanything&token=YOUR_TOKEN&super=true®ionalGeoCode=europe' ``` **Python (API mode)** ```python import requests import json import urllib.parse token = "YOUR_TOKEN" params = { "token": token, "url": "https://httpbin.org/anything", "super": True, "regionalGeoCode": "europe", } data = None url = f"http://api.scrape.do/?{urllib.parse.urlencode(params)}" method = "GET" headers = {} response = requests.request(method, url, headers=headers, data=data) print(f"Response status: {response.status_code}") print(response.text) ```