Introduction
The Homesoon Third-Party API lets partners integrate their systems with Homesoon workspaces — manage constructions, tasks, appointments, supervisors, and Shabelabo voice-minute records.
Base URL
| Environment | URL |
|---|---|
| Production | https://api.homesoon.jp/api |
| Staging | https://staging.api.homesoon.jp/api |
| Development | https://develop.api.homesoon.jp/api |
All endpoints live under the /v1/third-party/ prefix.
Conventions
- Every response is wrapped:
{"status": "success", "data": {...}, "meta": {...}, "error": null}
- Errors flip
statusto"failure"and put the diagnostic inerror. - Timestamps are ISO 8601, UTC.
- Pagination uses
page(1-based) andpaging(page size, max 100).
Next steps
- Register your origin — see Authentication.
- Try
POST /v1/third-party/refresh_tokensto mint an access token. - Browse the API Reference for endpoint details.