Switch to Raw / Pretty View
In Postman, select the "Pretty" or "Raw" view instead of Table.
This will let you scroll through the full JSON.
Paginate Your API (Best Practice 🚀)
Instead of returning all categories at once, return data in pages.
Example:
GET /api/administrateur/categories?page=1&limit=50
This makes responses smaller, faster, and easier to display.
Download the Responses
In Postman, click Save Response → Save to File and open it in VS Code or a JSON viewer.