v2
latestOpenAPI 3.1.02026-07-314524165.2 KBListar Checkouts
Retorna todos os Checkouts que você criou.
Você pode usar essa rota para listar todos seus Checkouts e visualizar seus status, valores e informações relacionadas.
get/checkouts/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 Checkout
externalIdstring
Example:pedido-123
Filtrar por identificador do Checkout no seu sistema
status'PENDING' | 'EXPIRED' | 'CANCELLED' | 'PAID' | 'REFUNDED'
Filtrar por status do Checkout
emailstring
Example:daniel_lima@abacatepay.com
Filtrar por e-mail do cliente associado
taxIdstring
Example:123.456.789-01
Filtrar por CPF ou CNPJ do cliente associado
Response
Checkouts 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
}