TryploPay
  1. Faturas
TryploPay
  • Começe por Aqui
  • Status
  • Autenticação
    • Auth
      GET
    • Status Credencial
      GET
  • Consumidores
    • Lista Consumidores
      GET
  • Faturas
    • Cartão de Crédito
    • Lista Faturas
      GET
    • Criar Fatura
      POST
    • Atualizar Vencimento
      PATCH
    • Cancelar Fatura
      DELETE
    • Estornar Fatura
      PUT
    • Adicionar Tracking Code
      POST
  • Contestações
    • Listar Mediações
      GET
    • Listar Chargebacks
      GET
  • Webhooks
    • Exemplos de Webhooks
    • Validar Webhook Recebido
      OPTIONS
    • Reenviar Webhook
      COPY
  • BAAS
  1. Faturas

Lista Faturas

GET
https://api.tryplopay.com/invoices
💡
Escopo Necessário: invoice.read
Neste endpoint, você consulta todas as faturas, separados por paginação com limite de 100 faturas por página.
Use o parâmetro p com a numeração da página.
Use o parâmetro id com o id da fatura para obter os detalhes.
Use o parâmetro status para obter as faturas com base no status.
Não use este endpoint para consultar demasiadamente os status da fatura, pois irá ser bloqueado pelo nosso firewall por RATE-LIMIT
Utilize este endpoint apenas para CONTINGÊNCIA. Nos demais, utilize a notificação via Webhook para essa atualização interna.

STATUS DA FATURA#

STATUS (code)Descrição
1Aguardando Pagamento
2Em Processamento
3Pagamento Agendado
4Autorizado
5Pago
6Cancelado
7Aguardando Estorno
8Parcialmente Estornado
9Estornado
10Contestado/Em Contestação
12Pagamento Negado
15Pagamento Vencido
16Erro no Pagamento

Requisição

Authorization
Forneça seu token bearer no cabeçalho
Authorization
ao fazer requisições para recursos protegidos.
Exemplo:
Authorization: Bearer ********************
Parâmetros de Consulta

Respostas

