Skip to main content
GET
/
v1
/
pricing
List Pricing
curl --request GET \
  --url https://api.monk.com/v1/pricing \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "productId": "<string>",
      "productName": "<string>",
      "name": "<string>",
      "description": "<string>",
      "model": "FLAT",
      "billingMode": "RECURRING",
      "tiering": "NONE",
      "unitAmount": "<string>",
      "flatAmount": "<string>",
      "priceInterval": "<string>",
      "priceIntervalCount": 123,
      "meterId": "<string>",
      "pricingTiers": [
        {
          "unitAmount": "<string>",
          "minQty": "<string>",
          "maxQty": "<string>",
          "flatAmount": "<string>"
        }
      ],
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "hasMore": true,
  "total": 123
}
Scope: pricing:read

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer
default:50
Required range: x <= 100
offset
integer
default:0
productId
string

Filter by product UUID

Response

Pricing list

data
object[]
hasMore
boolean
total
integer