Skip to main content
GET
/
vendors
Search vendors
curl --request GET \
  --url https://www.renovationfind.com/rest-manager-api-v1/vendors \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "content": [
      {
        "id": 1234,
        "vendorName": "ABC Renovations",
        "email": "info@abcrenovations.com",
        "cityName": "Calgary",
        "provinceName": "Alberta",
        "activated": true,
        "packageType": 1
      }
    ],
    "totalElements": 123,
    "totalPages": 123,
    "size": 123,
    "number": 123
  }
}

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.

Authorizations

Authorization
string
header
required

JWT token issued from the RenovationFind Manager Portal

Query Parameters

Search query matching vendor name or ID

page
integer
default:0
Required range: x >= 0
size
integer
default:10

Page size (max 100)

Required range: 1 <= x <= 100

Response

Paginated list of matching vendors

success
boolean
Example:

true

data
object