> For the complete documentation index, see [llms.txt](https://developers.oxylabs.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.oxylabs.io/products/es/proxies/dedicated-datacenter-proxies/enterprise.md).

# Enterprise

{% hint style="info" %}
La documentación de Enterprise está destinada a Dedicated Datacenter Proxies adquiridos a través de nuestro equipo de ventas.&#x20;
{% endhint %}

Antes de comenzar, asegúrese de haber recibido un nombre de usuario, una contraseña y todas las URLs que enlazan a su lista de IP de un representante de ventas, un gerente de cuenta dedicado o el equipo de soporte.

Hay dos formas de acceder a su lista de IP. Puede acceder a la lista de IP directamente desde su navegador abriendo la URL que recibió (por ejemplo, `https://proxy.oxylabs.io/all`). A continuación, se le pedirá que introduzca sus credenciales de inicio de sesión (Autenticación Básica HTTP).

O puede recuperar la lista haciendo una solicitud GET a la URL que recibió (por ejemplo, `https://proxy.oxylabs.io/all`). No olvide reemplazar `USERNAME` y `PASSWORD` con sus credenciales de usuario de proxy.

```shell
curl -u "USERNAME:PASSWORD" https://proxy.oxylabs.io/all
```

Para hacer una solicitud usando un proxy, debe elegir una dirección IP de la lista obtenida y especificarla en los parámetros de la solicitud. Puede ver un ejemplo en cURL a continuación. Puede encontrar más ejemplos de código en otros idiomas [**aquí**](/products/es/proxies/dedicated-datacenter-proxies/enterprise/making-requests.md) o consultar ejemplos completos de código en nuestro [**GitHub**](https://github.com/oxylabs/product-integrations/tree/master/datacenter-proxies).

```shell
curl -x 1.2.3.4:60000 -U "USERNAME:PASSWORD" http://ip.oxylabs.io/location
```

Si hay alguna pregunta que no hayamos cubierto en esta documentación, póngase en contacto con su gerente de cuenta dedicado o con nuestro soporte en [**support@oxylabs.io**](mailto:support@oxylabs.io).


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://developers.oxylabs.io/products/es/proxies/dedicated-datacenter-proxies/enterprise.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
