Returns B2B wholesale and B2C retail pricing for a course grouped by season. All prices are net (excluding VAT) — each reseller must apply their own VAT.
Get Course Pricing
GET /courses/{id}/pricing
Path Parameters
Parameter Type Description idstring Course document ID or booking code
Query Parameters
Parameter Type Description startDatestring Start date for pricing period (YYYY-MM-DD) endDatestring End date for pricing period (YYYY-MM-DD), up to 400 days in the future holeCountinteger Filter by hole count (9 or 18) includeExtraProductsboolean Include extra products like buggy, clubs (default: false)
Response
{
"data" : {
"courseId" : "abc123def456" ,
"courseName" : "Golf Costa del Sol" ,
"country" : "ES" ,
"currency" : "EUR" ,
"seasons" : [
{
"season" : "High Season 2026" ,
"seasonType" : "high_season" ,
"validFrom" : "2026-04-01" ,
"validTo" : "2026-10-31" ,
"currency" : "EUR" ,
"prices" : [
{
"itemType" : "green_fee_18" ,
"holeCount" : 18 ,
"b2bPrice" : 65.00 ,
"retailPrice" : 85.00 ,
"currency" : "EUR" ,
"weekdayRules" : null
},
{
"itemType" : "green_fee_9" ,
"holeCount" : 9 ,
"b2bPrice" : 38.00 ,
"retailPrice" : 50.00 ,
"currency" : "EUR" ,
"weekdayRules" : null
}
]
},
{
"season" : "Low Season 2026-2027" ,
"seasonType" : "low_season" ,
"validFrom" : "2026-11-01" ,
"validTo" : "2027-03-31" ,
"currency" : "EUR" ,
"prices" : [
{
"itemType" : "green_fee_18" ,
"holeCount" : 18 ,
"b2bPrice" : 55.00 ,
"retailPrice" : 72.00 ,
"currency" : "EUR" ,
"weekdayRules" : null
}
]
}
]
},
"meta" : {
"requestedPeriod" : {
"startDate" : "2026-04-01" ,
"endDate" : "2027-03-31"
},
"holeCount" : "all" ,
"includeExtraProducts" : false ,
"totalSeasons" : 2
}
}
When includeExtraProducts=true, each season may include an extraProducts array with additional services:
{
"season" : "High Season 2026" ,
"seasonType" : "high_season" ,
"validFrom" : "2026-04-01" ,
"validTo" : "2026-10-31" ,
"currency" : "EUR" ,
"prices" : [ ... ],
"extraProducts" : [
{
"itemType" : "buggy" ,
"name" : "buggy" ,
"category" : "golf" ,
"b2bPrice" : 28.00 ,
"retailPrice" : 35.00 ,
"currency" : "EUR"
},
{
"itemType" : "club_rental" ,
"name" : "club_rental" ,
"category" : "golf" ,
"b2bPrice" : 32.00 ,
"retailPrice" : 45.00 ,
"currency" : "EUR"
}
]
}
Price Fields
Field Description b2bPriceB2B wholesale price for travel agencies (net, excl. VAT) retailPriceB2C retail price for end customers (net, excl. VAT)
All prices are net prices excluding VAT. Each reseller is responsible for applying the applicable VAT rate based on their jurisdiction.
Use this endpoint for displaying general pricing information. For exact real-time pricing at booking time, use the tee time availability endpoint.
Last modified on March 11, 2026