action reverb_get_shops_slug { label: "Get details on a shop." description: "Get details on a shop." provider: reverb method: GET path: "/shops/{slug}" encoding: json input: { type: "object" properties: { include_listing_count: { type: "boolean" } slug: { type: "string" } } required: ["slug"] additionalProperties: false } output: { type: "object" additionalProperties: true } }