Reviews
GET
/reviews
Response
Status: 200 OK
[
{
id: 1,
feedback: 'Smart real estate service, low taxes, and interest',
rating: 5,
avatar: 'https://frontend-test-api.vercel.app/users/anna.jpeg',
}
]Transactions
GET
/transactions
Response
Status: 200 OK
[
{
id: 1,
slug: "buy",
propertyTypes: [1, 2, 3, 4, 5, 6, 7, 8],
},
{
id: 2,
slug: "rent",
propertyTypes: [1, 2, 3, 4],
},
]Property types
GET
/propertyTypes
Response
Status: 200 OK
[
{
id: 1,
slug: "apartment",
},
{
id: 2,
slug: "studio",
},
]States
GET
/states
Response
Status: 200 OK
[
{
id: 1,
slug: "california",
},
{
id: 2,
slug: "kansas",
},
{
id: 3,
slug: "colorado",
},
]Cities
GET
/cities
Response
Status: 200 OK
[
{
id: 1,
slug: "alameda",
zip: "1234",
state: 1,
},
{
id: 2,
slug: "albany",
zip: "1235",
state: 1,
},
{
id: 3,
slug: "antioch",
zip: "1236",
state: 1,
},
{
id: 4,
slug: "berkeley",
zip: "1237",
state: 1,
}
]Categories
GET
/categories
Response
Status: 200 OK
[
{
id: 1,
slug: "residential",
},
{
id: 2,
slug: "commercial",
},
{
id: 3,
slug: "industrial",
}
]Properties
GET
/properties
Parameters
| Name | Type | In | Description |
|---|---|---|---|
| category | number | query | Setting it to 1 will bring all residential properties. |
Response
Status: 200 OK
[
{
id: 1,
title: "Hilltruck Valley",
image: "https://frontend-test-api.vercel.app/properties/architecture-1836070_1280.webp",
price: 576261,
city: 4,
baths: 1,
beds: 4,
sqft: 1844,
category: 1,
}
]