Construye sobre Concilius
Accede a la API de Concilius para automatizar cobranza, sincronizar facturas y recibir eventos en tiempo real.
Obtener acceso APIVe a Configuración → API Keys y genera una nueva clave.
Usa tu clave para autenticarte y obtener tus facturas:
curl -X GET "https://app.concilius.mx/api/v1/invoices/" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"Recibe eventos en tiempo real en tu servidor cuando algo cambie.
Todas las solicitudes deben incluir tu API Key en el header Authorization como Bearer token.
curl -X GET "https://app.concilius.mx/api/v1/invoices/" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"import requests
headers = {"Authorization": "Bearer YOUR_API_KEY"}
resp = requests.get("https://app.concilius.mx/api/v1/invoices/", headers=headers)
print(resp.json())const res = await fetch("https://app.concilius.mx/api/v1/invoices/", {
headers: { Authorization: "Bearer YOUR_API_KEY" },
});
const data = await res.json();Nunca expongas tu API Key en código del lado del cliente.
| Método | Ruta | Descripción |
|---|---|---|
GET | /api/v1/invoices/ | List all invoices |
POST | /api/v1/invoices/ | Create an invoice |
GET | /api/v1/customers/ | List customers |
GET | /api/v1/overview/summary | Get overview KPIs |
POST | /api/v1/webhooks | Register a webhook |
GET | /api/v1/reconciliation/matches | Get reconciliation matches |
GET | /api/v1/collections/overdue | Get overdue collections |
GET | /api/v1/reports/summary | Get reports summary |
Concilius envía eventos a tu URL cuando ocurren cambios en tu organización.
| Event | Description |
|---|---|
invoice.paid | Fired when an invoice status changes to paid |
invoice.overdue | Fired when an invoice passes its due date |
payment.received | A payment is recorded in the system |
customer.risk_changed | Customer AI risk score has changed |
reconciliation.completed | Automatic reconciliation run finished |
{
"event": "invoice.paid",
"timestamp": "2024-01-15T10:30:00Z",
"data": {
"invoice_id": "inv_abc123",
"amount": 15000.00,
"customer_id": "cust_xyz456"
}
}| Plan | Solicitudes/min | Solicitudes/día |
|---|---|---|
Base | 60 | 5,000 |
Pro | 300 | 50,000 |
Enterprise | 1000 | 500,000 |