GET
/
suppliers
/
search
curl --request GET \
  --url https://api.nomos.energy/suppliers/search \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "items": [
    {
      "object": "supplier",
      "id": "sup_gppx5tpmpakl2pfon4tzeijd",
      "name": "Stadtwerke Lauterbach",
      "code": "9903964000002",
      "code_type": "BDEW",
      "country": "DE",
      "created_at": "2024-01-01T00: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

200
application/json
Search results
object
string

Type of object is always list.

Example:

"list"

items
object[]