• INIES Public API
    • Getting Started
    • Export API
    • Import API
    • API Changes (Breaking Changes + Changelog)

Export API

Overview

Export endpoints provide read-only access to standards, nomenclature, units, EPD data, and document content.

Note : Read access requires specific permissions. See Official resources for details.

Accessing Archived EPDs

EPDs are archived when no longer valid (e.g. after a new version of the same product is published).

You can identify archived products by the archived property in the EpdShortDataDto returned by GET /ws/Epd.

Note : Accessing the full data (EpdFullDataDto) or documents of archived products requires dedicated archived-product permissions. Without these permissions, triying to access archived products using the GET /ws/Epd/{epdId} will result in a 403 Forbidden error. Please contact INIES if access to archived products is required for your use case.

Endpoints

Method Path OperationId Description
GET /ws/Norme GetAllStandards List available standards.
GET /ws/Norme/{id} GetStandardById Get standard details with indicators/phases.
GET /ws/Nomenclature GetNomenclatureItems Get classification nomenclature tree items.
GET /ws/Unit GetUnits Get unit list.
GET /ws/Epd GetEpdShortData List EPD short data with optional filters.
GET /ws/Epd/{id} GetEpdFullDataById Get full EPD payload by identifier.
GET /ws/Epd/{epdId}/Document GetEpdDocumentList List document metadata for an EPD.
GET /ws/Epd/{epdId}/Document/{fileId} GetEpdDocumentContent Download document binary content.

Common query parameters

GET /ws/Epd supports optional filters:

  • referenceDateTime : Retrieves only the products modified since the provided referenceDateTime (ISO date-time)
  • serialIdentifier : Serial identifier to filter EPDs, allows retrieving all versions of a product.
  • showArchivedProducts: true/false (default: false)
  • declarationTypes : Comma-separated list of declaration types to filter by

Access control notes

  • Read access is required for export endpoints.
  • Archived products require dedicated archived-product permissions to retrieve FullData or documents.

Updating EPD data

When you update your local Database with GET /ws/Epd or GET /ws/Epd/{id}, we recommend using the lastModifiedDateTime property to identify updated products and minimize unnecessary updates.

Note : Retrieving the whole database may trigger rate limits and cause throttling. Please refer to the Official resources for best practices on synchronizing with the INIES database.

In this article
Back to top Generated by DocFX