Skip to content

Introduction

The N’entropy EUDR Platform provides a RESTful API that allows external systems to push and pull supplier, product, and batch data for EU Deforestation Regulation (EUDR) compliance.

  • Push supplier data from your ERP or procurement system
  • Sync products and batches to auto-generate DDS (Due Diligence Statements)
  • Query DDS status for batches managed through the platform
  • Receive webhook notifications when data changes
  • Connect Microsoft Dynamics 365 Business Central for automated bidirectional sync
Production: https://backend.joinnentropy.com/api/v1/integration

The API uses URL-based versioning. All integration endpoints are under /api/v1/integration/. Breaking changes will be introduced in new major versions (e.g., /api/v2/).

  • 100 requests per minute per API token
  • 500 records per bulk request (suppliers, products, or batches)
  • Rate limit headers are included in every response:
    • X-RateLimit-Limit
    • X-RateLimit-Remaining
    • X-RateLimit-Reset

All responses are JSON. Successful responses return data directly. Errors return:

{
"error": "ERROR_CODE",
"message": "Human-readable description"
}
  1. Set up authentication with API tokens
  2. Follow the quick start guide to push your first data
  3. Browse the API Reference for all available endpoints