Get the current effective customer rate card
GET
/api/v1/admin/rate-card
const url = 'https://api.aetherplatform.cloud/api/v1/admin/rate-card';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.aetherplatform.cloud/api/v1/admin/rate-card \ --header 'Authorization: Bearer <token>'Returns the live €/month price per resource type — the newest effective-dated rate_cards row per type with effective_from <= now(). Requires the platform-admin realm role.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”The current effective rates, keyed by resource type.
Media typeapplication/json
object
rates
required
Map of resource_type -> €/month unit price. Keys are the ten resource types of the rate card (see the enum on updateRateCard).
object
key
additional properties
number format: double
Example
{ "rates": { "control_plane": 0, "vcpu": 8, "memory": 3.5, "disk": 0.12 }}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" } ] }}