JouloDocs

ERE positions

GET /partner/ere-positions • per-EAN ERE position for your attributed customers, in bulk

GET /partner/ere-positions returns the ERE position per connection (EAN) for every customer attributed to you, for a compliance year: registered and sellable ERE, the expected net payout, and a per-quarter breakdown. Use it to reconcile positions per connection in bulk.

The connection (EAN) is the key. Positions only appear once a customer has completed onboarding and produced eligible sessions • before that a customer shows up under GET /partner/drafts, not here.

Request

curl "https://api.joulo.nl/functions/v1/api/partner/ere-positions?year=2026&limit=200&offset=0" \
  -H "Authorization: Bearer jpk_live_..."
Query paramRequiredNotes
yearnoCompliance year. Default 2026.
limitnoPage size, 1500. Default 200.
offsetnoPage offset. Default 0.

Response

{
  "positions": [
    {
      "ean": "871685920000123456",
      "registration_status": "goedgekeurd",
      "ean_validation_status": "matched",
      "ere_eligible": true,
      "compliance_year": 2026,
      "registered_ere": 234.354,
      "allocatable_ere": 227.6865,
      "pending_ere": 6.6675,
      "expected_net_eur": 319.15,
      "quarters": [
        { "quarter": "2026 Q2", "registered_ere": 177.4433 },
        { "quarter": "2026 Q3", "registered_ere": 50.2431 }
      ],
      "computed_at": "2026-07-21T10:00:00Z"
    }
  ],
  "limit": 200,
  "offset": 0,
  "count": 250,
  "compliance_year": 2026
}
FieldMeaning
eanThe connection this position belongs to.
registration_statusRegistration lifecycle: conceptingediendin_reviewgoedgekeurd (or afgekeurd).
ean_validation_statusEAN validation: matched, mismatched or unavailable.
ere_eligibletrue when eligible ERE has been produced (sellable + in the settle buffer).
registered_ereAll eligible ERE this year: sellable plus what is still inside the 3-day settle buffer.
allocatable_ereERE that has cleared the settle buffer and is available to sell.
pending_ereERE inside the 3-day settle buffer • rolls into allocatable_ere over the next days.
expected_net_eurExpected net payout to the customer for the full year (market-based, indicative).
quarters[]Registered ERE per quarter.
computed_atWhen this position was last recomputed (see freshness below).
countTotal attributed connections, for pagination.

Amounts are the customer's net payout (market-based, indicative) • never a guarantee. Only connections attributed to you are returned.

Freshness and polling

Positions are recomputed roughly every 15 minutes; computed_at tells you how fresh each row is. They move slowly (a 3-day settle buffer plus the daily sync), so polling a few times per day is plenty. There is no push webhook.

Access

This endpoint is on the API-key allowlist, so your jpk_live_ key can read it directly. It only ever returns connections attributed to your own account.