Inveqi

Resources

API Reference

Build custom integrations with the Inveqi REST API.

Getting started

Our REST API lets you create invoices, manage customers and products, and check payment status programmatically. Authenticate with an API key sent in the Authorization header.

GET /api/v1/invoices
{
    "id": "inv_1234",
    "number": "INV-2026-001",
    "status": "paid",
    "total": 1250.00,
    "customer": {
        "name": "Acme Inc",
        "email": "billing@acme.com"
    },
    "items": [
        { "description": "Consulting", "amount": 1250.00 }
    ]
}
GET /api/v1/invoices List invoices
POST /api/v1/invoices Create an invoice
GET /api/v1/customers List customers
POST /api/v1/customers Create a customer
GET /api/v1/products List products
POST /api/v1/products Create a product

Need API access? Contact us to request credentials.