/catalog/servicesList visible services available for short-term rentals.
Request
Auth
- Authorization: Bearer smsi_your_key
Body
- None.
Success Response
200 OKReturns visible services with display name, minimum price in USD, and total available count. min_price and total_count are always present; either can be null when upstream stats are unavailable. min_price is an approximate lowest price from the upstream catalog and may differ slightly from the cheapest offer surfaced by /catalog/price.
Errors
Error responses use the same envelope with data set to null and an error code/message payload.
401 AUTH_UNAUTHORIZED429 RATE_LIMITED500 INTERNAL_ERRORcurl \
-H "Authorization: Bearer smsi_your_key" \
"https://smsinbox.net/api/client/v1/catalog/services"{
"data": [
{
"slug": "wa",
"name": "WhatsApp",
"min_price": 0.135,
"total_count": 42
}
],
"error": null
}