This question runs in a pre-configured Salesforce environment - no personal connection required.
Create a method that fetches products from a specific category using the DummyJSON API and returns a list of product titles. The API endpoint is https://dummyjson.com/products/category/{category}. If the HTTP request fails or returns an error, return an empty list.
Examples:
Input: category = 'smartphones'
Output: ['iPhone 9', 'iPhone X', 'Samsung Universe 9', 'OPPOF19', 'Huawei P30']
Explanation: Returns list of smartphone product titles from the API
Input: category = 'laptops'
Output: ['MacBook Pro', 'Samsung Galaxy Book', 'Microsoft Surface Laptop 4', 'Infinix INBOOK', 'HP Pavilion 15-DK1056WM']
Explanation: Returns list of laptop product titles from the API
Input: category = 'invalid-category'
Output: []
Explanation: Returns empty list for invalid category
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.