Skip to content
KismetKismetDevelopers
llms.txt

Get a published vacation rental manager

View .md

GET /v1/developer/collections/{collection}

Operation ID: getVacationRentalManager

Returns published, non-transactional Kismet content within the authenticated application grant. No rates, availability, indicative pricing, booking URL, draft state, or vendor payload is returned.

Field Value
Maturity beta
Required capability collections.read
Freshness class published-content
Quota cost 1
Operational owner API + Developer Experience

All operations require a Kismet Developer Bearer credential. Collection and resource authority is resolved from the credential’s installation grants; identifiers in the URL never grant access.

Name In Type Required Description
collection path string yes

This operation has no JSON request body.

Terminal window
curl --request GET \
"$KISMET_API_ORIGIN/v1/developer/collections/sand-sea-condos" \
--header "Authorization: Bearer $KISMET_DEVELOPER_API_KEY" \
--header "Accept: application/json"
Status Meaning
200 Success.
400 Invalid request parameters or body.
401 Missing, invalid, expired, or inappropriate credential/session.
403 Credential lacks the required grant/capability, or an origin/CSRF check failed.
429 Rate limit or quota exceeded; inspect response metadata before retrying.
503 A required Kismet dependency is temporarily unavailable.
{
"resourceType": "collection",
"type": "vacation_rental_manager",
"id": "11111111-1111-4111-8111-111111111111",
"slug": "sandbox-stays",
"name": "Sandbox Stays",
"description": "Evaluation collection used in developer sandbox examples.",
"brand": {
"logoUrl": "https://cdn.kismet.travel/sandbox/logo.png",
"faviconUrl": "https://cdn.kismet.travel/sandbox/favicon.ico",
"primaryColor": "#3b0014",
"secondaryColor": "#677251"
},
"links": {
"self": "/v1/developer/collections/11111111-1111-4111-8111-111111111111",
"vacationRentals": "/v1/developer/collections/11111111-1111-4111-8111-111111111111/vacation-rentals",
"website": "https://sandbox-stays.example"
},
"propertyCount": 2,
"publication": {
"updatedAt": "2026-07-01T00:00:00.000Z"
}
}