Returns all public data about a project — name, plans, features, prices, and theme settings.
This is the same data the embed widget uses internally.
Endpoint
Parameters
Response
Longer description for the pricing page header
Currency code (e.g. “USD”)
Discount for annual billing (e.g. 0.2 = 20% off)
List of pricing plans with features
All features in the project
Colors, fonts, CSS, layout settings
Example
curl https://cuprice.io/api/share/nTZ7axXQHU
{
"id": 203,
"name": "My SaaS",
"currency": "USD",
"annualDiscount": 0.2,
"plans": [
{
"id": 100,
"name": "Pro",
"isPopular": true,
"features": [
{ "name": "AI Prompt", "included": true, "limit": null },
{ "name": "API Calls", "included": true, "limit": 1000 }
]
}
],
"features": [
{ "name": "AI Prompt", "featureType": "Standart", "basePrice": 10 },
{ "name": "API Calls", "featureType": "Limits", "basePrice": 5 }
]
}