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

# Listar Links de Pagamento

> Lista os links de pagamento do seu lojista (paginado)

Lista os links de pagamento do **seu lojista**, do mais recente ao mais antigo. Retorna um envelope
paginado. Só traz os links da sua conta (escopado pela chave de API).

## Query

<ParamField query="per_page" type="integer">
  Itens por página (máximo 100). Padrão: 20.
</ParamField>

```bash cURL theme={null}
curl "https://pay.autorizou.dev/api/v1/payment-links?per_page=20" \
  -H "Authorization: Bearer SUA_CHAVE"
```

## Resposta

```json theme={null}
{
  "data": [
    {
      "uuid": "9b2c1f7a-3e4d-4a8b-9c1d-2f3e4a5b6c7d",
      "hash": "AUTLNK01KW2P8M4Q7K3M9QP",
      "url": "https://link.autorizou.dev/p/AUTLNK01KW2P8M4Q7K3M9QP",
      "title": "Consultoria — Plano Premium",
      "amount": 19900,
      "status": "active",
      "paid_count": 3
    }
  ],
  "links": { "first": "...", "last": "...", "prev": null, "next": "..." },
  "meta": { "current_page": 1, "per_page": 20, "total": 1 }
}
```
