# Retrieve a plan Retrieves the plan with the given ID. ## Returns Returns a plan if a valid plan ID was provided. Raises [an error](https://docs.stripe.com/api/plans/retrieve.md#errors) otherwise. ```curl curl https://api.stripe.com/v1/plans/plan_NjpIbv3g3ZibnD \ -u "<>" ``` ### Response ```json { "id": "plan_NjpIbv3g3ZibnD", "object": "plan", "active": true, "amount": 1200, "amount_decimal": "1200", "billing_scheme": "per_unit", "created": 1681851647, "currency": "usd", "interval": "month", "interval_count": 1, "livemode": false, "metadata": {}, "nickname": null, "product": "prod_NjpI7DbZx6AlWQ", "tiers_mode": null, "transform_usage": null, "trial_period_days": null, "usage_type": "licensed" } ```