Available Prices
GET/pricing/prices
Return available prices for the system
Request
Responses
- 200
- 403
- 429
Return available prices for the system
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
Array [
Array [
]
]
]
]
prices
object[]
required
The prices in the default price plan
resource string
category string
description string
variants
object[]
id stringnullable
description stringnullable
default boolean
prices
object[]
id string
price float
currency
object[]
id string
name string
iso_code string
symbol string
{
"prices": [
{
"resource": "string",
"category": "string",
"description": "string",
"variants": [
{
"id": "string",
"description": "string",
"default": true,
"prices": [
{
"id": "string",
"price": 0,
"currency": [
{
"id": "string",
"name": "string",
"iso_code": "string",
"symbol": "string"
}
]
}
]
}
]
}
]
}
403 error response
- application/json
- Schema
- Example (from schema)
Schema
code InternalAuthErrorEnum (string)
Possible values: [internal_auth_error
]
description string
detail
object
details string
{
"code": "internal_auth_error",
"description": "string",
"detail": {
"details": "string"
}
}
You have reached the rate limit for this type of request
- application/json
- Schema
- Example (from schema)
Schema
code RateLimitReachedEnum (string)
Possible values: [rate_limit_reached
]
description string
detail
object
total_permitted integer
The total number of requests per minute that are permitted
{
"code": "rate_limit_reached",
"description": "string",
"detail": {
"total_permitted": 0
}
}
Loading...