verifactuPHP exposes five listing methods that map directly to VeriFactuAPI’s GET endpoints:Documentation Index
Fetch the complete documentation index at: https://mintlify.com/NemonInvocash/verifactu-php/llms.txt
Use this file to discover all available pages before exploring further.
listarEmisores, listarEnviosAEAT, listarRegistrosAlta, listarListas, and listarWebhooks. Each method follows the same pattern — call it with no arguments to retrieve all records, or pass an integer ID to fetch a single record by its API-assigned identifier. The exception is listarListas, which accepts string parameters to filter by list name and value.
Emisores
Retrieve the issuers registered under your VeriFactuAPI account:GET /api/emisor and GET /api/emisor/{id} respectively. See Managing Emisores for how to create and register emisores.
Envíos AEAT
Retrieve AEAT submission records to inspect the status of invoices that have been sent to Spain’s tax authority:GET /api/envios-aeat and GET /api/envios-aeat/{id}. Use these records to check whether a submission was accepted or rejected by AEAT.
Registros de Alta
Retrieve invoice registration records previously submitted viaaltaRegistroAlta():
GET /api/alta-registro-facturacion and GET /api/alta-registro-facturacion/{id}. The returned ID can be used directly with bajaRegistro() to cancel a record. See Cancelling Invoices for details.
Listas (Reference Lists)
VeriFactuAPI defines a set of reference lists (L1, L2, L3, etc.) that map string codes to integer IDs. Many invoice fields — such astipoFactura, tipoRectificativa, and impuesto — accept values from these lists. Use listarListas() to inspect available values:
idValorLista():
GET /api/listas, GET /api/listas/{nombre}, and GET /api/listas/{nombre}/{valor}.
Webhooks
Retrieve webhook endpoints registered under your VeriFactuAPI account:GET /api/webhook and GET /api/webhook/{id}. See Webhooks for how to create webhooks and associate them with emisores.
All listing methods return the full API response array as decoded JSON. Individual records are found under the
data.items key in the response. Consult the VeriFactuAPI documentation for the complete response schema for each endpoint.
