Skip to main content
FuseFuse
IntegrationsApple businessActions

List Apple Business apps

List apps from the Apple Business API.

Agent markdown

apps.list · Apple Business · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

  • apple.apps.read

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
page_sizeintegerNominimum 1; maximum 100
cursorstringNominLength 1; maxLength 512

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
appsarray<object>YesmaxItems 100
apps[]objectYesadditionalProperties false
apps[].idstringYesminLength 1; maxLength 200
apps[].namestringNomaxLength 512
apps[].bundle_idstringNomaxLength 256
apps[].adam_idstringNomaxLength 128
apps[].platformstringNomaxLength 128
next_cursorstringNominLength 1; maxLength 512

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    },
    "cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  }
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "apps": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 200
          },
          "name": {
            "type": "string",
            "maxLength": 512
          },
          "bundle_id": {
            "type": "string",
            "maxLength": 256
          },
          "adam_id": {
            "type": "string",
            "maxLength": 128
          },
          "platform": {
            "type": "string",
            "maxLength": 128
          }
        },
        "required": [
          "id"
        ]
      },
      "maxItems": 100
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  },
  "required": [
    "apps"
  ]
}