For the complete documentation index, see llms.txt. This page is also available as Markdown.

Free Datacenter IPs

Free datacenter IPs provide an opportunity to easily test Oxylabs proxies. However, for full product functionality and flexibility consider migrating to paid plans.

Integrating the free Datacenter IPs follows the same process as our standard Datacenter Proxies.

After registering on our platform, navigate to your dashboard and create a proxy user. This step activates your free plan for 1 month.

After you create a proxy user, you will be prompted to a pop up with your first test request to receive a random IP. Copy it and change the USERNAME and PASSWORD parameters to your proxy credentials:

curl -x dc.oxylabs.io:8000 -U "user-USERNAME:PASSWORD" https://ip.oxylabs.io/location

Find more code examples in other code languages below:

curl -x dc.oxylabs.io:8000 -U "user-USERNAME:PASSWORD" https://ip.oxylabs.io/location 
#pip install requests
import requests

username = 'USERNAME'
password = 'PASSWORD'
proxy = 'dc.oxylabs.io:8000'

proxies = {
   "https": ('https://user-%s:%s@%s' % (username, password, proxy))
}

response=requests.get("https://ip.oxylabs.io/location", proxies=proxies)

print(response.content)
//npm install axios
const axios = require("axios");
const https = require("https");

const client = axios.create({
    httpsAgent: new https.Agent({
        rejectUnauthorized: false,
    }),
});
const username = 'USERNAME';
const password = 'PASSWORD'

client
    .get("https://ip.oxylabs.io/location", {
        proxy: {
            protocol: "https",
            host: "dc.oxylabs.io",
            port: 8000,
            auth: {
                username: `user-${username}`,
                password: password,
            },
        },
    })
    .then((res) => {
        console.log(res.data);
    })
    .catch((err) => console.error(err));

Important Notes

No Location Specification Needed

Free IPs are automatically assigned and offer limited geographic options. All 5 IPs are located within the United States. Location selection is not available, so you don’t need to include specific location parameters in your requests.

Authentication Methods

You can authenticate using either username and password or IP whitelisting. Regardless of the method you choose, the fair usage policy applies.

Fair usage policy

To ensure the stability of our services and prevent potential traffic abuse, we have implemented the following limitations for the free Datacenter IPs:

  • Traffic Limit: The free plan includes a collective limit of 5 GB of traffic per user across all 5 IPs for 1 month from activation. This allowance does not renew.

  • Concurrent Sessions: You are limited to 20 concurrent threads (sessions) per user to ensure stable service and prevent abuse.

  • Fixed IPs: The free Datacenter IPs are fixed and cannot be replaced or refreshed. If you require new or different IPs, consider upgrading to a paid plan.

Last updated

Was this helpful?