← Home
Get VAS Products Pricing
Get VAS Products Pricing
Calculate Property Add On Products Pricing
🔐 Bearer Token: Provide your bearer token in the Authorization header when making requests to protected resources.
Query Parameters
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
| property_id | string | Optional | Property ID | 8972458 |
| portal | string | Optional | Portal name : bayut or dubizzle , leave this field null for both portals pricing | bayut |
Response Schema
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
| data | array[object] | Optional | ||
| product | string | Optional | ||
| variant | string | Optional | ||
| amount | integer | Optional |
Responses
200✅
Code Examples
curl --location 'https://api.bayut.com/v1/properties/8972458/pricing?portal=bayut' \
--header 'Authorization: Bearer <token>'{
"data": [
{
"product": "publish-property",
"variant": "30_days",
"amount": 16,
"portal": "bayut"
},
{
"product": "hot",
"variant": "7_days",
"amount": 237,
"portal": "bayut"
},
{
"product": "hot",
"variant": "14_days",
"amount": 281,
"portal": "bayut"
},
{
"product": "hot",
"variant": "30_days",
"amount": 431,
"portal": "bayut"
},
{
"product": "signature",
"variant": "7_days",
"amount": 968,
"portal": "bayut"
},
{
"product": "signature",
"variant": "14_days",
"amount": 1076,
"portal": "bayut"
},
{
"product": "signature",
"variant": "30_days",
"amount": 1655,
"portal": "bayut"
},
{
"product": "publish-property",
"variant": "30_days",
"amount": 15,
"portal": "dubizzle"
},
{
"product": "featured",
"variant": "7_days",
"amount": 100,
"portal": "dubizzle"
},
{
"product": "featured",
"variant": "14_days",
"amount": 117,
"portal": "dubizzle"
},
{
"product": "featured",
"variant": "30_days",
"amount": 170,
"portal": "dubizzle"
},
{
"product": "premium",
"variant": "7_days",
"amount": 543,
"portal": "dubizzle"
},
{
"product": "premium",
"variant": "14_days",
"amount": 636,
"portal": "dubizzle"
},
{
"product": "premium",
"variant": "30_days",
"amount": 924,
"portal": "dubizzle"
}
]
}