Skip to main content
GET
/
v1
/
pricing
/
{pricingId}
Get Pricing
curl --request GET \
  --url https://api.monk.com/v1/pricing/{pricingId} \
  --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"
  }
}
Scope: pricing:read

Authorizations

Authorization
string
header
required

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

Path Parameters

pricingId
string
required

Response

Pricing found

data
object