> ## Documentation Index
> Fetch the complete documentation index at: https://docs.goatpay.com.br/llms.txt
> Use this file to discover all available pages before exploring further.

# Listar recargas de celular

> Lista recargas de celular com paginação offset/limit.

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET 'https://api.goatpay.com.br/v1/mobile-recharge/list?offset=0&limit=10' \
    -H 'X-API-Key: gp_live_SUA_CHAVE'
  ```
</RequestExample>

<ResponseExample>
  ```json Success theme={null}
  {
    "success": true,
    "message": "Recargas listadas",
    "data": {
      "object": "list",
      "hasMore": false,
      "totalCount": 1,
      "limit": 10,
      "offset": 0,
      "data": [{
      "id": "rec_abc123",
      "value": 20,
      "phoneNumber": "11999999999",
      "status": "PENDING",
      "operatorName": "Vivo",
      "canBeCancelled": true
    }]
    },
    "requestId": "req_abc"
  }
  ```
</ResponseExample>

### Parâmetros de query

<ParamField query="offset" type="number">
  Índice inicial (padrão 0).
</ParamField>

<ParamField query="limit" type="number">
  Itens por página (máx. 100).
</ParamField>
