v2
latestOpenAPI 3.1.02026-07-314524165.2 KBListar links de pagamento
Lista apenas links de pagamento (checkouts com frequency MULTIPLE_PAYMENTS).
get/payment-links/list
Query parameters
afterstring
Cursor para buscar itens após este ponto
beforestring
Cursor para buscar itens antes deste ponto
limitinteger
Example:100
Quantidade de itens por página (1-100)
idstring
Example:bill_abc123xyz
Filtrar por identificador único do link de pagamento
externalIdstring
Example:pedido-123
Filtrar por identificador do link no seu sistema
status'PENDING' | 'EXPIRED' | 'CANCELLED' | 'PAID' | 'REFUNDED'
Filtrar por status do link de pagamento
Response
Links de pagamento listados com sucesso.
Example response
{
"data": [
{
"id": "bill_abc123xyz",
"externalId": "pedido-123",
"url": "https://app.abacatepay.com/pay/bill_abc123xyz",
"amount": 10000,
"items": [
{
"id": "prod_456",
"quantity": 2
}
],
"status": "PENDING",
"coupons": [],
"upSellProductId": "prod_bump456xyz",
"installmentsCount": 3,
"dueDate": "2026-08-15",
"interest": {
"value": 100
},
"fine": {
"value": 200,
"type": "PERCENTAGE"
},
"metadata": {},
"createdAt": "2024-11-04T18:38:28.573Z",
"updatedAt": "2024-11-04T18:38:28.573Z"
}
],
"success": true
}