> ## 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 negativações

> undefined

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

<ResponseExample>
  ```json Success theme={null}
  {
    "success": true,
    "message": "Negativações listadas",
    "data": {
      "object": "list",
      "hasMore": false,
      "totalCount": 1,
      "limit": 10,
      "offset": 0,
      "data": [{
      "id": "ce35702d-0d9f-475a-ba46-e251ad265c91",
      "status": "PENDING",
      "type": "CREDIT_BUREAU",
      "payment": "clx_billing",
      "customerName": "João da Silva",
      "customerCpfCnpj": "12345678909",
      "dateCreated": "2026-05-31T10:00:00.000Z"
    }]
    },
    "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>

<ParamField query="status" type="string">
  Status da negativação.
</ParamField>

<ParamField query="type" type="string">
  Tipo (ex.: CREDIT\_BUREAU).
</ParamField>

<ParamField query="payment" type="string">
  ID da cobrança vinculada.
</ParamField>