🟢200200 - Sucesso
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.tryplopay.com/invoices?p=5&id=123&status=5' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "pages": {
        "now": 1,
        "total": "8"
    },
    "total": {
        "invoices": 25,
        "per_page": 25
    },
    "invoices": [
        {
            "id": 657275,
            "data": "2024-07-18T18:28:48.000Z",
            "referrer": "923555CD4AAE4BA79FF569CF61B61059",
            "date": "2024-07-18T18:28:48.000Z",
            "status": {
                "code": 5
            },
            "prices": {
                "total": 7.5,
                "discount": 0,
                "taxs": {
                    "others": 0,
                    "shipping": 1.5
                },
                "refund": null
            },
            "type": {
                "id": 1
            },
            "payment": {
                "date": null,
                "card": null
            }
        },
        {
            "id": 534483,
            "data": "2024-07-11T18:02:37.000Z",
            "referrer": "FE1A9D6CF8464634A61467B5A5151039",
            "date": "2024-07-11T18:02:37.000Z",
            "status": {
                "code": 15
            },
            "prices": {
                "total": 98,
                "discount": 0,
                "taxs": {
                    "others": 0,
                    "shipping": 0
                },
                "refund": null
            },
            "type": {
                "id": 3
            },
            "payment": {
                "date": null,
                "card": null
            }
        },
        {
            "id": 2682403,
            "data": "2025-11-21T16:11:10.000Z",
            "referrer": "2830376755",
            "date": "2025-11-21T16:11:10.000Z",
            "status": {
                "code": 5
            },
            "prices": {
                "total": 2,
                "discount": 0,
                "taxs": {
                    "others": 0,
                    "shipping": 0
                },
                "refund": null
            },
            "type": {
                "id": 3
            },
            "payment": {
                "date": null,
                "card": null
            }
        },
        {
            "id": 592266,
            "data": "2024-07-15T15:54:54.000Z",
            "referrer": "1FD945ED6BCC461D9D1F8316DE174327",
            "date": "2024-07-15T15:54:54.000Z",
            "status": {
                "code": 15
            },
            "prices": {
                "total": 4.5,
                "discount": 0,
                "taxs": {
                    "others": 0,
                    "shipping": 0
                },
                "refund": null
            },
            "type": {
                "id": 2
            },
            "payment": {
                "date": null,
                "card": null
            }
        },
        {
            "id": 200084,
            "data": "2024-05-14T11:04:38.000Z",
            "referrer": "A021A0453A4A45FE802540506EFEF066",
            "date": "2024-05-14T11:04:38.000Z",
            "status": {
                "code": 6
            },
            "prices": {
                "total": 1,
                "discount": 0,
                "taxs": {
                    "others": 0,
                    "shipping": 0
                },
                "refund": null
            },
            "type": {
                "id": 3
            },
            "payment": {
                "date": null,
                "card": null
            }
        },
        {
            "id": 2730428,
            "data": "2025-12-02T13:48:32.000Z",
            "referrer": "48ba11a7-c727-41d2-b349-756fd09f4a1d",
            "date": "2025-12-02T13:48:32.000Z",
            "status": {
                "code": 16
            },
            "prices": {
                "total": 0.13,
                "discount": 0,
                "taxs": {
                    "others": 0,
                    "shipping": 0
                },
                "refund": null
            },
            "type": {
                "id": 1
            },
            "payment": {
                "date": null,
                "card": null
            }
        },
        {
            "id": 2731327,
            "data": "2025-12-03T10:54:16.000Z",
            "referrer": "2836881971",
            "date": "2025-12-03T10:54:16.000Z",
            "status": {
                "code": 1
            },
            "prices": {
                "total": 12.4,
                "discount": 0,
                "taxs": {
                    "others": 0,
                    "shipping": 0
                },
                "refund": null
            },
            "type": {
                "id": 3
            },
            "payment": {
                "date": null,
                "card": null
            }
        },
        {
            "id": 657393,
            "data": "2024-07-18T18:33:13.000Z",
            "referrer": "0B374E4F6D2F4995BB8740CAECA7C70F",
            "date": "2024-07-18T18:33:13.000Z",
            "status": {
                "code": 15
            },
            "prices": {
                "total": 8.5,
                "discount": 0,
                "taxs": {
                    "others": 0,
                    "shipping": 2.5
                },
                "refund": null
            },
            "type": {
                "id": 3
            },
            "payment": {
                "date": null,
                "card": null
            }
        },
        {
            "id": 534522,
            "data": "2024-07-11T18:08:19.000Z",
            "referrer": "9FBFA1A6F58F465DB4AFD6F0C96FE7A5",
            "date": "2024-07-11T18:08:19.000Z",
            "status": {
                "code": 15
            },
            "prices": {
                "total": 98.66,
                "discount": 0,
                "taxs": {
                    "others": 0,
                    "shipping": 0
                },
                "refund": null
            },
            "type": {
                "id": 3
            },
            "payment": {
                "date": null,
                "card": null
            }
        },
        {
            "id": 2682601,
            "data": "2025-11-21T17:19:34.000Z",
            "referrer": "2830419631",
            "date": "2025-11-21T17:19:34.000Z",
            "status": {
                "code": 5
            },
            "prices": {
                "total": 2.1,
                "discount": 0,
                "taxs": {
                    "others": 0,
                    "shipping": 0
                },
                "refund": null
            },
            "type": {
                "id": 3
            },
            "payment": {
                "date": null,
                "card": null
            }
        },
        {
            "id": 592406,
            "data": "2024-07-15T16:05:28.000Z",
            "referrer": "DE78263C3007449FBF1C1052E8345463",
            "date": "2024-07-15T16:05:28.000Z",
            "status": {
                "code": 15
            },
            "prices": {
                "total": 132.86,
                "discount": 0,
                "taxs": {
                    "others": 0,
                    "shipping": 0
                },
                "refund": null
            },
            "type": {
                "id": 2
            },
            "payment": {
                "date": null,
                "card": null
            }
        },
        {
            "id": 200093,
            "data": "2024-05-14T11:10:45.000Z",
            "referrer": "AB8828ECAEB74BA088FBBC677A07967D",
            "date": "2024-05-14T11:10:45.000Z",
            "status": {
                "code": 6
            },
            "prices": {
                "total": 1,
                "discount": 0,
                "taxs": {
                    "others": 0,
                    "shipping": 0
                },
                "refund": null
            },
            "type": {
                "id": 3
            },
            "payment": {
                "date": null,
                "card": null
            }
        },
        {
            "id": 200212,
            "data": "2024-05-14T12:38:00.000Z",
            "referrer": "9ABC83FAD4384E6B87C2CEBD4B9F453C",
            "date": "2024-05-14T12:38:00.000Z",
            "status": {
                "code": 15
            },
            "prices": {
                "total": 1,
                "discount": 0,
                "taxs": {
                    "others": 0,
                    "shipping": 0
                },
                "refund": null
            },
            "type": {
                "id": 3
            },
            "payment": {
                "date": null,
                "card": null
            }
        },
        {
            "id": 657432,
            "data": "2024-07-18T18:34:30.000Z",
            "referrer": "5B3A4A27DCA64B858699D9A339F13B03",
            "date": "2024-07-18T18:34:30.000Z",
            "status": {
                "code": 15
            },
            "prices": {
                "total": 8.5,
                "discount": 0,
                "taxs": {
                    "others": 0,
                    "shipping": 2.5
                },
                "refund": null
            },
            "type": {
                "id": 3
            },
            "payment": {
                "date": null,
                "card": null
            }
        },
        {
            "id": 538300,
            "data": "2024-07-12T10:12:01.000Z",
            "referrer": "11997634954E4EB99C97A14DA7776672",
            "date": "2024-07-12T10:12:01.000Z",
            "status": {
                "code": 15
            },
            "prices": {
                "total": 98.66,
                "discount": 0,
                "taxs": {
                    "others": 0,
                    "shipping": 0
                },
                "refund": null
            },
            "type": {
                "id": 3
            },
            "payment": {
                "date": null,
                "card": null
            }
        },
        {
            "id": 2709630,
            "data": "2025-11-25T11:16:35.000Z",
            "referrer": "36f51fa9-4869-4814-8ced-33be71a68693",
            "date": "2025-11-25T11:16:35.000Z",
            "status": {
                "code": 16
            },
            "prices": {
                "total": 24.45,
                "discount": 0,
                "taxs": {
                    "others": 0,
                    "shipping": 0
                },
                "refund": null
            },
            "type": {
                "id": 1
            },
            "payment": {
                "date": null,
                "card": null
            }
        },
        {
            "id": 592692,
            "data": "2024-07-15T16:22:10.000Z",
            "referrer": "F3E520F4E95748848521F1BAD1DEA859",
            "date": "2024-07-15T16:22:10.000Z",
            "status": {
                "code": 15
            },
            "prices": {
                "total": 162,
                "discount": 0,
                "taxs": {
                    "others": 0,
                    "shipping": 0
                },
                "refund": null
            },
            "type": {
                "id": 2
            },
            "payment": {
                "date": null,
                "card": null
            }
        },
        {
            "id": 628553,
            "data": "2024-07-17T16:35:02.000Z",
            "referrer": "3022605D41924BD99F4A8600D4C8FA89",
            "date": "2024-07-17T16:35:02.000Z",
            "status": {
                "code": 15
            },
            "prices": {
                "total": 75.55,
                "discount": 0,
                "taxs": {
                    "others": 0,
                    "shipping": 55.55
                },
                "refund": null
            },
            "type": {
                "id": 2
            },
            "payment": {
                "date": null,
                "card": null
            }
        },
        {
            "id": 223697,
            "data": "2024-05-21T19:01:50.000Z",
            "referrer": "B2E977D7234A4ECD8A6DCD2DCE42C6A9",
            "date": "2024-05-21T19:01:50.000Z",
            "status": {
                "code": 5
            },
            "prices": {
                "total": 10,
                "discount": 0,
                "taxs": {
                    "others": 0,
                    "shipping": 0
                },
                "refund": null
            },
            "type": {
                "id": 3
            },
            "payment": {
                "date": null,
                "card": null
            }
        },
        {
            "id": 657661,
            "data": "2024-07-18T18:43:21.000Z",
            "referrer": "E64961753E9C4C3B82DAD118ED61D02A",
            "date": "2024-07-18T18:43:21.000Z",
            "status": {
                "code": 5
            },
            "prices": {
                "total": 5,
                "discount": 0,
                "taxs": {
                    "others": 0,
                    "shipping": 0
                },
                "refund": null
            },
            "type": {
                "id": 1
            },
            "payment": {
                "date": null,
                "card": null
            }
        },
        {
            "id": 590729,
            "data": "2024-07-15T11:04:00.000Z",
            "referrer": "0A2D2AEBF5FA42939C03354F072AB7E9",
            "date": "2024-07-15T11:04:00.000Z",
            "status": {
                "code": 6
            },
            "prices": {
                "total": 100.67,
                "discount": 0,
                "taxs": {
                    "others": 0,
                    "shipping": 0
                },
                "refund": null
            },
            "type": {
                "id": 1
            },
            "payment": {
                "date": null,
                "card": null
            }
        },
        {
            "id": 2716322,
            "data": "2025-11-26T13:29:32.000Z",
            "referrer": "6b6de0f3-9097-4300-ad0c-c6d3c6eb2d0a",
            "date": "2025-11-26T13:29:32.000Z",
            "status": {
                "code": 6
            },
            "prices": {
                "total": 12.23,
                "discount": 0,
                "taxs": {
                    "others": 0,
                    "shipping": 0
                },
                "refund": null
            },
            "type": {
                "id": 1
            },
            "payment": {
                "date": null,
                "card": null
            }
        },
        {
            "id": 643905,
            "data": "2024-07-18T10:15:32.000Z",
            "referrer": "99A77D7FE1494C459613CC4E33325EFF",
            "date": "2024-07-18T10:15:32.000Z",
            "status": {
                "code": 6
            },
            "prices": {
                "total": 16.86,
                "discount": 0,
                "taxs": {
                    "others": 0,
                    "shipping": 0
                },
                "refund": null
            },
            "type": {
                "id": 1
            },
            "payment": {
                "date": null,
                "card": null
            }
        },
        {
            "id": 391003,
            "data": "2024-06-19T10:03:01.000Z",
            "referrer": "C5BBD1EF5A6A45A682472A8FD8EA940E",
            "date": "2024-06-19T10:03:01.000Z",
            "status": {
                "code": 15
            },
            "prices": {
                "total": 4,
                "discount": 0,
                "taxs": {
                    "others": 0,
                    "shipping": 0
                },
                "refund": null
            },
            "type": {
                "id": 3
            },
            "payment": {
                "date": null,
                "card": null
            }
        },
        {
            "id": 673821,
            "data": "2024-07-22T11:11:40.000Z",
            "referrer": "0BE1BDEC2BA041778188D5C51564DC69",
            "date": "2024-07-22T11:11:40.000Z",
            "status": {
                "code": 6
            },
            "prices": {
                "total": 67.9,
                "discount": 0,
                "taxs": {
                    "others": 0,
                    "shipping": 0
                },
                "refund": null
            },
            "type": {
                "id": 1
            },
            "payment": {
                "date": null,
                "card": null
            }
        }
    ]
}
Página anterior
Cartão de Crédito
Próxima página
Criar Fatura
Built with