DocumentationAPI DetailsAvailable Countries

Available Countries

Retrieve a list of all countries currently available for proxy geotargeting. The response includes country names and their corresponding ISO 3166-1 alpha-3 codes (e.g., USA, GBR, AUS) that can be used as the proxyCountry parameter in scrape requests.

When To Use This

  • Before geotargeting - Check which countries are available before configuring your scrape requests with proxyCountry.
  • Dynamic proxy selection - Build integrations that programmatically select a proxy country from the available list rather than hardcoding values.
  • Data center vs. residential comparison - Verify that your desired country is supported by your chosen proxy type. Residential proxies typically support more countries than data center proxies.

OpenAPI Specification

https://api.scrapi.tech/scalar/v1#tag/country/get/v1countries

Endpoint

GET https://api.scrapi.tech/v1/countries

JSON Response

The response is an array of country objects, each with a display name and an ISO 3166-1 alpha-3 key for use in the proxyCountry parameter:

[
  {
    "name": "United Kingdom",
    "key": "GBR"
  },
  {
    "name": "United States",
    "key": "USA"
  },
  {
    "name": "South Africa",
    "key": "ZAF"
  },
  ...
]
  • Geotargeting - Use country codes from this endpoint to route requests through specific geographic locations.
  • Available Cities - Get city-level options within a specific country for finer geolocation.
  • Residential Proxy - Widest country selection available.
  • Data Center Proxy - Fewer countries but lower credit cost.