{
  "openapi": "3.0.1",
  "info": {
    "title": "Bing SERP & Copilot Presence Scraper",
    "description": "Returns Bing organic search results (title, URL, domain, snippet, rank) per query, plus a signal for whether Bing's Copilot Search surface was present on the SERP. Built for SEO rank tracking and AI-visibility (GEO) monitoring.",
    "version": "0.4",
    "x-build-id": "tyQU5smApdjc0CRjc"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/leaderly_jackpine~bing-serp-copilot-presence/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-leaderly_jackpine-bing-serp-copilot-presence",
        "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/leaderly_jackpine~bing-serp-copilot-presence/runs": {
      "post": {
        "operationId": "runs-sync-leaderly_jackpine-bing-serp-copilot-presence",
        "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/leaderly_jackpine~bing-serp-copilot-presence/run-sync": {
      "post": {
        "operationId": "run-sync-leaderly_jackpine-bing-serp-copilot-presence",
        "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": [
          "queries"
        ],
        "properties": {
          "queries": {
            "title": "Search queries",
            "minItems": 1,
            "maxItems": 1000,
            "type": "array",
            "description": "One Bing search query per item.",
            "items": {
              "type": "string"
            }
          },
          "countryCode": {
            "title": "Bing market country",
            "type": "string",
            "description": "Two-letter country code sent to Bing (cc). Use a matching proxy country where possible.",
            "default": "US"
          },
          "languageCode": {
            "title": "Bing language",
            "type": "string",
            "description": "Bing UI language, for example en-US.",
            "default": "en-US"
          },
          "maxResults": {
            "title": "Max organic results per query",
            "minimum": 1,
            "maximum": 50,
            "type": "integer",
            "description": "Number of organic results to return per query (1-50).",
            "default": 10
          },
          "responseWaitSeconds": {
            "title": "Page settle wait (seconds)",
            "minimum": 2,
            "maximum": 30,
            "type": "integer",
            "description": "Seconds to wait after Bing loads before extracting. Keep low (4-8); higher increases cost.",
            "default": 6
          },
          "copilotAnswerWaitSeconds": {
            "title": "Copilot answer wait (seconds)",
            "minimum": 0,
            "maximum": 30,
            "type": "integer",
            "description": "When Bing's Copilot surface is present but the generated answer hasn't rendered yet, poll for up to this many extra seconds to capture the answer text and citations. 0 disables the extra wait. Bing gates the Copilot answer, so this is best-effort: when Bing serves one, it is captured.",
            "default": 8
          },
          "bingCookies": {
            "title": "Bing session cookies (optional, unlock Copilot answers)",
            "type": "string",
            "description": "Optional. A JSON array of cookie objects for bing.com from a logged-in Microsoft/Bing session, e.g. [{\"name\":\"_U\",\"value\":\"...\",\"domain\":\".bing.com\"}]. When provided, the Actor injects them so Bing serves the Copilot generative answer, which is otherwise gated to anonymous sessions. The _U cookie is the key login token. Store via an Apify secret (reference \"@bingCookies\"). Cookies expire; refresh from your browser when needed. Use only in line with Bing's terms.",
            "default": "[]"
          },
          "maxAttempts": {
            "title": "Max attempts per query",
            "minimum": 1,
            "maximum": 5,
            "type": "integer",
            "description": "Retries with a fresh proxy session on non-success or transient errors (1-5). Each retry adds proxy cost; 2 is a good balance.",
            "default": 2
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Apify Proxy. A residential proxy (RESIDENTIAL group) is required for Bing reliability; datacenter proxies get CAPTCHA'd.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "RESIDENTIAL"
              ]
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}