"""
اختبار الـ API الحقيقي مع طلب HTTP
"""
import requests
import json

# جلب الإعدادات مباشرة
response = requests.get("http://localhost:8000/api/v1/settings")
print(f"Status: {response.status_code}")
print(f"Response: {json.dumps(response.json(), indent=2, ensure_ascii=False)}")
