XRechnung API
    • invoices
      • List stored invoices for the current API key
        GET
      • Check runtime readiness for invoice validation
        GET
      • Generate invoice
        POST
      • Validate invoice JSON, raw XML, or raw ZUGFeRD PDF
        POST
      • Retrieve a previously generated invoice by ID
        GET
      • Download the stored invoice PDF artifact
        GET
    • system
      • Public liveness probe
    • Schemas
      • InvoicePayload
      • SellerParty
      • BuyerParty
      • InvoiceBranding
      • InvoiceLine
      • ValidationError
      • ValidationResult
      • GenerateQueuedResponse
      • GenerateSyncResponse
      • ValidateJsonResponse
      • ValidatePdfRequest
      • ValidateXmlRequest
      • ValidateXmlResponse
      • ValidatePdfResponse
      • GetInvoicePendingResponse
      • GetInvoiceTerminalResponse
      • GetInvoiceResponse
      • ListInvoiceSummary
      • PaginationMeta
      • ListInvoicesResponse
      • ReadinessResponse
      • UnauthorizedError
      • PaymentRequiredError
      • TooManyRequestsError
      • RequestValidationError
      • NotFoundError

    ListInvoicesResponse

    {
        "data": [
            {
                "invoice_id": "f4c4edb8-11e0-4b33-bcc1-482dc59ebb32",
                "invoice_number": "RE-2026-001",
                "status": "queued",
                "processing_mode": "async",
                "document_format": "xrechnung_ubl",
                "document_profile": "string",
                "pdf_available": true,
                "validation_valid": true,
                "queued_at": "2019-08-24T14:15:22.123Z",
                "started_at": "2019-08-24T14:15:22.123Z",
                "finished_at": "2019-08-24T14:15:22.123Z",
                "created_at": "2019-08-24T14:15:22.123Z",
                "updated_at": "2019-08-24T14:15:22.123Z"
            }
        ],
        "meta": {
            "current_page": 1,
            "per_page": 15,
            "last_page": 1,
            "total": 1
        }
    }
    Built with