> For the complete documentation index, see [llms.txt](https://docs.dataimpulse.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.dataimpulse.com/dataimpulse-documentation-es/proxies/protocolos.md).

# Protocolos

### HTTP/ HTTPS

Un ejemplo del proxy rotativo HTTP:

```
curl -x "http://login:password@gw.dataimpulse.com:823" https://api.ipify.org/
```

Un ejemplo del proxy HTTP sticky:

```
curl -x "http://login:password@gw.dataimpulse.com:10000" https://api.ipify.org/
```

{% hint style="info" %}
Para conexiones persistentes (sticky), puedes usar puertos del 10000 al 20000
{% endhint %}

### SOCKS5

Un ejemplo del proxy rotativo SOCKS5:

```
curl -x "socks5://login:password@gw.dataimpulse.com:824" https://api.ipify.org/
```

Un ejemplo del proxy SOCKS5 sticky:

```
curl -x "socks5://login:password@gw.dataimpulse.com:10000" https://api.ipify.org/
```

Artículo del blog sobre cómo elegir el mejor protocolo de proxy:

[Elegir entre proxies HTTP y SOCKS: cómo tomar la decisión correcta](https://dataimpulse.com/blog/choosing-between-http-and-socks-proxies-how-to-make-the-right-decision/)


---

# 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:

```
GET https://docs.dataimpulse.com/dataimpulse-documentation-es/proxies/protocolos.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
