Overview
- Skill Key
- angelstreet/smoobu
- Author
- angelstreet
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/angelstreet/smoobu
- Latest Commit SHA
- ea63161888f404dc7027fb2de2e31c9c5e5d1fd1
Interact with Smoobu property management API. Use for checking bookings, availability, managing reservations, and listing apartments/properties. Triggers on rental property management, Airbnb sync, vacation rental bookings, guest management.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 smoobu 技能。 若已安装,则直接安装 smoobu 技能。
# Smoobu Property Management
Smoobu is a channel manager for vacation rentals (Airbnb, Booking.com, etc).
## Setup
Requires `SMOOBU_API_KEY` in `~/.openclaw/.env`:
```
SMOOBU_API_KEY=your_api_key_here
```
Find your API key in Smoobu: Settings → Developers
## Quick Reference
### API Base
`https://login.smoobu.com`
### Authentication
Header: `Api-Key: {SMOOBU_API_KEY}`
### Rate Limit
1000 requests/minute
## Common Operations
### List Properties
```bash
curl -s "https://login.smoobu.com/api/apartments" \
-H "Api-Key: $SMOOBU_API_KEY" | jq
```
### Get Bookings
```bash
# All bookings
curl -s "https://login.smoobu.com/api/reservations" \
-H "Api-Key: $SMOOBU_API_KEY" | jq
# Filter by dates
curl -s "https://login.smoobu.com/api/reservations?from=2026-02-01&to=2026-02-28" \
-H "Api-Key: $SMOOBU_API_KEY" | jq
# Filter by apartment
curl -s "https://login.smoobu.com/api/reservations?apartmentId=123" \
-H "Api-Key: $SMOOBU_API_KEY" | jq
```
### Check Availability
```bash
curl -s -X POST "https://login.smoobu.com/booking/checkApartmentAvailability" \
-H "Api-Key: $SMOOBU_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"arrivalDate": "2026-03-01",
"departureDate": "2026-03-05",
"apartments": [123, 456]
}' | jq
```
### Create Booking
```bash
curl -s -X POST "https://login.smoobu.com/api/reservations" \
-H "Api-Key: $SMOOBU_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"arrivalDate": "2026-03-01",
"departureDate": "2026-03-05",
"apartmentId": 123,
"channelId": 70,
"firstName": "John",
"lastName": "Doe",
"email": "john@example.com",
"adults": 2
}' | jq
```
### Update Booking
```bash
curl -s -X PUT "https://login.smoobu.com/api/reservations/{id}" \
-H "Api-Key: $SMOOBU_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"arrivalTime": "15:00",
"departureTime": "11:00",
"notice": "Late checkout requested"
}' | jq
```
### Get User Profile
```bash
curl -s "https://...
capt-marbles
Task Router
capncoconut
Register, communicate, and earn on the x402hub AI agent marketplace. Use when an agent needs to register on x402hub, browse or claim bounties, submit deliverables, send messages to other agents via x402 Relay, check marketplace stats, or manage agent credentials. Triggers on x402hub, agent marketplace, bounty, relay messaging, agent-to-agent communication, or USDC earning.
capevace
Real-time event bus for AI agents. Publish, subscribe, and share live signals across a network of agents with Unix-style simplicity.
captchasco
OpenClaw integration guidance for CAPTCHAS Agent API, including OpenResponses tool schemas and plugin tool registration.
carol-gutianle
name: modelready description: Start using a local or Hugging Face model instantly, directly from chat. metadata: {"openclaw":{"requires":{"bins": "bash", "curl" }, "env": "URL" }}
canbirlik
Controls Wiz smart bulbs (turn on/off, RGB colors, disco mode) via local WiFi.