Skip to content

Targeting

Targeting narrows the set of exits eligible for a request. Start with the broadest constraint that satisfies the use case, then add detail only when the result must be more specific.

TargetTokenExample
Countrycountry-{iso2}country-us
Regionregion-{slug}region-texas
Citycity-{slug}city-houston
ASNasn-{number}asn-7018
ISPisp-{slug}isp-provider-name

Use lowercase values and hyphens for spaces. Country values use a two-letter ISO code. Available regions, cities, ASNs, and ISPs depend on the package and current provider catalog.

package-elite-country-us-region-texas-city-houston-asn-7018
  1. Retrieve the package or order used for the connection.
  2. Read available location and network options for that package through the API.
  3. Choose the minimum set of constraints required by the product promise.
  4. Normalize human labels to the exact slug or identifier returned by the catalog.
  5. Cache catalog results and refresh on a package change or cache miss.
RequirementSuggested targetingAvailability impact
Any exitNo location token or country-any when supportedLowest
Country complianceCountryLow
Localized contentCountry + region or cityMedium
Network-specific validationCountry + ASN or ISPMedium to high
Exact local networkCountry + region + city + ASN/ISPHighest

Place sid and ttl after targeting tokens:

package-elite-country-us-city-houston-sid-cart-42-ttl-1800

Changing the targeting while reusing the same session ID creates a different routing request. Keep both stable when continuity matters.

SAFE SANDBOX

Compose a proxy request

PLACEHOLDERS ONLY
cURL
curl --proxy http://package-elite-country-us:[email protected]:8000 https://api.ipify.org?format=json

Keep credentials server-side.Never embed a proxy password in frontend code or a public repository.

For API-driven catalog discovery, see catalog and proxy generation.