Docs/Reference

Passthrough Requests

Send raw requests directly to the underlying PMS API when you need platform-specific features.

GET/v1/passthrough/:provider/:resource

Proxy a request to the PMS API

Account Required

This endpoint requires an X-Account-Id header in addition to standard authentication.

Note

Resources: listings, reservations, calendar, conversations, messages, health. Provider: hostaway, guesty, ownerrez, smoobu, beds24, igms, hospitable, lodgify, bookingsync.

Request

curl https://api.repull.dev/v1/passthrough/hostaway/listings \
  -H "Authorization: Bearer sk_test_YOUR_KEY" \
  -H "X-Workspace-Id: YOUR_WORKSPACE_ID"

Response

{ "data": [...], "hasMore": false, "cursor": null }
AI