> ## Documentation Index
> Fetch the complete documentation index at: https://docs.renovationfind.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> Getting started with the RenovationFind API

# RenovationFind API

The RenovationFind API allows vendors and integrations to programmatically interact
with RenovationFind services, including the Customer Feedback System, reputation
management, and more.

## Base URL

All API requests are made to:

```
https://www.renovationfind.com/rest-api-v1
```

## Response Format

All responses use a consistent envelope:

```json theme={null}
{
  "success": true,
  "data": { },
  "message": "Optional message"
}
```

On error:

```json theme={null}
{
  "success": false,
  "error": "Error description"
}
```

## Rate Limits

API requests are rate-limited to **250 requests per 5 minutes** per vendor.

When exceeded, the API returns `429 Too Many Requests` with a `Retry-After: 300` header.
