This question runs in a pre-configured Salesforce environment - no personal connection required.
Make an HTTP callout to the DummyJSON API endpoint https://dummyjson.com/products/category/{category} to fetch products by category and return a list of product titles. Handle errors gracefully and return an empty list if the request fails.
Examples:
Input: category = 'smartphones'
Output: ['iPhone 9', 'iPhone X', 'Samsung Universe 9', 'OPPOF19', 'Huawei P30']
Explanation: Returns titles of all smartphones from the API
Input: category = 'laptops'
Output: ['MacBook Pro', 'Samsung Galaxy Book', 'Microsoft Surface Laptop 4', 'Infinix INBOOK', 'HP Pavilion 15-DK1056WM']
Explanation: Returns titles of all laptops from the API
Input: category = 'nonexistent'
Output: []
Explanation: Returns empty list for invalid categories
Apex Code Editor
Welcome to Lightning Challenge!
Create an Account
Sign up to track your progress, earn points, and compete with others. Your solutions will be saved automatically.
Create accountHow It Works
- • Write your solution in the code editor
- • Connect your Salesforce org to test
- • Submit to check if your solution passes
- • Use hints if you get stuck
Contest Alert
🏆 #CodeEveryDay Feb 2026
Contest runs February 1 - 28. Complete challenges to climb the leaderboard!
Points are calculated for challenges completed during the contest period.