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!
How It Works
- • Write your solution in the code editor
- • This challenge runs without connecting your own org
- • Submit to check if your solution passes
- • Use hints if you get stuck
Contest Alert
🏆 #CodeEveryDay July 2026
Contest runs July 1 - 31. Complete challenges to climb the leaderboard!
Only the 31 daily challenges shown during this contest count toward points. Earlier dailies don't carry over.