E-Invoicing & Fiskalisation for Spain - API References


Introduction

Spain has implemented multiple electronic invoicing and tax compliance mechanisms to enhance fiscal transparency, combat tax fraud, and streamline VAT reporting. These systems include:

  • SII (Suministro Inmediato de Información) (Immediate VAT information submission system)
  • TicketBAI (Basque Country-specific invoicing control)
  • VeriFactu (National-level real-time invoicing compliance)
  • Crea y Crece (B2B e-invoicing mandate for businesses across Spain)

Each system has specific compliance requirements based on jurisdiction, taxpayer category, and industry type.

VeriFactu: Spain's Verifiable E-Invoicing System

Overview

VeriFactu is a mandatory nationwide initiative introduced under Spain’s Anti-Fraud Law (Ley 11/2021). It aims to ensure the authenticity, traceability, and immutability of invoices by enforcing strict software and reporting requirements.

Key Features

  • Real-Time Reporting: Invoices must be submitted to the Spanish Tax Agency (AEAT) immediately upon issuance.
  • Hashing & Digital Signatures: Invoices must be digitally signed using a SHA-256 hashing algorithm to prevent tampering.
  • Unique Invoice Identifiers: Each invoice receives a UUID (Universally Unique Identifier) for tracking and verification.
  • QR Code Integration: Every invoice must include a QR code that enables tax authorities to validate its authenticity instantly.
  • Software Certification: Businesses must use tax-compliant invoicing software that is registered with AEAT.

Compliance Timeline

DateImplementation Milestone
July 1, 2025Voluntary adoption phase begins for freelancers and small businesses.
January 1, 2026Mandatory adoption for all businesses issuing invoices in Spain.

Technical Compliance Requirements

To comply with VeriFactu, businesses must ensure that their invoicing software meets AEAT's standards:

  1. Automatic Data Transmission: The software must automatically send invoice data to AEAT without user intervention.
  2. Invoice Immutability: Once generated, invoices cannot be modified or deleted.
  3. Sequential Numbering: Invoices must follow a strict sequential numbering system to prevent fraudulent gaps.
  4. Backup & Storage: Businesses must retain invoices in a secure, tamper-proof system for a minimum of 4 years.
  5. Integration with Accounting Systems: The software must link invoices directly to a company’s accounting records.

For more details, refer to the AEAT official documentation.

Common Structs

2. Line Items taxlines[]

This is an array of tax line items inclduded in an invoice. One of such item should have below mentioned data points:

  • Name
    tax_base
    Type
    float
    Description

    On which the tax is calculated.

  • Name
    tax_rate
    Type
    float
    Description

    The tax rate at which its calculated on tax_base.

  • Name
    repercutida_quota
    Type
    string
    Description

    repercutida_quota need to be specified


POSTes/verifactu/report

Report a new invoice

To Generate a new E-Invoice, this endpoint can be used along with the participant-id to which it belongs to. Give your onboarded supplier id in header to ensure its reported under that specific device.

Request Body

  • Name
    document_identifier
    Type
    string
    Description

    Unique invoice number.

  • Name
    issue_date
    Type
    date: YYYY-MM-DD
    Description

    Date on which the invoice was issued.

  • Name
    invoice_type
    Type
    string
    Description

    Type of invoice. Allowed values: F1, F2.

  • Name
    description
    Type
    string
    Description

    Description of the transaction.

  • Name
    taxlines
    Type
    struct: taxlines[]
    Description

    List of line items in the invoice. At least one item is mandatory.

  • Name
    total_amount
    Type
    string
    Description

    Total amount of the invoice.

Sample Request

POST
es/verifactu/generate
curl --url https://staging-api.flick.network/es/verifactu/generate \
  --header 'x-flick-auth-key: {token}' \
  --header 'participant-id: {participant_id}' \
  --header 'Content-Type: application/json' \
  --data '
    {
      "document_identifier": "INV-005",
      "issue_date": "2025-01-21",
      "invoice_type": "F2",
      "description": "Description of the operation: simplified invoice",
      "taxlines": [
        {
          "taxable_base": "100",
          "tax_rate": "10",
          "charged_tax": "42"
        }
      ],
      "total_amount": "110"
    }'

Sample Response

200
Success
    {
    "status": "success",
    "message": {
      "uuid": "123e4567-e89b-12d3-a456-426614174000",
      "qr_link": "https://prewww2.aeat.es/wlpl/TIKE-CONT/ValidarQR?nif=B986142642&numserie=SAMPLE-005&fecha=21-01-2025&importe=110.00",
      "qr_code": "ARlBbCBTYWRoYW4gVHJhZGluZyBDb21w...."
    }
  }

POSTes/verifactu/rectify

Rectify an issued invoice

The Verifacti API provides the /verifactu/rectify endpoint, which corresponds to the operation that the administration refers to as the "correction" of an invoice record. It is important to note that this operation is rarely performed and is not related to corrective invoices.

This endpoint is only used to correct invoice records in cases where the correction has no tax implications, which significantly limits its use.

Below is an example where this endpoint can be used, controlled by the previous_rejection field, clarifying that this is not a regular operation.

Request Body

  • Name
    document_identifier
    Type
    string
    Description

    Unique invoice number.

  • Name
    issue_date
    Type
    date: YYYY-MM-DD
    Description

    Date on which the invoice was issued.

  • Name
    invoice_type
    Type
    string
    Description

    Type of invoice. Allowed values: R1.

  • Name
    description
    Type
    string
    Description

    Description of the transaction.

  • Name
    nif
    Type
    string
    Description

    Tax Identification Number of the issuer.

  • Name
    name
    Type
    string
    Description

    Name of the issuing company.

  • Name
    taxlines
    Type
    struct: taxlines[]
    Description

    List of line items in the invoice. At least one item is mandatory.

  • Name
    total_amount
    Type
    string
    Description

    Total amount of the invoice.

  • Name
    rectification_type
    Type
    string
    Description

    Type of rectification. Allowed value: I.

  • Name
    rectified_invoices
    Type
    struct: rectified_invoice[]
    Description

    List of invoices that are being rectified.

Sample Request

POST
es/verifactu/rectify
curl --url https://staging-api.flick.network/es/verifactu/rectify \
  --header 'x-flick-auth-key: {token}' \
  --header 'participant-id: {participant_id}' \
  --header 'Content-Type: application/json' \
  --data '
    {
      "document_identifier": "REC-1",
      "issue_date": "2025-01-01",
      "invoice_type": "R1",
      "description": "Description of the operation: rectification by difference",
      "nif": "A150234534",
      "name": "Test Company SL",
      "taxlines": [
        {
          "tax_base": "100",
          "tax_rate": "20",
          "repercutida_quota": "42"
        }
      ],
      "total_amount": "120",
      "rectification_type": "I",
      "rectified_invoices": [
        {
          "document_identifier": "INV-1",
          "issue_date": "2024-12-01"
        }
      ]
    }'

Sample Response

200
Success
    {
    "status": "success",
    "message": {
      "uuid": "123e4567-e89b-12d3-a456-426614174000",
      "qr_link": "https://prewww2.aeat.es/wlpl/TIKE-CONT/ValidarQR?nif=B986142642&numserie=SAMPLE-005&fecha=21-01-2025&importe=110.00",
      "qr_code": "ARlBbCBTYWRoYW4gVHJhZGluZyBDb21w...."

    }
  }