Ask AI Main site ↗

Quickstart

Your first call in under a minute, and your first authenticated call once you have a token.

1. Read reference data

No key, no signup. These files are generated when the site builds, so they never drift from what the site says.

Every plan and price
curl -s https://eprfrancerep.com/api/v1/pricing.json

2. Get a token

Client endpoints need a token. Ask us and we issue one against your dashboard account; it is shown once and stored only as a hash on our side.

3. Call as yourself

Who am I
curl -s https://dash.eprfrancerep.com/api/v1/me \
  -H "authorization: Bearer $EPR_TOKEN"

4. Send your quantities

Declare a period
curl -s -X POST https://dash.eprfrancerep.com/api/v1/declarations \
  -H "authorization: Bearer $EPR_TOKEN" \
  -H "content-type: application/json" \
  -d '{"period":"2026-S2","lines":[
    {"stream":"household-packaging","material":"Paper & cardboard","unit":"kg","quantity":50},
    {"stream":"household-packaging","material":"Flexible PE film","unit":"kg","quantity":2}
  ]}'
On this page1. Read reference data2. Get a token3. Call as yourself4. Send your quantities