Integra Titan Finance con tu ERP, software de contabilidad o cualquier sistema. API REST simple y potente.
Ve a tu perfil y genera una API Key. Disponible en planes Pro y Business.
curl https://titanfinance.es/api/v1/invoices \
-H "X-API-Key: tk_live_tu_api_key_aqui"{
"success": true,
"data": [
{
"id": "abc-123",
"tipo": "RECIBIDA",
"proveedor_cliente": "Proveedor S.L.",
"nif": "B12345678",
"numero_factura": "F-2026/001",
"fecha_factura": "2026-01-15",
"base_imponible": 100.00,
"iva_total": 21.00,
"total_pagar": 121.00
}
],
"pagination": {
"page": 1,
"limit": 50,
"total": 150
}
}/api/v1/invoicesListar facturas/api/v1/invoices/:idDetalle de factura/api/v1/invoices/statsEstadísticas/api/v1/keysCrear API key/api/v1/keysListar keys/api/v1/keysRevocar keySolo disponible en plan Business
/api/v1/webhooksCrear webhook/api/v1/webhooksListar webhooks/api/v1/webhooksEliminar webhook| Parámetro | Tipo | Descripción |
|---|---|---|
| tipo | string | EMITIDA | RECIBIDA |
| desde | date | Fecha inicio (YYYY-MM-DD) |
| hasta | date | Fecha fin (YYYY-MM-DD) |
| estado | string | APROBADA | REVISAR |
| proveedor | string | Búsqueda por nombre |
| page | number | Página (default: 1) |
| limit | number | Resultados por página (max: 100) |
curl "https://titanfinance.es/api/v1/invoices?tipo=RECIBIDA&desde=2026-01-01&limit=10" \
-H "X-API-Key: tk_live_..."| Parámetro | Descripción |
|---|---|
| periodo | mes_actual | trimestre | año |
| desde / hasta | Rango personalizado (YYYY-MM-DD) |
{
"success": true,
"data": {
"periodo": { "desde": "2026-01-01", "hasta": "2026-01-31" },
"totales": {
"facturas": 45,
"emitidas": 12,
"recibidas": 33
},
"importes": {
"ingresos": { "base_imponible": 15000, "iva": 3150, "total": 18150 },
"gastos": { "base_imponible": 8000, "iva": 1680, "total": 9680 }
},
"iva": {
"repercutido": 3150,
"soportado": 1680,
"resultado": 1470
},
"resultado_neto": 7000
}
}Recibe notificaciones en tiempo real cuando se procesan facturas.
invoice.created - Nueva factura procesadainvoice.updated - Factura actualizadainvoice.deleted - Factura eliminadascan.completed - Escaneo completadocurl -X POST https://titanfinance.es/api/v1/webhooks \
-H "X-API-Key: tk_live_..." \
-H "Content-Type: application/json" \
-d '{
"url": "https://tu-servidor.com/webhook",
"events": ["invoice.created"],
"name": "Mi ERP"
}'{
"event": "invoice.created",
"timestamp": "2026-01-15T10:30:00Z",
"data": {
"id": "abc-123",
"tipo": "RECIBIDA",
"proveedor_cliente": "Proveedor S.L.",
"total_pagar": 121.00
}
}