> ## Documentation Index
> Fetch the complete documentation index at: https://densify-sync-changelog-9.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get subscription results (alias of cloud)



## OpenAPI

````yaml openapi/public_cloud/Subscriptions_Results.yaml GET /subscriptions/{subscriptionRef}
openapi: 3.1.0
info:
  title: Kubex – Subscriptions Results API
  version: 1.0.0
  description: >
    On-demand retrieval of the latest personalized subscription results.

    Alias without platform (`/subscriptions/{subscriptionRef}`) behaves like
    cloud. 
servers:
  - url: https://{host}
    variables:
      host:
        default: api.example.com
security: []
tags:
  - name: Subscriptions
paths:
  /subscriptions/{subscriptionRef}:
    get:
      tags:
        - Subscriptions
      summary: Get subscription results (alias of cloud)
      operationId: getSubscriptionResultsDefaultPlatform
      parameters:
        - $ref: '#/components/parameters/subscriptionRef'
        - $ref: '#/components/parameters/divider'
        - $ref: '#/components/parameters/limit'
      responses:
        '200':
          description: Subscription results (same shape as above)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SubscriptionResults'
components:
  parameters:
    subscriptionRef:
      name: subscriptionRef
      in: path
      required: true
      description: Unique subscription identifier.
      schema:
        type: string
    divider:
      name: divider
      in: query
      required: false
      description: >
        Display divider between properties and tags in each result:

        `"true"` (default) shows `"divider": "------------------------"`,
        `"false"` hides it. 
      schema:
        type: string
        enum:
          - 'true'
          - 'false'
        default: 'true'
    limit:
      name: limit
      in: query
      required: false
      description: >
        Maximum number of results to return. Default 3000; valid range 1–30000.

        Only applies to on-demand queries (no limit for scheduled webhook
        pushes). 
      schema:
        type: integer
        minimum: 1
        maximum: 30000
        default: 3000
  schemas:
    SubscriptionResults:
      type: object
      properties:
        subscription:
          $ref: '#/components/schemas/SubscriptionHeader'
        count:
          type: integer
          description: Number of recommendations in `results`.
        results:
          type: array
          items:
            $ref: '#/components/schemas/SubscriptionResultItem'
      required:
        - subscription
        - count
        - results
    SubscriptionHeader:
      type: object
      properties:
        name:
          type: string
        description:
          type: string
        created:
          type: string
          description: Datetime string.
        createdBy:
          type: string
        updated:
          type: string
          description: Datetime string.
        updatedBy:
          type: string
        lastRefreshed:
          type: string
          description: Datetime string; last recommendation analysis.
        owner:
          type: string
          description: Empty = global subscription; otherwise username.
    SubscriptionResultItem:
      type: object
      description: >
        One system recommendation as shaped by the subscription
        `returnStructure`.  

        May include `properties`, optional `divider`, and optional `tags`. 
      properties:
        divider:
          type: string
        tags:
          type: array
          items:
            type: string
      additionalProperties: true

````