This is a technical prototype. Not for production use.

Future products are transparent.

Repass is a technical sandbox for the Digital Product Passport (DPP). Prepare for the upcoming EU circular economy regulation (ESPR) by exploring the technology today.

⚠️ Important Notice:

This software is intended solely for technical testing. All entered data may be deleted without notice. Do not use this service to store actual business data.

The production version will be released later, once EU standards are confirmed.

Scan & Explore

Circular Economy & Regulation

What is the Digital Product Passport?

EU regulation (ESPR) will soon require accessible data on product origin, materials, and recyclability. Repass is a tool for testing the management of this data.

Unique QR Codes

The system generates a unique digital identity (UUID) and QR code for every product. The code remains functional throughout the product's lifecycle.

EU-Compatible Data Model

The prototype supports Cirpass pilot data fields for textiles (materials, country of origin) and energy efficiency data for electronics.

API & ERP Integration

A developer-focused REST API allows automatic export of product data directly from your current ERP or PIM system.

Secure & Scalable

Modern cloud architecture ensures product data is always available. Data is protected with company-specific access controls.

Ready to give it a try? Create a free account and test passport creation.

Get immediate access to create products, print QR codes, and test the API.

Register Test Company

The Backstory

Why did we build this?

To be honest: we are an ERP company.

Repass is developed by Refox Oy. Our clients sell physical products, and they need a way to comply with upcoming EU requirements without massive IT projects.

Because we couldn't find a solution on the market that was simple and developer-friendly enough, we decided to build it ourselves.

Who is this for?

  • For Refox clients: You get DPP features directly in your current system.
  • For other companies: The service is open to everyone. You can manage products manually via the admin panel or integrate via API.

"Pricing will be decided later for the production version, but it will likely be based on the number of active products (pay-per-product). We want costs to scale with your business."

Technical Overview

Under the Hood

Repass is built on the modern TALL stack (Tailwind, Alpine.js, Laravel, Livewire). The data model is designed as a flexible JSON structure that scales with changing EU standards.

REST API & Authentication

Integrations are bidirectional. You can push products from your ERP, but also fetch created passports and their data back into your system.

  • POST /api/products // Create/Update
  • GET  /api/products // List All
  • GET  /api/products/{id} // Get One
  • GET  /api/schemas // Get Schema

Schema Discovery

Because EU requirements change, we don't hardcode fields. You can fetch the up-to-date data model directly from the API, keeping your integration current.

QR Codes & UUID

Every product is assigned a permanent <span class="font-mono text-sm bg-gray-100 px-1">uuid</span> upon creation. This acts as the primary key for the passport and forms the URL the QR code points to. The ID cannot be changed later.

1. Send (POST)
POST /api/products
Authorization: Bearer 12|AbCd...

{
  "sku": "TSHIRT-2026",
  "type": "textile",
  "data": {
    "fiber_composition": "100% Cotton",
    "country_of_origin": "FI"
  }
}
2. Fetch (GET)
GET /api/products/{uuid}

// Response (200 OK)
{
  "uuid": "9a5b3c-...",
  "passport_url": "...",
  "data": {
    "fiber_composition": "100% Cotton"
  }
}