Skip to main content
GET
/
suppliers
List market partners
curl --request GET \
  --url http://localhost/suppliers \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "items": [
    {
      "object": "supplier",
      "id": "mp_<id>",
      "name": "Sample Energy GmbH",
      "country": "DE",
      "created_at": "2024-03-14T12:00:00Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

This is a list of all German electricity retailers, which a customer can select as their previous supplier in the checkout process. It can be used to build a dropdown menu in an embedded checkout to select the previous supplier.

object
enum<string>
required
Available options:
list
items
(object | null)[]
required