curl --request GET \
--url https://api.example.com/categories{
"error": true,
"categorieList": [
{
"id": 123,
"name": "<string>",
"created_at": "<string>"
}
]
}Retrieve a list of all categories
curl --request GET \
--url https://api.example.com/categories{
"error": true,
"categorieList": [
{
"id": 123,
"name": "<string>",
"created_at": "<string>"
}
]
}Documentation Index
Fetch the complete documentation index at: https://mintlify.com/andreguti9190/Sistema-de-gestion-de-ventas--Nodejs/llms.txt
Use this file to discover all available pages before exploring further.
GET /categories
false for successful requests.{
"error": false,
"categorieList": [
{
"id": 1,
"name": "bebidas",
"created_at": "2026-02-28T14:50:19.000Z"
},
{
"id": 2,
"name": "alfajores",
"created_at": "2026-02-28T15:03:53.000Z"
},
{
"id": 3,
"name": "galletas",
"created_at": "2026-02-28T15:04:00.000Z"
}
]
}