{
  "openapi": "3.0.1",
  "info": {
    "title": "Launch QA Auditor",
    "description": "Audit public launch pages before customers see them. Get a scored report of delivery, SEO, social-preview, placeholder-copy, heading, and image-alt issues for up to 10 URLs.",
    "version": "0.2",
    "x-build-id": "3mDFtEG2CxmKG30w0"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/relaunch_dept~launch-qa-auditor/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-relaunch_dept-launch-qa-auditor",
        "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/relaunch_dept~launch-qa-auditor/runs": {
      "post": {
        "operationId": "runs-sync-relaunch_dept-launch-qa-auditor",
        "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/relaunch_dept~launch-qa-auditor/run-sync": {
      "post": {
        "operationId": "run-sync-relaunch_dept-launch-qa-auditor",
        "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": [
          "urls"
        ],
        "properties": {
          "urls": {
            "title": "Public page URLs",
            "minItems": 1,
            "maxItems": 10,
            "type": "array",
            "description": "One to ten public HTTP(S) landing pages.",
            "items": {
              "type": "string"
            },
            "default": [
              "https://example.com"
            ]
          },
          "timeoutSeconds": {
            "title": "Timeout per page",
            "minimum": 5,
            "maximum": 30,
            "type": "integer",
            "description": "Maximum wait for each page, from 5 to 30 seconds.",
            "default": 15
          },
          "acceptance": {
            "title": "Acceptance policy (optional)",
            "type": "object",
            "description": "When supplied, evaluate every page against a deterministic policy and return accepted, criteria, failedCriteria, and evidence for an AI agent.",
            "properties": {
              "minimumScore": {
                "title": "Minimum score",
                "type": "integer",
                "description": "Lowest acceptable launch score from 0 to 100.",
                "default": 80,
                "minimum": 0,
                "maximum": 100,
                "editor": "number"
              },
              "allowedGrades": {
                "title": "Allowed grades",
                "type": "array",
                "description": "Letter grades that the agent may accept.",
                "editor": "select",
                "default": [
                  "A",
                  "B"
                ],
                "uniqueItems": true,
                "minItems": 1,
                "items": {
                  "type": "string",
                  "enum": [
                    "A",
                    "B",
                    "C",
                    "D",
                    "F"
                  ]
                }
              },
              "maximumFindings": {
                "title": "Maximum findings by severity",
                "type": "object",
                "description": "Optional upper bounds; omitted severities are not evaluated except high, which defaults to zero.",
                "editor": "json",
                "additionalProperties": false,
                "properties": {
                  "high": {
                    "title": "Maximum high findings",
                    "type": "integer",
                    "description": "Largest acceptable number of high-severity findings.",
                    "default": 0,
                    "minimum": 0,
                    "maximum": 1000,
                    "editor": "number"
                  },
                  "medium": {
                    "title": "Maximum medium findings",
                    "type": "integer",
                    "description": "Largest acceptable number of medium-severity findings when supplied.",
                    "minimum": 0,
                    "maximum": 1000,
                    "editor": "number"
                  },
                  "low": {
                    "title": "Maximum low findings",
                    "type": "integer",
                    "description": "Largest acceptable number of low-severity findings when supplied.",
                    "minimum": 0,
                    "maximum": 1000,
                    "editor": "number"
                  },
                  "total": {
                    "title": "Maximum total findings",
                    "type": "integer",
                    "description": "Largest acceptable total finding count when supplied.",
                    "minimum": 0,
                    "maximum": 1000,
                    "editor": "number"
                  }
                }
              },
              "requiredChecks": {
                "title": "Checks that must pass",
                "type": "array",
                "description": "Stable check IDs that must all pass for acceptance.",
                "editor": "select",
                "default": [],
                "uniqueItems": true,
                "maxItems": 11,
                "items": {
                  "type": "string",
                  "enum": [
                    "http-success",
                    "title",
                    "description",
                    "viewport",
                    "language",
                    "single-h1",
                    "canonical",
                    "open-graph",
                    "image-alt",
                    "no-placeholder-copy",
                    "no-mixed-content"
                  ]
                }
              }
            },
            "additionalProperties": 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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}