TheDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/devdavco/backend_1/llms.txt
Use this file to discover all available pages before exploring further.
GET /espacios/all endpoint returns every coworking space that has been registered in the system as an ordered JSON array. This is the primary way to populate a space selector in a booking UI, build an admin inventory view, or verify which spaces exist before creating a reservation. The endpoint requires no parameters and no authentication.
Request
This endpoint accepts no query parameters, path parameters, or request body. No authentication headers are required.The list is unfiltered and unordered — it reflects the natural insertion order returned by the underlying
JpaRepository.findAll() call. If you need a specific ordering, sort the array client-side after receiving the response.Example request
Response
200 OK
Returns a JSON array of Espacio objects. If no spaces have been created yet, the array will be empty ([]).
Response fields (per array item)
Auto-generated unique identifier for the coworking space.
Human-readable name of the space. Up to 50 characters.
Functional category of the space (e.g.,
sala_reunion, auditorio, oficina_privada). Up to 30 characters.Maximum occupancy of the space expressed as a headcount.
Number of minutes automatically reserved after each booking ends for cleaning, before the next booking can start.