Products
Get Product
GET

/v1/products/{product_api_id}

X-Api-Key*
curl --request GET \
  --url https://client.corrily.com/v1/products/{product_api_id} \
  --header 'X-Api-Key: <x-api-key>'
curl --location --request GET 'https://client.corrily.com/mainapi/v1/products/monthly'
{
  "message": "Successfully retrieved product.",
  "success": true,
  "api_id": "monthly",
  "name": "Monthly Product",
  "base_px": 10.0,
  "max_px": 999.0,
  "min_px": 0.0,
  "country_prices": [
    {
      "country": "ES",
      "local_price": 50.0,
      "currency": "EUR"
    }
  ],
  "integrations": [
    {
      "type": "stripe",
      "stripe_product_id": "my_stripe_pid"
    }
  ]
}

Path Params

product_api_idrequired
string

The api ID of the product.