getPrices
List all prices
Details
- Method:
GET - Path:
/v1/prices - Operation ID:
GetPrices
Parameters
{
"active": {
"description": "Only return prices that are active or inactive (e.g., pass `false` to list all inactive prices).",
"required": false,
"location": "query",
"type": "boolean"
},
"created": {
"description": "A filter on the list, based on the object `created` field. The value can be a string with an integer Unix timestamp, or it can be a dictionary with a number of different query options.",
"required": false,
"location": "query",
"type": "string"
},
"currency": {
"description": "Only return prices for the given currency.",
"required": false,
"location": "query",
"type": "string",
"format": "currency"
},
"ending_before": {
"description": "A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list.",
"required": false,
"location": "query",
"type": "string"
},
"expand": {
"description": "Specifies which fields in the response should be expanded.",
"required": false,
"location": "query",
"type": "array"
},
"limit": {
"description": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.",
"required": false,
"location": "query",
"type": "integer"
},
"lookup_keys": {
"description": "Only return the price with these lookup_keys, if any exist. You can specify up to 10 lookup_keys.",
"required": false,
"location": "query",
"type": "array"
},
"product": {
"description": "Only return prices for the given product.",
"required": false,
"location": "query",
"type": "string"
},
"recurring": {
"description": "Only return prices with these recurring fields.",
"required": false,
"location": "query",
"type": "object"
},
"starting_after": {
"description": "A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list.",
"required": false,
"location": "query",
"type": "string"
},
"type": {
"description": "Only return prices of type `recurring` or `one_time`.",
"required": false,
"location": "query",
"type": "string",
"enum": [
"one_time",
"recurring"
]
}
}Response Schema
{
"description": "",
"properties": {
"data": {
"description": "Details about each object.",
"items": {
"description": "Prices define the unit cost, currency, and (optional) billing cycle for both recurring and one-time purchases of products.\n[Products](https://api.stripe.com#products) help you track inventory or provisioning, and prices help you track payment terms. Different physical goods or levels of service should be represented by products, and pricing options should be represented by prices. This approach lets you change prices without having to change your provisioning scheme.\n\nFor example, you might have a single \"gold\" product that has prices for $10/month, $100/year, and €9 once.\n\nRelated guides: [Set up a subscription](https://docs.stripe.com/billing/subscriptions/set-up-subscription), [create an invoice](https://docs.stripe.com/billing/invoices/create), and more about [products and prices](https://docs.stripe.com/products-prices/overview).",
"properties": {
"active": {
"description": "Whether the price can be used for new purchases.",
"type": "boolean"
},
"billing_scheme": {
"description": "Describes how to compute the price per period. Either `per_unit` or `tiered`. `per_unit` indicates that the fixed amount (specified in `unit_amount` or `unit_amount_decimal`) will be charged per unit in `quantity` (for prices with `usage_type=licensed`), or per unit of total usage (for prices with `usage_type=metered`). `tiered` indicates that the unit pricing will be computed using a tiering strategy as defined using the `tiers` and `tiers_mode` attributes.",
"enum": [
"per_unit",
"tiered"
],
"type": "string"
},
"created": {
"description": "Time at which the object was created. Measured in seconds since the Unix epoch.",
"format": "unix-time",
"type": "integer"
},
"currency": {
"description": "Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).",
"format": "currency",
"type": "string"
},
"currency_options": {
"additionalProperties": {
"description": "",
"properties": {
"custom_unit_amount": {
"anyOf": [
{
"$ref": "#/components/schemas/custom_unit_amount"
}
],
"description": "When set, provides configuration for the amount to be adjusted by the customer during Checkout Sessions and Payment Links.",
"nullable": true
},
"tax_behavior": {
"description": "Only required if a [default tax behavior](https://docs.stripe.com/tax/products-prices-tax-categories-tax-behavior#setting-a-default-tax-behavior-(recommended)) was not provided in the Stripe Tax settings. Specifies whether the price is considered inclusive of taxes or exclusive of taxes. One of `inclusive`, `exclusive`, or `unspecified`. Once specified as either `inclusive` or `exclusive`, it cannot be changed.",
"enum": [
"exclusive",
"inclusive",
"unspecified"
],
"nullable": true,
"type": "string"
},
"tiers": {
"description": "Each element represents a pricing tier. This parameter requires `billing_scheme` to be set to `tiered`. See also the documentation for `billing_scheme`.",
"items": {
"description": "",
"properties": {
"flat_amount": {
"description": "Price for the entire tier.",
"nullable": true,
"type": "integer"
},
"flat_amount_decimal": {
"description": "Same as `flat_amount`, but contains a decimal value with at most 12 decimal places.",
"format": "decimal",
"nullable": true,
"type": "string"
},
"unit_amount": {
"description": "Per unit price for units relevant to the tier.",
"nullable": true,
"type": "integer"
},
"unit_amount_decimal": {
"description": "Same as `unit_amount`, but contains a decimal value with at most 12 decimal places.",
"format": "decimal",
"nullable": true,
"type": "string"
},
"up_to": {
"description": "Up to and including to this quantity will be contained in the tier.",
"nullable": true,
"type": "integer"
}
},
"title": "PriceTier",
"type": "object",
"x-expandableFields": []
},
"type": "array"
},
"unit_amount": {
"description": "The unit amount in cents (or local equivalent) to be charged, represented as a whole integer if possible. Only set if `billing_scheme=per_unit`.",
"nullable": true,
"type": "integer"
},
"unit_amount_decimal": {
"description": "The unit amount in cents (or local equivalent) to be charged, represented as a decimal string with at most 12 decimal places. Only set if `billing_scheme=per_unit`.",
"format": "decimal",
"nullable": true,
"type": "string"
}
},
"title": "CurrencyOption",
"type": "object",
"x-expandableFields": [
"custom_unit_amount",
"tiers"
]
},
"description": "Prices defined in each available currency option. Each key must be a three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html) and a [supported currency](https://stripe.com/docs/currencies).",
"type": "object"
},
"custom_unit_amount": {
"anyOf": [
{
"$ref": "#/components/schemas/custom_unit_amount"
}
],
"description": "When set, provides configuration for the amount to be adjusted by the customer during Checkout Sessions and Payment Links.",
"nullable": true
},
"id": {
"description": "Unique identifier for the object.",
"maxLength": 5000,
"type": "string"
},
"livemode": {
"description": "Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.",
"type": "boolean"
},
"lookup_key": {
"description": "A lookup key used to retrieve prices dynamically from a static string. This may be up to 200 characters.",
"maxLength": 5000,
"nullable": true,
"type": "string"
},
"metadata": {
"additionalProperties": {
"maxLength": 500,
"type": "string"
},
"description": "Set of [key-value pairs](https://docs.stripe.com/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.",
"type": "object"
},
"nickname": {
"description": "A brief description of the price, hidden from customers.",
"maxLength": 5000,
"nullable": true,
"type": "string"
},
"object": {
"description": "String representing the object's type. Objects of the same type share the same value.",
"enum": [
"price"
],
"type": "string"
},
"product": {
"anyOf": [
{
"maxLength": 5000,
"type": "string"
},
{
"$ref": "#/components/schemas/product"
},
{
"$ref": "#/components/schemas/deleted_product"
}
],
"description": "The ID of the product this price is associated with.",
"x-expansionResources": {
"oneOf": [
{
"$ref": "#/components/schemas/product"
},
{
"$ref": "#/components/schemas/deleted_product"
}
]
}
},
"recurring": {
"anyOf": [
{
"$ref": "#/components/schemas/recurring"
}
],
"description": "The recurring components of a price such as `interval` and `usage_type`.",
"nullable": true
},
"tax_behavior": {
"description": "Only required if a [default tax behavior](https://docs.stripe.com/tax/products-prices-tax-categories-tax-behavior#setting-a-default-tax-behavior-(recommended)) was not provided in the Stripe Tax settings. Specifies whether the price is considered inclusive of taxes or exclusive of taxes. One of `inclusive`, `exclusive`, or `unspecified`. Once specified as either `inclusive` or `exclusive`, it cannot be changed.",
"enum": [
"exclusive",
"inclusive",
"unspecified"
],
"nullable": true,
"type": "string"
},
"tiers": {
"description": "Each element represents a pricing tier. This parameter requires `billing_scheme` to be set to `tiered`. See also the documentation for `billing_scheme`.",
"items": {
"description": "",
"properties": {
"flat_amount": {
"description": "Price for the entire tier.",
"nullable": true,
"type": "integer"
},
"flat_amount_decimal": {
"description": "Same as `flat_amount`, but contains a decimal value with at most 12 decimal places.",
"format": "decimal",
"nullable": true,
"type": "string"
},
"unit_amount": {
"description": "Per unit price for units relevant to the tier.",
"nullable": true,
"type": "integer"
},
"unit_amount_decimal": {
"description": "Same as `unit_amount`, but contains a decimal value with at most 12 decimal places.",
"format": "decimal",
"nullable": true,
"type": "string"
},
"up_to": {
"description": "Up to and including to this quantity will be contained in the tier.",
"nullable": true,
"type": "integer"
}
},
"title": "PriceTier",
"type": "object",
"x-expandableFields": []
},
"type": "array"
},
"tiers_mode": {
"description": "Defines if the tiering price should be `graduated` or `volume` based. In `volume`-based tiering, the maximum quantity within a period determines the per unit price. In `graduated` tiering, pricing can change as the quantity grows.",
"enum": [
"graduated",
"volume"
],
"nullable": true,
"type": "string"
},
"transform_quantity": {
"anyOf": [
{
"$ref": "#/components/schemas/transform_quantity"
}
],
"description": "Apply a transformation to the reported usage or set quantity before computing the amount billed. Cannot be combined with `tiers`.",
"nullable": true
},
"type": {
"description": "One of `one_time` or `recurring` depending on whether the price is for a one-time purchase or a recurring (subscription) purchase.",
"enum": [
"one_time",
"recurring"
],
"type": "string"
},
"unit_amount": {
"description": "The unit amount in cents (or local equivalent) to be charged, represented as a whole integer if possible. Only set if `billing_scheme=per_unit`.",
"nullable": true,
"type": "integer"
},
"unit_amount_decimal": {
"description": "The unit amount in cents (or local equivalent) to be charged, represented as a decimal string with at most 12 decimal places. Only set if `billing_scheme=per_unit`.",
"format": "decimal",
"nullable": true,
"type": "string"
}
},
"required": [
"active",
"billing_scheme",
"created",
"currency",
"id",
"livemode",
"metadata",
"object",
"product",
"type"
],
"title": "Price",
"type": "object",
"x-expandableFields": [
"currency_options",
"custom_unit_amount",
"product",
"recurring",
"tiers",
"transform_quantity"
],
"x-resourceId": "price"
},
"type": "array"
},
"has_more": {
"description": "True if this list has another page of items after this one that can be fetched.",
"type": "boolean"
},
"object": {
"description": "String representing the object's type. Objects of the same type share the same value. Always has the value `list`.",
"enum": [
"list"
],
"type": "string"
},
"url": {
"description": "The URL where this list can be accessed.",
"maxLength": 5000,
"pattern": "^/v1/prices",
"type": "string"
}
},
"required": [
"data",
"has_more",
"object",
"url"
],
"title": "PriceList",
"type": "object",
"x-expandableFields": [
"data"
]
}Usage
from ocp_agent import OCPAgent
agent = OCPAgent()
await agent.register_api('stripe')
# Call this tool
result = await agent.call_tool('getPrices', {
# Add required parameters here
})