# Rentalia House

The only public guest-review vertical. Contact emails and phone fields are stripped.

- **Documentation:** [https://scrappa.co/docs/rentalia-api/rentalia_house](https://scrappa.co/docs/rentalia-api/rentalia_house)
- **API group:** Rentalia API
- **Endpoint:** `GET https://scrappa.co/api/rentalia/house`

## Authentication

Send your Scrappa API key in the `X-API-KEY` request header. Paid endpoints also support accountless x402 payments when called without an API key.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `id` | string | Yes | Rentalia house id, for example 978257. |
| `lang` | string | No | Response language, default es. |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/rentalia/house?id=978257&lang=es"
```

## Example response

```json
{
    "success": true,
    "data": {
        "id": 978257,
        "opinions": [],
        "opinionCount": 4
    }
}
```

## Errors

| Status | Error | Description |
| --- | --- | --- |
| 404 | Not Found | The requested house was not found. This response is not billable. |
| 422 | Validation Error | A public parameter is invalid. This response is not billable. |
| 503 | Service Unavailable | The service could not obtain a complete result. This response is not billable. |

## More Scrappa resources

- [API documentation](https://scrappa.co/docs)
- [Full LLM-readable API reference](https://scrappa.co/llms-full.txt)
- [OpenAPI specification](https://scrappa.co/docs/api.json)
- [Pricing](https://scrappa.co/pricing)
