# Estatísticas de uso

Você pode verificar suas estatísticas de uso programaticamente. Essas solicitações são gratuitas.

Encontre suas estatísticas de uso consultando o seguinte endpoint:

```
GET https://data.oxylabs.io/v1/stats
```

{% hint style="warning" %}
Por favor, adicione WU\_\_ antes do seu nome de usuário (por exemplo, WU\_\_username) ao acessar este endpoint.
{% endhint %}

#### Exemplo de código

```url
curl --user user:pass1 'https://data.oxylabs.io/v1/stats'
```

Esta consulta retorna estatísticas de uso de todos os tempos por padrão. Você também pode agrupar os dados por diferentes critérios usando o `group_by` parâmetro de consulta, que aceita os valores `dia`, `mês`, ou `target` para segmentar os detalhes de uso de acordo. Por exemplo, para ver o uso diário, você adicionaria `?group_by=day` à sua solicitação. Observe que todo o tráfego é medido em bytes.

#### Exemplo de saída

```json
{
    "meta": {
        "group_by": null,
        "date_from": null,
        "date_to": null,
        "source": null
    },
    "data": {
        "sources": [
            {
                "results_count_all": "1482",
                "results_count": "0",
                "realtime_results_count": "0",
                "super_api_results_count": "12777",
                "render": "0",
                "geo_location": "0",
                "average_response_time": 2.18,
                "request_traffic": "6629", 
                "response_traffic": "17850",
                "title": "universal"
            }
        ]
    }
}
```


---

# Agent Instructions: 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://developers.oxylabs.io/products/pt-br/web-unblocker/usage-statistics.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.
