GET
/
plans
/
{plan}
curl --request GET \
  --url https://api.nomos.energy/plans/{plan} \
  --header 'Authorization: Bearer <token>'
{
  "object": "plan",
  "id": "pln_d9rfz7502xdyklkp9946ttci",
  "name": "Nomos Friends & Family",
  "description": "Der günstigste dynamische Stromtarif Deutschlands",
  "price": 3.99,
  "currency": "EUR",
  "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.

Path Parameters

plan
string
required

ID of the plan to retrieve

Example:

"pln_d9rfz7502xdyklkp9946ttci"

Response

200
application/json
Successful response
object
string
required

Type of object is always plan.

Example:

"plan"

id
string
required

Unique identifier for the plan.

Example:

"pln_d9rfz7502xdyklkp9946ttci"

name
string
required

Name of the plan.

Example:

"Nomos Friends & Family"

description
string
required

Description of the plan.

Example:

"Der günstigste dynamische Stromtarif Deutschlands"

price
number
required

Monthly base fee charged excl. grid and metering operator fees, as well as taxes and levies.

Example:

3.99

currency
string
required

Currency for the fees.

Example:

"EUR"

created_at
string
required
Example:

"2024-01-01T00:00:00Z"