div strong 🔨 In Development — This section is still being developed and may change. Get a specific pricing tier by ID. Returns pricing tier details including name, description, discount percentage, and active status. ## Path Parameters **`tier_id`** string required The unique identifier of the pricing tier to retrieve. ## Returns Returns a pricing tier object if found. Returns a 404 error if the tier doesn't exist. ```bash cURL curl https://api.aitronos.com/v1/pricing-tiers/tier_enterprise \ -H "X-API-Key: $FREDDY_API_KEY" ``` ```python Python import os import requests api_key = os.environ["FREDDY_API_KEY"] response = requests.get( "https://api.aitronos.com/v1/pricing-tiers/tier_enterprise", headers={"X-API-Key": api_key} ) tier = response.json() ``` ```javascript JavaScript const apiKey = process.env.FREDDY_API_KEY; const response = await fetch( 'https://api.aitronos.com/v1/pricing-tiers/tier_enterprise', { headers: { 'X-API-Key': apiKey } } ); const tier = await response.json(); ``` ## Response ```json { "id": "tier_enterprise", "name": "Enterprise", "description": "Enterprise pricing tier with volume discounts", "discount_percentage": 15.0, "is_active": true } ``` ## Error Responses ### 404 Not Found ```json { "success": false, "error": { "code": "RESOURCE_NOT_FOUND", "message": "Pricing tier 'tier_custom' not found", "status": 404, "details": { "tier_id": "tier_custom" } } } ```