Skip to content

List recent rate-card changes

GET
/api/v1/admin/rate-card/history
curl --request GET \
--url https://api.aetherplatform.cloud/api/v1/admin/rate-card/history \
--header 'Authorization: Bearer <token>'

Returns recent rate_cards rows newest-first (the effective-dated price history). Requires the platform-admin realm role.

Recent rate-card rows, newest-first.

Media typeapplication/json
object
history
required
Array<object>
object
resource_type
required
string
Allowed values: control_plane vcpu memory disk storage_block storage_rwx loadbalancer registry snapshot public_ip
unit_price_eur
required
number format: double
effective_from
required
string format: date-time
created_by
required
string
created_at
required
string format: date-time
Example
{
"history": [
{
"resource_type": "control_plane"
}
]
}

Missing or invalid credentials.

Media typeapplication/json
object
error
required
object
code
required

A stable, machine-readable error code.

string
message
required
string
details
Array<object>
object
field
required
string
code
required
string
message
required
string
Examplegenerated
{
"error": {
"code": "example",
"message": "example",
"details": [
{
"field": "example",
"code": "example",
"message": "example"
}
]
}
}

The credential was accepted but lacks the required role or access (e.g. a non-platform-admin calling an /api/v1/admin endpoint).

Media typeapplication/json
object
error
required
object
code
required

A stable, machine-readable error code.

string
message
required
string
details
Array<object>
object
field
required
string
code
required
string
message
required
string
Examplegenerated
{
"error": {
"code": "example",
"message": "example",
"details": [
{
"field": "example",
"code": "example",
"message": "example"
}
]
}
}