Qlik Cloud Apps API

The Apps API from Qlik Cloud — 6 operation(s) for apps.

Operations 9

POST /api/v1/apps Create app #
GET /api/v1/apps/{appId} Get app #
PUT /api/v1/apps/{appId} Update app #
DELETE /api/v1/apps/{appId} Delete app #
POST /api/v1/apps/{appId}/copy Copy app #
POST /api/v1/apps/{appId}/publish Publish app #
PUT /api/v1/apps/{appId}/publish Republish app #
GET /api/v1/apps/{appId}/data/lineage Get app data lineage #
GET /api/v1/apps/{appId}/data/metadata Get app metadata #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/qlik-cloud-apps-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

qlik-cloud-apps-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Qlik Cloud REST Api Keys Apps API
  description: Qlik Cloud REST API for managing users, apps, spaces, groups, data connections, reports, OAuth clients, API keys, and webhooks.
  version: 1.0.0
  x-generated-from: https://qlik.dev/apis/rest
  x-generated-by: claude-crawl-2026-05-08
servers:
- url: https://your-tenant.region.qlikcloud.com
  description: Qlik Cloud tenant
security:
- bearerAuth: []
tags:
- name: Apps
paths:
  /api/v1/apps:
    post:
      summary: Create app
      operationId: createApp
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GenericRequest'
      responses:
        '201':
          description: App created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericResponse'
      tags:
      - Apps
  /api/v1/apps/{appId}:
    parameters:
    - in: path
      name: appId
      required: true
      schema:
        type: string
    get:
      summary: Get app
      operationId: getApp
      responses:
        '200':
          description: App details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericResponse'
      tags:
      - Apps
    put:
      summary: Update app
      operationId: updateApp
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GenericRequest'
      responses:
        '200':
          description: App updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericResponse'
      tags:
      - Apps
    delete:
      summary: Delete app
      operationId: deleteApp
      responses:
        '204':
          description: Deleted
      tags:
      - Apps
  /api/v1/apps/{appId}/copy:
    parameters:
    - in: path
      name: appId
      required: true
      schema:
        type: string
    post:
      summary: Copy app
      operationId: copyApp
      responses:
        '200':
          description: App copied
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericResponse'
      tags:
      - Apps
  /api/v1/apps/{appId}/publish:
    parameters:
    - in: path
      name: appId
      required: true
      schema:
        type: string
    post:
      summary: Publish app
      operationId: publishApp
      responses:
        '200':
          description: App published
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericResponse'
      tags:
      - Apps
    put:
      summary: Republish app
      operationId: republishApp
      responses:
        '200':
          description: App republished
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericResponse'
      tags:
      - Apps
  /api/v1/apps/{appId}/data/lineage:
    parameters:
    - in: path
      name: appId
      required: true
      schema:
        type: string
    get:
      summary: Get app data lineage
      operationId: getAppLineage
      responses:
        '200':
          description: Lineage data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericResponse'
      tags:
      - Apps
  /api/v1/apps/{appId}/data/metadata:
    parameters:
    - in: path
      name: appId
      required: true
      schema:
        type: string
    get:
      summary: Get app metadata
      operationId: getAppMetadata
      responses:
        '200':
          description: App metadata
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericResponse'
      tags:
      - Apps
components:
  schemas:
    GenericResponse:
      type: object
      additionalProperties: true
    GenericRequest:
      type: object
      additionalProperties: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer