TheDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/nelrondon/backend-proyecto-estructuras/llms.txt
Use this file to discover all available pages before exploring further.
GET /api/properties/:id endpoint retrieves a single property listing by its unique UUID identifier. No authentication is required. The response wraps the property data inside a property key. If no record matching the provided id exists in the properties table, the server responds with a 500 error containing a descriptive message.
Endpoint
Authentication
None required. This is a public endpoint.Path Parameters
The UUID of the property to retrieve. Must exactly match a record in the
properties table. UUIDs are generated server-side when a property is created with POST /api/properties.Response
On success, the endpoint returns a JSON object with aproperty key containing the full property record.
Response Fields
The full property object for the requested listing.
Error Responses
| Status | Body | Description |
|---|---|---|
500 | { "error": "Propiedad no encontrada en la base de datos" } | No property record with the given id exists. |