Skip to main content
GET
/
suppliers
/
search
Search market partners
curl --request GET \
  --url http://localhost/suppliers/search \
  --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.

Query Parameters

name
string
required

Name or partial name to search for.

Example:

"Stadtwerke"

Response

Deprecated: Use GET /suppliers with filter[name][contains]= instead. This is a list of all German electricity retailers, which a customer can select as their previous supplier in the checkout process.

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