GET
/payment-linksAutenticadoListar links de pagamento
Lista os links de pagamento da conta (Pix e/ou boleto) com URL pública e vencimento.
https://gateway.credito-direto.com/api/payment-links
cURL
cURL
curl --request GET \
--url 'https://gateway.credito-direto.com/api/payment-links' \
--header 'accept: application/json' \
--header 'authorization: Bearer TOKEN'Exemplo de resposta
Response JSON
{
"items": [
{
"id": "lnk_01",
"status": "waiting_payment",
"payment_methods": ["pix", "boleto"],
"amount": 8900,
"name": "Taxa de adesão",
"description": "Adesão plano anual",
"link": "https://pay.example/lnk_01",
"expires_at": "2026-09-30T23:59:59.000Z",
"created_at": "2026-08-21T10:00:00.000Z"
}
]
}