{
  "openapi": "3.0.1",
  "info": {
    "title": "Cross-Platform Mobile App Feedback Intelligence",
    "description": "Compare Google Play and Apple App Store reviews to identify shared issues, Android-only and iOS-only bugs, feature requests, rating differences, and release-impact signals.",
    "version": "0.1",
    "x-build-id": "Wd0pF7HaQtCbsnsar"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/obliging_persimmon_cki~cross-platform-mobile-feedback/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-obliging_persimmon_cki-cross-platform-mobile-feedback",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/obliging_persimmon_cki~cross-platform-mobile-feedback/runs": {
      "post": {
        "operationId": "runs-sync-obliging_persimmon_cki-cross-platform-mobile-feedback",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/obliging_persimmon_cki~cross-platform-mobile-feedback/run-sync": {
      "post": {
        "operationId": "run-sync-obliging_persimmon_cki-cross-platform-mobile-feedback",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "required": [
          "products"
        ],
        "properties": {
          "mode": {
            "title": "Run mode",
            "enum": [
              "rawReviews",
              "feedbackAnalysis",
              "comparePlatforms",
              "releaseComparison"
            ],
            "type": "string",
            "description": "Choose raw collection, per-platform analysis, cross-platform comparison, or release comparison.",
            "default": "comparePlatforms"
          },
          "products": {
            "title": "Explicit product mappings",
            "minItems": 1,
            "maxItems": 50,
            "type": "array",
            "description": "Map each canonical product to one or both store app IDs or URLs. Apps are never matched automatically by name.",
            "items": {
              "type": "object",
              "properties": {
                "productId": {
                  "title": "Product ID",
                  "description": "Stable cross-platform identity.",
                  "type": "string",
                  "editor": "textfield"
                },
                "name": {
                  "title": "Product name",
                  "description": "Human-readable product name.",
                  "type": "string",
                  "editor": "textfield"
                },
                "googlePlayAppId": {
                  "title": "Google Play app ID",
                  "description": "Android package ID.",
                  "type": "string",
                  "editor": "textfield"
                },
                "googlePlayUrl": {
                  "title": "Google Play URL",
                  "description": "Public Google Play URL containing an id query parameter.",
                  "type": "string",
                  "editor": "textfield"
                },
                "appleAppId": {
                  "title": "Apple App Store app ID",
                  "description": "Numeric Apple app ID.",
                  "type": "string",
                  "editor": "textfield"
                },
                "appleAppStoreUrl": {
                  "title": "Apple App Store URL",
                  "description": "Public App Store URL containing an id segment.",
                  "type": "string",
                  "editor": "textfield"
                },
                "releases": {
                  "title": "Platform releases",
                  "description": "Separate Android and iOS release metadata for releaseComparison mode.",
                  "type": "object",
                  "editor": "json",
                  "properties": {
                    "android": {
                      "title": "Android release",
                      "description": "Android version and release timestamp.",
                      "type": "object",
                      "editor": "json",
                      "properties": {
                        "version": {
                          "title": "Version",
                          "description": "Android version.",
                          "type": "string",
                          "editor": "textfield"
                        },
                        "releasedAt": {
                          "title": "Released at",
                          "description": "Android ISO release timestamp.",
                          "type": "string",
                          "editor": "textfield"
                        }
                      }
                    },
                    "ios": {
                      "title": "iOS release",
                      "description": "iOS version and release timestamp.",
                      "type": "object",
                      "editor": "json",
                      "properties": {
                        "version": {
                          "title": "Version",
                          "description": "iOS version.",
                          "type": "string",
                          "editor": "textfield"
                        },
                        "releasedAt": {
                          "title": "Released at",
                          "description": "iOS ISO release timestamp.",
                          "type": "string",
                          "editor": "textfield"
                        }
                      }
                    }
                  }
                }
              }
            },
            "default": [
              {
                "productId": "spotify",
                "name": "Spotify",
                "googlePlayAppId": "com.spotify.music",
                "appleAppId": "324684580"
              }
            ]
          },
          "countries": {
            "title": "Countries",
            "type": "array",
            "description": "Two-letter storefront/country filters.",
            "items": {
              "type": "string",
              "pattern": "^[A-Za-z]{2}$"
            },
            "default": [
              "US"
            ]
          },
          "languages": {
            "title": "Languages",
            "type": "array",
            "description": "Two- or three-letter language filters.",
            "items": {
              "type": "string",
              "pattern": "^[A-Za-z]{2,3}$"
            },
            "default": [
              "en"
            ]
          },
          "ratings": {
            "title": "Ratings",
            "type": "array",
            "description": "Review star ratings to include.",
            "items": {
              "type": "integer",
              "minimum": 1,
              "maximum": 5
            },
            "default": [
              1,
              2,
              3,
              4,
              5
            ]
          },
          "dateRange": {
            "title": "Date range",
            "type": "object",
            "description": "Optional bounded collection window.",
            "properties": {
              "from": {
                "title": "From",
                "description": "ISO start timestamp.",
                "type": "string",
                "editor": "textfield"
              },
              "to": {
                "title": "To",
                "description": "ISO end timestamp.",
                "type": "string",
                "editor": "textfield"
              },
              "recentDays": {
                "title": "Recent days",
                "description": "Alternative recent-day window.",
                "type": "integer",
                "editor": "number",
                "minimum": 1,
                "maximum": 365
              }
            }
          },
          "maxReviewsPerPlatform": {
            "title": "Maximum reviews per platform",
            "minimum": 1,
            "maximum": 5000,
            "type": "integer",
            "description": "Bound applied per mapped store platform.",
            "default": 5
          },
          "requestTimeoutSecs": {
            "title": "Source request timeout",
            "minimum": 1,
            "maximum": 120,
            "type": "integer",
            "description": "Maximum seconds allowed for each public store request.",
            "default": 30
          },
          "maxPagesPerPlatform": {
            "title": "Maximum source pages",
            "minimum": 1,
            "maximum": 50,
            "type": "integer",
            "description": "Maximum Apple RSS pages fetched for each mapped platform request.",
            "default": 1
          },
          "maxRequestsPerRun": {
            "title": "Maximum source requests",
            "minimum": 1,
            "maximum": 10000,
            "type": "integer",
            "description": "Hard cap on expanded product, platform, country, and language source requests.",
            "default": 2
          },
          "includeDeveloperReplies": {
            "title": "Include developer replies",
            "type": "boolean",
            "description": "Preserve public developer replies where a source exposes them.",
            "default": false
          },
          "includeReviewText": {
            "title": "Include review text",
            "type": "boolean",
            "description": "Preserve original review text in raw output.",
            "default": true
          },
          "analysis": {
            "title": "Analysis",
            "type": "object",
            "description": "Shared analysis and clustering options.",
            "properties": {
              "enabled": {
                "title": "Enabled",
                "description": "Analyze collected reviews.",
                "type": "boolean",
                "editor": "checkbox",
                "default": true
              },
              "outputLanguage": {
                "title": "Output language",
                "description": "Analysis summary language.",
                "type": "string",
                "editor": "select",
                "enum": [
                  "english",
                  "original"
                ],
                "default": "english"
              },
              "maxAttempts": {
                "title": "Maximum provider attempts",
                "description": "Maximum analysis provider attempts per review before fallback.",
                "type": "integer",
                "editor": "number",
                "default": 1,
                "minimum": 1,
                "maximum": 3
              },
              "maxReviewsToAnalyze": {
                "title": "Maximum reviews to analyze",
                "description": "Cost cap for per-review analysis; raw reviews remain available beyond this limit.",
                "type": "integer",
                "editor": "number",
                "default": 3,
                "minimum": 1,
                "maximum": 5000
              },
              "cacheMaxEntries": {
                "title": "Analysis cache entries",
                "description": "Maximum in-memory analysis results retained during this run.",
                "type": "integer",
                "editor": "number",
                "default": 10,
                "minimum": 1,
                "maximum": 5000
              },
              "includeSummary": {
                "title": "Include summary",
                "description": "Include analysis summaries.",
                "type": "boolean",
                "editor": "checkbox",
                "default": true
              },
              "includeTopics": {
                "title": "Include topics",
                "description": "Include topic classifications.",
                "type": "boolean",
                "editor": "checkbox",
                "default": true
              },
              "includeSeverity": {
                "title": "Include severity",
                "description": "Include severity classification.",
                "type": "boolean",
                "editor": "checkbox",
                "default": true
              },
              "includeActionabilityScore": {
                "title": "Include actionability",
                "description": "Include actionability score.",
                "type": "boolean",
                "editor": "checkbox",
                "default": true
              },
              "includeEnvironmentSignals": {
                "title": "Include environment signals",
                "description": "Include device, OS, version, and locale signals when present.",
                "type": "boolean",
                "editor": "checkbox",
                "default": true
              },
              "clusterSimilarIssues": {
                "title": "Cluster similar issues",
                "description": "Create platform-level clusters after analysis.",
                "type": "boolean",
                "editor": "checkbox",
                "default": false
              }
            }
          },
          "comparison": {
            "title": "Comparison",
            "type": "object",
            "description": "Cross-platform matching thresholds and report dimensions.",
            "properties": {
              "enabled": {
                "title": "Enabled",
                "description": "Enable cross-platform matching and per-product comparison reports.",
                "type": "boolean",
                "editor": "checkbox",
                "default": true
              },
              "minimumSharedClusterConfidence": {
                "title": "Minimum shared confidence",
                "description": "Minimum confidence for shared issue matches.",
                "type": "number",
                "editor": "number",
                "default": 0.75,
                "minimum": 0,
                "maximum": 1
              },
              "minimumPlatformSpecificMentions": {
                "title": "Minimum platform-specific mentions",
                "description": "Minimum mentions before a platform-specific finding is ranked.",
                "type": "integer",
                "editor": "number",
                "default": 1,
                "minimum": 1,
                "maximum": 1000
              },
              "minimumDimensionReviews": {
                "title": "Minimum dimension sample",
                "description": "Minimum reviews per platform before country/language/version differences are marked sufficient.",
                "type": "integer",
                "editor": "number",
                "default": 1,
                "minimum": 1,
                "maximum": 10000
              },
              "includeCountryComparison": {
                "title": "Include country comparison",
                "description": "Compare country dimensions when supported.",
                "type": "boolean",
                "editor": "checkbox",
                "default": true
              },
              "includeLanguageComparison": {
                "title": "Include language comparison",
                "description": "Compare language dimensions when supported.",
                "type": "boolean",
                "editor": "checkbox",
                "default": true
              },
              "includeVersionComparison": {
                "title": "Include version comparison",
                "description": "Compare app-version dimensions when supported.",
                "type": "boolean",
                "editor": "checkbox",
                "default": true
              }
            }
          },
          "aggregation": {
            "title": "Aggregation",
            "type": "object",
            "description": "Cluster and report output limits.",
            "properties": {
              "enabled": {
                "title": "Enabled",
                "description": "Emit clusters and reports.",
                "type": "boolean",
                "editor": "checkbox",
                "default": true
              },
              "minimumClusterSize": {
                "title": "Minimum cluster size",
                "description": "Minimum cluster mentions.",
                "type": "integer",
                "editor": "number",
                "default": 2,
                "minimum": 1,
                "maximum": 1000
              },
              "maxExampleReviewsPerCluster": {
                "title": "Maximum examples",
                "description": "Maximum example reviews retained per cluster.",
                "type": "integer",
                "editor": "number",
                "default": 2,
                "minimum": 1,
                "maximum": 20
              }
            }
          },
          "daysBefore": {
            "title": "Days before release",
            "minimum": 1,
            "maximum": 365,
            "type": "integer",
            "description": "Release comparison window before each platform release.",
            "default": 14
          },
          "daysAfter": {
            "title": "Days after release",
            "minimum": 1,
            "maximum": 365,
            "type": "integer",
            "description": "Release comparison window after each platform release.",
            "default": 14
          },
          "minimumReleaseReviews": {
            "title": "Minimum release-window reviews",
            "minimum": 1,
            "maximum": 10000,
            "type": "integer",
            "description": "Minimum reviews per release window before release differences are marked sufficient.",
            "default": 5
          },
          "debug": {
            "title": "Debug logging",
            "type": "boolean",
            "description": "Enable additional local diagnostic logging.",
            "default": false
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}