Available Prices

Return available prices for the system.

GET
https://api.katapult.io/public/v1/pricing/prices

If successful, this endpoint will return a 200 OK status.

Returned Object

When the request is successful, you can expect an object matching the specification below to be returned.

{
    prices: [ PriceResource {
        resource: String
        category: String
        description: String
        variants: [ PriceVariant {
            id: String?
            description: String?
            default: Boolean
            prices: [ Price {
                id: String
                price: Decimal
                currency: [ Currency {
                    iso_code: String
                } ]
            } ]
        } ]
    } ]
}