{
  "openapi": "3.0.0",
  "info": {
    "title": "Firecrawl API",
    "version": "v2",
    "description": "API for interacting with Firecrawl services to perform web scraping and crawling tasks.",
    "contact": {
      "name": "Firecrawl Support",
      "url": "https://firecrawl.dev/support",
      "email": "support@firecrawl.dev"
    }
  },
  "servers": [
    {
      "url": "https://api.firecrawl.dev/v2"
    }
  ],
  "paths": {
    "/monitor": {
      "post": {
        "summary": "Create a monitor",
        "operationId": "createMonitor",
        "tags": [
          "Monitoring"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/MonitorCreateRequest"
              },
              "examples": {
                "scrapeMonitor": {
                  "summary": "Scrape a URL every 30 minutes",
                  "value": {
                    "name": "Blog monitor",
                    "schedule": {
                      "text": "every 30 minutes",
                      "timezone": "UTC"
                    },
                    "goal": "Notify me when a new blog post is published or the headline changes",
                    "notification": {
                      "email": {
                        "enabled": true,
                        "recipients": [
                          "alerts@example.com"
                        ],
                        "includeDiffs": true
                      }
                    },
                    "targets": [
                      {
                        "type": "scrape",
                        "urls": [
                          "https://example.com/blog"
                        ]
                      }
                    ]
                  }
                },
                "crawlMonitor": {
                  "summary": "Crawl a site on a cron schedule",
                  "value": {
                    "name": "Docs monitor",
                    "schedule": {
                      "cron": "7-59/15 * * * *",
                      "timezone": "UTC"
                    },
                    "webhook": {
                      "url": "https://example.com/webhooks/firecrawl",
                      "events": [
                        "monitor.page",
                        "monitor.check.completed"
                      ]
                    },
                    "goal": "Notify me when docs pages add, remove, or materially change API behavior",
                    "targets": [
                      {
                        "type": "crawl",
                        "url": "https://example.com/docs",
                        "crawlOptions": {
                          "limit": 100
                        }
                      }
                    ]
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Monitor created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MonitorResponse"
                }
              }
            }
          },
          "400": {
            "description": "Invalid monitor request"
          }
        }
      },
      "get": {
        "summary": "List monitors",
        "operationId": "listMonitors",
        "tags": [
          "Monitoring"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "parameters": [
          {
            "name": "limit",
            "in": "query",
            "schema": {
              "type": "integer",
              "minimum": 1,
              "maximum": 100,
              "default": 25
            }
          },
          {
            "name": "offset",
            "in": "query",
            "schema": {
              "type": "integer",
              "minimum": 0,
              "default": 0
            }
          }
        ],
        "responses": {
          "200": {
            "description": "List of monitors",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MonitorListResponse"
                }
              }
            }
          }
        }
      }
    },
    "/monitor/{monitorId}": {
      "get": {
        "summary": "Get a monitor",
        "operationId": "getMonitor",
        "tags": [
          "Monitoring"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "parameters": [
          {
            "$ref": "#/components/parameters/MonitorId"
          }
        ],
        "responses": {
          "200": {
            "description": "Monitor details",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MonitorResponse"
                }
              }
            }
          },
          "404": {
            "description": "Monitor not found"
          }
        }
      },
      "patch": {
        "summary": "Update a monitor",
        "operationId": "updateMonitor",
        "tags": [
          "Monitoring"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "parameters": [
          {
            "$ref": "#/components/parameters/MonitorId"
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/MonitorUpdateRequest"
              },
              "example": {
                "schedule": {
                  "text": "every 15 minutes starting at :07"
                },
                "status": "active"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Monitor updated",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MonitorResponse"
                }
              }
            }
          },
          "404": {
            "description": "Monitor not found"
          }
        }
      },
      "delete": {
        "summary": "Delete a monitor",
        "operationId": "deleteMonitor",
        "tags": [
          "Monitoring"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "parameters": [
          {
            "$ref": "#/components/parameters/MonitorId"
          }
        ],
        "responses": {
          "200": {
            "description": "Monitor deleted",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SuccessResponse"
                }
              }
            }
          },
          "404": {
            "description": "Monitor not found"
          }
        }
      }
    },
    "/monitor/{monitorId}/run": {
      "post": {
        "summary": "Run a monitor",
        "operationId": "runMonitor",
        "tags": [
          "Monitoring"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "parameters": [
          {
            "$ref": "#/components/parameters/MonitorId"
          }
        ],
        "responses": {
          "200": {
            "description": "Monitor check queued",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MonitorRunResponse"
                }
              }
            }
          },
          "409": {
            "description": "A monitor check is already running"
          }
        }
      }
    },
    "/monitor/{monitorId}/checks": {
      "get": {
        "summary": "List monitor checks",
        "operationId": "listMonitorChecks",
        "tags": [
          "Monitoring"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "parameters": [
          {
            "$ref": "#/components/parameters/MonitorId"
          },
          {
            "name": "limit",
            "in": "query",
            "schema": {
              "type": "integer",
              "minimum": 1,
              "maximum": 100,
              "default": 25
            }
          },
          {
            "name": "offset",
            "in": "query",
            "schema": {
              "type": "integer",
              "minimum": 0,
              "default": 0
            }
          },
          {
            "name": "status",
            "in": "query",
            "schema": {
              "type": "string",
              "enum": [
                "queued",
                "running",
                "completed",
                "failed",
                "partial",
                "skipped_overlap"
              ]
            },
            "description": "Filter checks by status."
          }
        ],
        "responses": {
          "200": {
            "description": "Monitor checks",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MonitorCheckListResponse"
                }
              }
            }
          }
        }
      }
    },
    "/monitor/{monitorId}/checks/{checkId}": {
      "get": {
        "summary": "Get a monitor check",
        "operationId": "getMonitorCheck",
        "tags": [
          "Monitoring"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "parameters": [
          {
            "$ref": "#/components/parameters/MonitorId"
          },
          {
            "name": "checkId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            },
            "description": "The monitor check ID"
          },
          {
            "name": "limit",
            "in": "query",
            "schema": {
              "type": "integer",
              "minimum": 1,
              "maximum": 100,
              "default": 25
            }
          },
          {
            "name": "skip",
            "in": "query",
            "schema": {
              "type": "integer",
              "minimum": 0,
              "default": 0
            },
            "description": "Number of page results to skip. Use the `next` URL from the previous response for pagination."
          },
          {
            "name": "status",
            "in": "query",
            "schema": {
              "type": "string",
              "enum": [
                "same",
                "new",
                "changed",
                "removed",
                "error"
              ]
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Monitor check details",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MonitorCheckDetailResponse"
                }
              }
            }
          },
          "404": {
            "description": "Monitor check not found"
          }
        }
      }
    },
    "/scrape": {
      "post": {
        "summary": "Scrape a single URL and optionally extract information using an LLM",
        "operationId": "scrapeAndExtractFromUrl",
        "tags": [
          "Scraping"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "allOf": [
                  {
                    "type": "object",
                    "properties": {
                      "url": {
                        "type": "string",
                        "format": "uri",
                        "description": "The URL to scrape"
                      }
                    },
                    "required": [
                      "url"
                    ]
                  },
                  {
                    "$ref": "#/components/schemas/ScrapeOptions"
                  },
                  {
                    "type": "object",
                    "properties": {
                      "zeroDataRetention": {
                        "type": "boolean",
                        "default": false,
                        "description": "If true, this will enable zero data retention for this scrape. To enable this feature, please contact help@firecrawl.dev"
                      }
                    }
                  }
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ScrapeResponse"
                }
              }
            }
          },
          "402": {
            "description": "Payment required",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "Payment required to access this resource."
                    }
                  }
                }
              }
            }
          },
          "429": {
            "description": "Too many requests",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "Request rate limit exceeded. Please wait and try again later."
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "Server error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "code": {
                      "type": "string",
                      "example": "UNKNOWN_ERROR"
                    },
                    "error": {
                      "type": "string",
                      "example": "An unexpected error occurred on the server."
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/scrape/{jobId}/interact": {
      "post": {
        "summary": "Interact with the browser session associated with a scrape job",
        "operationId": "interactWithScrapeBrowserSession",
        "tags": [
          "Scraping"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "parameters": [
          {
            "name": "jobId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            },
            "description": "The scrape job ID"
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "code"
                ],
                "properties": {
                  "code": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 100000,
                    "description": "Code to execute in the scrape-bound browser sandbox"
                  },
                  "language": {
                    "type": "string",
                    "enum": [
                      "python",
                      "node",
                      "bash"
                    ],
                    "default": "node",
                    "description": "Language of the code to execute. Use `node` for JavaScript or `bash` for agent-browser CLI commands."
                  },
                  "timeout": {
                    "type": "integer",
                    "minimum": 1,
                    "maximum": 300,
                    "default": 30,
                    "description": "Execution timeout in seconds"
                  },
                  "origin": {
                    "type": "string",
                    "description": "Optional origin label used for execution telemetry"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Code executed successfully",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean"
                    },
                    "cdpUrl": {
                      "type": "string",
                      "nullable": true,
                      "description": "Raw Chrome DevTools Protocol (CDP) WebSocket URL for the browser session. Use it to connect directly with Playwright, Puppeteer, or any CDP client."
                    },
                    "liveViewUrl": {
                      "type": "string",
                      "nullable": true,
                      "description": "Read-only live view URL for the browser session"
                    },
                    "interactiveLiveViewUrl": {
                      "type": "string",
                      "nullable": true,
                      "description": "Interactive live view URL (viewers can control the browser)"
                    },
                    "output": {
                      "type": "string",
                      "nullable": true,
                      "description": "AI agent's final response (only present when using prompt)"
                    },
                    "stdout": {
                      "type": "string",
                      "nullable": true,
                      "description": "Standard output from the code execution"
                    },
                    "result": {
                      "type": "string",
                      "nullable": true,
                      "description": "Standard output (alias for stdout)"
                    },
                    "stderr": {
                      "type": "string",
                      "nullable": true,
                      "description": "Standard error output from the code execution"
                    },
                    "exitCode": {
                      "type": "integer",
                      "nullable": true,
                      "description": "Exit code of the executed process"
                    },
                    "killed": {
                      "type": "boolean",
                      "description": "Whether the process was killed due to timeout"
                    },
                    "error": {
                      "type": "string",
                      "nullable": true,
                      "description": "Error message if the code raised an exception"
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid job ID",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "error": {
                      "type": "string",
                      "example": "Invalid job ID format."
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment required",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "error": {
                      "type": "string",
                      "example": "Payment required to access this resource."
                    }
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "error": {
                      "type": "string",
                      "example": "Forbidden."
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Scrape job not found",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "error": {
                      "type": "string",
                      "example": "Job not found."
                    }
                  }
                }
              }
            }
          },
          "409": {
            "description": "Scrape replay context is unavailable or session could not be initialized",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "error": {
                      "type": "string",
                      "example": "Replay context is unavailable for this scrape job. Please rerun the scrape."
                    }
                  }
                }
              }
            }
          },
          "410": {
            "description": "Scrape browser session has already been destroyed",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "error": {
                      "type": "string",
                      "example": "Browser session has been destroyed."
                    }
                  }
                }
              }
            }
          },
          "429": {
            "description": "Too many active browser sessions",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "error": {
                      "type": "string",
                      "example": "You have reached the maximum number of active browser sessions."
                    }
                  }
                }
              }
            }
          },
          "502": {
            "description": "Failed to communicate with browser service",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "error": {
                      "type": "string",
                      "example": "Failed to execute code in browser session."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "delete": {
        "summary": "Stop the interactive browser session associated with a scrape job",
        "operationId": "stopInteractiveScrapeBrowserSession",
        "tags": [
          "Scraping"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "parameters": [
          {
            "name": "jobId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            },
            "description": "The scrape job ID"
          }
        ],
        "responses": {
          "200": {
            "description": "Interactive scrape browser session stopped successfully",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean"
                    }
                  }
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "error": {
                      "type": "string",
                      "example": "Forbidden."
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Interactive scrape browser session not found",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "error": {
                      "type": "string",
                      "example": "Browser session not found."
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/parse": {
      "post": {
        "summary": "Upload and parse a file",
        "operationId": "parseFile",
        "tags": [
          "Scraping"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "multipart/form-data": {
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary",
                    "description": "The file bytes to parse. Supported extensions: .html, .htm, .xhtml, .pdf, .docx, .doc, .docm, .odt, .ods, .odp, .rtf, .xlsx, .xls, .xlsm, .xlsb, .pptx, .ppt, .pptm, .epub, .csv."
                  },
                  "options": {
                    "$ref": "#/components/schemas/ParseOptions"
                  }
                },
                "required": [
                  "file"
                ]
              },
              "encoding": {
                "options": {
                  "contentType": "application/json"
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ScrapeResponse"
                }
              }
            }
          },
          "400": {
            "description": "Bad request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "code": {
                      "type": "string",
                      "example": "BAD_REQUEST"
                    },
                    "error": {
                      "type": "string",
                      "example": "Invalid multipart form-data request."
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment required",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "Payment required to access this resource."
                    }
                  }
                }
              }
            }
          },
          "429": {
            "description": "Too many requests",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "Request rate limit exceeded. Please wait and try again later."
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "Server error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "code": {
                      "type": "string",
                      "example": "UNKNOWN_ERROR"
                    },
                    "error": {
                      "type": "string",
                      "example": "An unexpected error occurred on the server."
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/batch/scrape": {
      "post": {
        "summary": "Scrape multiple URLs and optionally extract information using an LLM",
        "operationId": "scrapeAndExtractFromUrls",
        "tags": [
          "Scraping"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "allOf": [
                  {
                    "type": "object",
                    "properties": {
                      "urls": {
                        "type": "array",
                        "items": {
                          "type": "string",
                          "format": "uri",
                          "description": "The URL to scrape"
                        }
                      },
                      "webhook": {
                        "type": "object",
                        "description": "A webhook specification object.",
                        "properties": {
                          "url": {
                            "type": "string",
                            "description": "The URL to send the webhook to. This will trigger for batch scrape started (batch_scrape.started), every page scraped (batch_scrape.page) and when the batch scrape is completed (batch_scrape.completed or batch_scrape.failed). The response will be the same as the `/scrape` endpoint."
                          },
                          "headers": {
                            "type": "object",
                            "description": "Headers to send to the webhook URL.",
                            "additionalProperties": {
                              "type": "string"
                            }
                          },
                          "metadata": {
                            "type": "object",
                            "description": "Custom metadata that will be included in all webhook payloads for this crawl",
                            "additionalProperties": true
                          },
                          "events": {
                            "type": "array",
                            "description": "Type of events that should be sent to the webhook URL. (default: all)",
                            "items": {
                              "type": "string",
                              "enum": [
                                "completed",
                                "page",
                                "failed",
                                "started"
                              ]
                            }
                          }
                        },
                        "required": [
                          "url"
                        ]
                      },
                      "maxConcurrency": {
                        "type": "integer",
                        "description": "Maximum number of concurrent scrapes. This parameter allows you to set a concurrency limit for this batch scrape. If not specified, the batch scrape adheres to your team's concurrency limit."
                      },
                      "ignoreInvalidURLs": {
                        "type": "boolean",
                        "default": true,
                        "description": "If invalid URLs are specified in the urls array, they will be ignored. Instead of them failing the entire request, a batch scrape using the remaining valid URLs will be created, and the invalid URLs will be returned in the invalidURLs field of the response."
                      }
                    },
                    "required": [
                      "urls"
                    ]
                  },
                  {
                    "$ref": "#/components/schemas/ScrapeOptions"
                  },
                  {
                    "type": "object",
                    "properties": {
                      "zeroDataRetention": {
                        "type": "boolean",
                        "default": false,
                        "description": "If true, this will enable zero data retention for this batch scrape. To enable this feature, please contact help@firecrawl.dev"
                      }
                    }
                  }
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/BatchScrapeResponseObj"
                }
              }
            }
          },
          "402": {
            "description": "Payment required",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "Payment required to access this resource."
                    }
                  }
                }
              }
            }
          },
          "429": {
            "description": "Too many requests",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "Request rate limit exceeded. Please wait and try again later."
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "Server error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "An unexpected error occurred on the server."
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/batch/scrape/{id}": {
      "parameters": [
        {
          "name": "id",
          "in": "path",
          "description": "The ID of the batch scrape job",
          "required": true,
          "schema": {
            "type": "string",
            "format": "uuid"
          }
        }
      ],
      "get": {
        "summary": "Get the status of a batch scrape job",
        "operationId": "getBatchScrapeStatus",
        "tags": [
          "Scraping"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/BatchScrapeStatusResponseObj"
                }
              }
            }
          },
          "402": {
            "description": "Payment required",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "Payment required to access this resource."
                    }
                  }
                }
              }
            }
          },
          "429": {
            "description": "Too many requests",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "Request rate limit exceeded. Please wait and try again later."
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "Server error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "An unexpected error occurred on the server."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "delete": {
        "summary": "Cancel a batch scrape job",
        "operationId": "cancelBatchScrape",
        "tags": [
          "Scraping"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "responses": {
          "200": {
            "description": "Successful cancellation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "status": {
                      "type": "string",
                      "enum": [
                        "cancelled"
                      ],
                      "example": "cancelled"
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Batch scrape job not found",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "Batch scrape job not found."
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "Server error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "An unexpected error occurred on the server."
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/batch/scrape/{id}/errors": {
      "parameters": [
        {
          "name": "id",
          "in": "path",
          "description": "The ID of the batch scrape job",
          "required": true,
          "schema": {
            "type": "string",
            "format": "uuid"
          }
        }
      ],
      "get": {
        "summary": "Get the errors of a batch scrape job",
        "operationId": "getBatchScrapeErrors",
        "tags": [
          "Scraping"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CrawlErrorsResponseObj"
                }
              }
            }
          },
          "402": {
            "description": "Payment required",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "Payment required to access this resource."
                    }
                  }
                }
              }
            }
          },
          "429": {
            "description": "Too many requests",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "Request rate limit exceeded. Please wait and try again later."
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "Server error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "An unexpected error occurred on the server."
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/crawl/{id}": {
      "parameters": [
        {
          "name": "id",
          "in": "path",
          "description": "The ID of the crawl job",
          "required": true,
          "schema": {
            "type": "string",
            "format": "uuid"
          }
        }
      ],
      "get": {
        "summary": "Get the status of a crawl job",
        "operationId": "getCrawlStatus",
        "tags": [
          "Crawling"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CrawlStatusResponseObj"
                }
              }
            }
          },
          "402": {
            "description": "Payment required",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "Payment required to access this resource."
                    }
                  }
                }
              }
            }
          },
          "429": {
            "description": "Too many requests",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "Request rate limit exceeded. Please wait and try again later."
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "Server error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "An unexpected error occurred on the server."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "delete": {
        "summary": "Cancel a crawl job",
        "operationId": "cancelCrawl",
        "tags": [
          "Crawling"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "responses": {
          "200": {
            "description": "Successful cancellation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "status": {
                      "type": "string",
                      "enum": [
                        "cancelled"
                      ],
                      "example": "cancelled"
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Crawl job not found",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "Crawl job not found."
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "Server error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "An unexpected error occurred on the server."
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/crawl/{id}/errors": {
      "parameters": [
        {
          "name": "id",
          "in": "path",
          "description": "The ID of the crawl job",
          "required": true,
          "schema": {
            "type": "string",
            "format": "uuid"
          }
        }
      ],
      "get": {
        "summary": "Get the errors of a crawl job",
        "operationId": "getCrawlErrors",
        "tags": [
          "Crawling"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CrawlErrorsResponseObj"
                }
              }
            }
          },
          "402": {
            "description": "Payment required",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "Payment required to access this resource."
                    }
                  }
                }
              }
            }
          },
          "429": {
            "description": "Too many requests",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "Request rate limit exceeded. Please wait and try again later."
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "Server error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "An unexpected error occurred on the server."
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/crawl": {
      "post": {
        "summary": "Crawl multiple URLs based on options",
        "operationId": "crawlUrls",
        "tags": [
          "Crawling"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "url": {
                    "type": "string",
                    "format": "uri",
                    "description": "The base URL to start crawling from"
                  },
                  "prompt": {
                    "type": "string",
                    "description": "A prompt to use to generate the crawler options (all the parameters below) from natural language. Explicitly set parameters will override the generated equivalents."
                  },
                  "excludePaths": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    },
                    "description": "URL pathname regex patterns that exclude matching URLs from the crawl. For example, if you set \"excludePaths\": [\"blog/.*\"] for the base URL firecrawl.dev, any results matching that pattern will be excluded, such as https://www.firecrawl.dev/blog/firecrawl-launch-week-1-recap."
                  },
                  "includePaths": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    },
                    "description": "URL pathname regex patterns that include matching URLs in the crawl. Only the paths that match the specified patterns will be included in the response. Note: the starting URL is also checked against these patterns — if it does not match, the crawl may return 0 pages. For example, if you set \"includePaths\": [\"blog/.*\"] for the base URL firecrawl.dev/blog, only pages under /blog/ will be included in the results, such as https://www.firecrawl.dev/blog/firecrawl-launch-week-1-recap."
                  },
                  "maxDiscoveryDepth": {
                    "type": "integer",
                    "description": "Maximum depth to crawl based on discovery order. The root site and sitemapped pages has a discovery depth of 0. For example, if you set it to 1, and you set `sitemap: 'skip'`, you will only crawl the entered URL and all URLs that are linked on that page."
                  },
                  "sitemap": {
                    "type": "string",
                    "enum": [
                      "skip",
                      "include",
                      "only"
                    ],
                    "description": "Sitemap mode when crawling. If you set it to 'skip', the crawler will ignore the website sitemap and only crawl the entered URL and discover pages from there onwards. If you set it to 'only', the crawler will only crawl URLs from the sitemap (plus the start URL) and will not discover links from HTML.",
                    "default": "include"
                  },
                  "ignoreQueryParameters": {
                    "type": "boolean",
                    "description": "Do not re-scrape the same path with different (or none) query parameters",
                    "default": false
                  },
                  "regexOnFullURL": {
                    "type": "boolean",
                    "description": "When true, includePaths and excludePaths regex patterns are matched against the full URL (including query parameters) instead of just the URL pathname. Useful when you need to filter URLs based on query strings.",
                    "default": false
                  },
                  "limit": {
                    "type": "integer",
                    "description": "Maximum number of pages to crawl. Default limit is 10000.",
                    "default": 10000
                  },
                  "crawlEntireDomain": {
                    "type": "boolean",
                    "description": "Allows the crawler to follow internal links to sibling or parent URLs, not just child paths.\n\nfalse: Only crawls deeper (child) URLs.\n→ e.g. /features/feature-1 → /features/feature-1/tips ✅\n→ Won't follow /pricing or / ❌\n\ntrue: Crawls any internal links, including siblings and parents.\n→ e.g. /features/feature-1 → /pricing, /, etc. ✅\n\nUse true for broader internal coverage beyond nested paths.",
                    "default": false
                  },
                  "allowExternalLinks": {
                    "type": "boolean",
                    "description": "Allows the crawler to follow links to external websites.",
                    "default": false
                  },
                  "allowSubdomains": {
                    "type": "boolean",
                    "description": "Allows the crawler to follow links to subdomains of the main domain.",
                    "default": false
                  },
                  "ignoreRobotsTxt": {
                    "type": "boolean",
                    "description": "Ignore the website's robots.txt rules. Enterprise only — contact support@firecrawl.com to enable.",
                    "default": false
                  },
                  "robotsUserAgent": {
                    "type": "string",
                    "description": "Custom User-Agent string for robots.txt evaluation. When set, robots.txt is fetched with this User-Agent and allow/disallow rules are matched against it instead of the default. Enterprise only — contact support@firecrawl.com to enable."
                  },
                  "delay": {
                    "type": "number",
                    "description": "Delay in seconds between scrapes. This helps respect website rate limits. Setting this forces concurrency to 1."
                  },
                  "maxConcurrency": {
                    "type": "integer",
                    "description": "Maximum number of concurrent scrapes. This parameter allows you to set a concurrency limit for this crawl. If not specified, the crawl adheres to your team's concurrency limit."
                  },
                  "webhook": {
                    "type": "object",
                    "description": "A webhook specification object.",
                    "properties": {
                      "url": {
                        "type": "string",
                        "description": "The URL to send the webhook to. This will trigger for crawl started (crawl.started), every page crawled (crawl.page) and when the crawl is completed (crawl.completed or crawl.failed). The response will be the same as the `/scrape` endpoint."
                      },
                      "headers": {
                        "type": "object",
                        "description": "Headers to send to the webhook URL.",
                        "additionalProperties": {
                          "type": "string"
                        }
                      },
                      "metadata": {
                        "type": "object",
                        "description": "Custom metadata that will be included in all webhook payloads for this crawl",
                        "additionalProperties": true
                      },
                      "events": {
                        "type": "array",
                        "description": "Type of events that should be sent to the webhook URL. (default: all)",
                        "items": {
                          "type": "string",
                          "enum": [
                            "completed",
                            "page",
                            "failed",
                            "started"
                          ]
                        }
                      }
                    },
                    "required": [
                      "url"
                    ]
                  },
                  "scrapeOptions": {
                    "$ref": "#/components/schemas/ScrapeOptions"
                  },
                  "zeroDataRetention": {
                    "type": "boolean",
                    "default": false,
                    "description": "If true, this will enable zero data retention for this crawl. To enable this feature, please contact help@firecrawl.dev"
                  }
                },
                "required": [
                  "url"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CrawlResponse"
                }
              }
            }
          },
          "402": {
            "description": "Payment required",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "Payment required to access this resource."
                    }
                  }
                }
              }
            }
          },
          "429": {
            "description": "Too many requests",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "Request rate limit exceeded. Please wait and try again later."
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "Server error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "An unexpected error occurred on the server."
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/crawl/params-preview": {
      "post": {
        "summary": "Preview crawl parameters generated from natural language prompt",
        "operationId": "crawlParamsPreview",
        "tags": [
          "Crawling"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "url": {
                    "type": "string",
                    "format": "uri",
                    "description": "The URL to crawl"
                  },
                  "prompt": {
                    "type": "string",
                    "maxLength": 10000,
                    "description": "Natural language prompt describing what you want to crawl"
                  }
                },
                "required": [
                  "url",
                  "prompt"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successful response with generated crawl parameters",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": true
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "url": {
                          "type": "string",
                          "format": "uri",
                          "description": "The URL to crawl"
                        },
                        "includePaths": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          },
                          "description": "URL patterns to include"
                        },
                        "excludePaths": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          },
                          "description": "URL patterns to exclude"
                        },
                        "maxDepth": {
                          "type": "integer",
                          "description": "Maximum crawl depth"
                        },
                        "maxDiscoveryDepth": {
                          "type": "integer",
                          "description": "Maximum discovery depth"
                        },
                        "crawlEntireDomain": {
                          "type": "boolean",
                          "description": "Whether to crawl the entire domain"
                        },
                        "allowExternalLinks": {
                          "type": "boolean",
                          "description": "Whether to allow external links"
                        },
                        "allowSubdomains": {
                          "type": "boolean",
                          "description": "Whether to allow subdomains"
                        },
                        "sitemap": {
                          "type": "string",
                          "enum": [
                            "skip",
                            "include"
                          ],
                          "description": "Sitemap handling strategy"
                        },
                        "ignoreQueryParameters": {
                          "type": "boolean",
                          "description": "Whether to ignore query parameters"
                        },
                        "ignoreRobotsTxt": {
                          "type": "boolean",
                          "description": "Whether robots.txt rules are ignored"
                        },
                        "robotsUserAgent": {
                          "type": "string",
                          "description": "Custom User-Agent string used for robots.txt evaluation"
                        },
                        "deduplicateSimilarURLs": {
                          "type": "boolean",
                          "description": "Whether to deduplicate similar URLs"
                        },
                        "delay": {
                          "type": "number",
                          "description": "Delay between requests in milliseconds"
                        },
                        "limit": {
                          "type": "integer",
                          "description": "Maximum number of pages to crawl"
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Bad request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "error": {
                      "type": "string",
                      "example": "Invalid request parameters"
                    }
                  }
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "error": {
                      "type": "string",
                      "example": "Unauthorized"
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "Server error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "error": {
                      "type": "string",
                      "example": "Failed to process natural language prompt"
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/map": {
      "post": {
        "summary": "Map multiple URLs based on options",
        "operationId": "mapUrls",
        "tags": [
          "Mapping"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "url": {
                    "type": "string",
                    "format": "uri",
                    "description": "The base URL to start crawling from"
                  },
                  "search": {
                    "type": "string",
                    "description": "Specify a search query to order the results by relevance. Example: 'blog' will return URLs that contain the word 'blog' in the URL ordered by relevance."
                  },
                  "sitemap": {
                    "type": "string",
                    "enum": [
                      "skip",
                      "include",
                      "only"
                    ],
                    "description": "Sitemap mode when mapping. If you set it to `skip`, the sitemap won't be used to find URLs. If you set it to `only`, only URLs that are in the sitemap will be returned. By default (`include`), the sitemap and other methods will be used together to find URLs.",
                    "default": "include"
                  },
                  "includeSubdomains": {
                    "type": "boolean",
                    "description": "Include subdomains of the website",
                    "default": true
                  },
                  "ignoreQueryParameters": {
                    "type": "boolean",
                    "description": "Do not return URLs with query parameters",
                    "default": true
                  },
                  "ignoreCache": {
                    "type": "boolean",
                    "description": "Bypass the sitemap cache to retrieve fresh URLs. Sitemap data is cached for up to 7 days; use this parameter when your sitemap has been recently updated.",
                    "default": false
                  },
                  "limit": {
                    "type": "integer",
                    "description": "Maximum number of links to return",
                    "default": 5000,
                    "maximum": 100000
                  },
                  "timeout": {
                    "type": "integer",
                    "description": "Timeout in milliseconds. There is no timeout by default."
                  },
                  "location": {
                    "type": "object",
                    "description": "Location settings for the request. When specified, this will use an appropriate proxy if available and emulate the corresponding language and timezone settings. Defaults to 'US' if not specified.",
                    "properties": {
                      "country": {
                        "type": "string",
                        "description": "ISO 3166-1 alpha-2 country code (e.g., 'US', 'AU', 'DE', 'JP')",
                        "pattern": "^[A-Z]{2}$",
                        "default": "US"
                      },
                      "languages": {
                        "type": "array",
                        "description": "Preferred languages and locales for the request in order of priority. Defaults to the language of the specified location. See https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Accept-Language",
                        "items": {
                          "type": "string",
                          "example": "en-US"
                        }
                      }
                    }
                  },
                  "auditMetadata": {
                    "$ref": "#/components/schemas/AuditMetadata"
                  },
                  "threatProtection": {
                    "$ref": "#/components/schemas/ThreatProtectionOverride"
                  }
                },
                "required": [
                  "url"
                ]
              },
              "examples": {
                "example1": {
                  "summary": "Example 1",
                  "value": {
                    "url": "<string>",
                    "search": "<string>",
                    "sitemap": "include",
                    "includeSubdomains": true,
                    "ignoreQueryParameters": true,
                    "ignoreCache": false,
                    "limit": 5000,
                    "location": {
                      "country": "US",
                      "languages": [
                        "en-US"
                      ]
                    },
                    "timeout": 60000
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MapResponse"
                }
              }
            }
          },
          "402": {
            "description": "Payment required",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "Payment required to access this resource."
                    }
                  }
                }
              }
            }
          },
          "429": {
            "description": "Too many requests",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "Request rate limit exceeded. Please wait and try again later."
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "Server error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "An unexpected error occurred on the server."
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/extract": {
      "post": {
        "summary": "Extract structured data from pages using LLMs",
        "operationId": "extractData",
        "tags": [
          "Extraction"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "urls": {
                    "type": "array",
                    "items": {
                      "type": "string",
                      "format": "uri",
                      "description": "The URLs to extract data from. URLs should be in glob format."
                    }
                  },
                  "prompt": {
                    "type": "string",
                    "description": "Prompt to guide the extraction process"
                  },
                  "schema": {
                    "type": "object",
                    "description": "Schema to define the structure of the extracted data. Must conform to [JSON Schema](https://json-schema.org/)."
                  },
                  "enableWebSearch": {
                    "type": "boolean",
                    "description": "When true, the extraction will use web search to find additional data",
                    "default": false
                  },
                  "ignoreSitemap": {
                    "type": "boolean",
                    "description": "When true, sitemap.xml files will be ignored during website scanning",
                    "default": false
                  },
                  "includeSubdomains": {
                    "type": "boolean",
                    "description": "When true, subdomains of the provided URLs will also be scanned",
                    "default": true
                  },
                  "showSources": {
                    "type": "boolean",
                    "description": "When true, the sources used to extract the data will be included in the response as `sources` key",
                    "default": false
                  },
                  "scrapeOptions": {
                    "$ref": "#/components/schemas/ScrapeOptions"
                  },
                  "ignoreInvalidURLs": {
                    "type": "boolean",
                    "default": true,
                    "description": "If invalid URLs are specified in the urls array, they will be ignored. Instead of them failing the entire request, an extract using the remaining valid URLs will be performed, and the invalid URLs will be returned in the invalidURLs field of the response."
                  },
                  "threatProtection": {
                    "$ref": "#/components/schemas/ThreatProtectionOverride"
                  }
                },
                "required": [
                  "urls"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successful extraction",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ExtractResponse"
                }
              }
            }
          },
          "400": {
            "description": "Invalid request",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "Invalid input data."
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "Server error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "An unexpected error occurred on the server."
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/extract/{id}": {
      "parameters": [
        {
          "name": "id",
          "in": "path",
          "description": "The ID of the extract job",
          "required": true,
          "schema": {
            "type": "string",
            "format": "uuid"
          }
        }
      ],
      "get": {
        "summary": "Get the status of an extract job",
        "operationId": "getExtractStatus",
        "tags": [
          "Extraction"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ExtractStatusResponse"
                }
              }
            }
          }
        }
      }
    },
    "/agent": {
      "post": {
        "summary": "Start an agent task for agentic data extraction",
        "operationId": "startAgent",
        "tags": [
          "Agent"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "urls": {
                    "type": "array",
                    "items": {
                      "type": "string",
                      "format": "uri"
                    },
                    "description": "Optional list of URLs to constrain the agent to"
                  },
                  "prompt": {
                    "type": "string",
                    "description": "The prompt describing what data to extract",
                    "maxLength": 10000
                  },
                  "schema": {
                    "type": "object",
                    "description": "Optional JSON schema to structure the extracted data"
                  },
                  "maxCredits": {
                    "type": "number",
                    "description": "Maximum credits to spend on this agent task. Defaults to 2500 if not set. Values above 2,500 are always billed as paid requests."
                  },
                  "strictConstrainToURLs": {
                    "type": "boolean",
                    "description": "If true, agent will only visit URLs provided in the urls array"
                  },
                  "model": {
                    "type": "string",
                    "enum": [
                      "spark-1-mini",
                      "spark-1-pro"
                    ],
                    "default": "spark-1-mini",
                    "description": "The model to use for the agent task. spark-1-mini (default) is 60% cheaper, spark-1-pro offers higher accuracy for complex tasks"
                  },
                  "auditMetadata": {
                    "$ref": "#/components/schemas/AuditMetadata"
                  },
                  "threatProtection": {
                    "$ref": "#/components/schemas/ThreatProtectionOverride"
                  }
                },
                "required": [
                  "prompt"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Agent task started successfully",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean"
                    },
                    "id": {
                      "type": "string",
                      "format": "uuid"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment required",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "Payment required to access this resource."
                    }
                  }
                }
              }
            }
          },
          "429": {
            "description": "Too many requests",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "Rate limit exceeded."
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/agent/{jobId}": {
      "parameters": [
        {
          "name": "jobId",
          "in": "path",
          "description": "The ID of the agent job",
          "required": true,
          "schema": {
            "type": "string",
            "format": "uuid"
          }
        }
      ],
      "get": {
        "summary": "Get the status of an agent job",
        "operationId": "getAgentStatus",
        "tags": [
          "Agent"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean"
                    },
                    "status": {
                      "type": "string",
                      "enum": [
                        "processing",
                        "completed",
                        "failed"
                      ]
                    },
                    "data": {
                      "type": "object",
                      "description": "The extracted data (only present when status is completed)"
                    },
                    "model": {
                      "type": "string",
                      "enum": [
                        "spark-1-pro",
                        "spark-1-mini"
                      ],
                      "default": "spark-1-pro",
                      "description": "Model preset used for the agent run"
                    },
                    "error": {
                      "type": "string",
                      "description": "Error message (only present when status is failed)"
                    },
                    "expiresAt": {
                      "type": "string",
                      "format": "date-time"
                    },
                    "creditsUsed": {
                      "type": "number"
                    }
                  }
                }
              }
            }
          }
        }
      },
      "delete": {
        "summary": "Cancel an agent job",
        "operationId": "cancelAgent",
        "tags": [
          "Agent"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "responses": {
          "200": {
            "description": "Agent job cancelled successfully",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean"
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/crawl/active": {
      "get": {
        "summary": "Get all active crawls for the authenticated team",
        "operationId": "getActiveCrawls",
        "tags": [
          "Crawling"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": true
                    },
                    "crawls": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "format": "uuid",
                            "description": "The unique identifier of the crawl"
                          },
                          "teamId": {
                            "type": "string",
                            "description": "The ID of the team that owns the crawl"
                          },
                          "url": {
                            "type": "string",
                            "format": "uri",
                            "description": "The origin URL of the crawl"
                          },
                          "options": {
                            "type": "object",
                            "description": "The crawler options used for this crawl",
                            "properties": {
                              "scrapeOptions": {
                                "$ref": "#/components/schemas/ScrapeOptions"
                              }
                            }
                          }
                        },
                        "required": [
                          "id",
                          "teamId",
                          "url",
                          "status",
                          "options"
                        ]
                      }
                    }
                  },
                  "required": [
                    "success",
                    "data"
                  ]
                }
              }
            }
          },
          "402": {
            "description": "Payment required",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "error": {
                      "type": "string",
                      "example": "Payment required to access this resource."
                    }
                  }
                }
              }
            }
          },
          "429": {
            "description": "Too many requests",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "error": {
                      "type": "string",
                      "example": "Request rate limit exceeded. Please wait and try again later."
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "Server error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "error": {
                      "type": "string",
                      "example": "An unexpected error occurred on the server."
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/team/credit-usage": {
      "get": {
        "summary": "Get remaining credits for the authenticated team",
        "operationId": "getCreditUsage",
        "tags": [
          "Billing"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": true
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "remainingCredits": {
                          "type": "number",
                          "description": "Number of credits remaining for the team",
                          "example": 1000
                        },
                        "planCredits": {
                          "type": "number",
                          "description": "Number of credits in the plan. This does not include coupon credits, credit packs, or auto recharge credits.",
                          "example": 500000
                        },
                        "billingPeriodStart": {
                          "type": "string",
                          "format": "date-time",
                          "description": "Start date of the current billing period.",
                          "example": "2025-01-01T00:00:00Z",
                          "nullable": true
                        },
                        "billingPeriodEnd": {
                          "type": "string",
                          "format": "date-time",
                          "description": "End date of the current billing period.",
                          "example": "2025-01-31T23:59:59Z",
                          "nullable": true
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Credit usage information not found",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "error": {
                      "type": "string",
                      "example": "Could not find credit usage information"
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "Server error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "error": {
                      "type": "string",
                      "example": "Internal server error while fetching credit usage"
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/team/credit-usage/historical": {
      "get": {
        "summary": "Get historical credit usage for the authenticated team",
        "operationId": "getHistoricalCreditUsage",
        "tags": [
          "Billing"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "parameters": [
          {
            "name": "byApiKey",
            "in": "query",
            "description": "Get historical credit usage by API key",
            "required": false,
            "schema": {
              "type": "boolean",
              "default": false
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": true
                    },
                    "periods": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "startDate": {
                            "type": "string",
                            "format": "date-time",
                            "description": "Start date of the billing period",
                            "example": "2025-01-01T00:00:00Z"
                          },
                          "endDate": {
                            "type": "string",
                            "format": "date-time",
                            "description": "End date of the billing period",
                            "example": "2025-01-31T23:59:59Z"
                          },
                          "apiKey": {
                            "type": "string",
                            "description": "Name of the API key used for the billing period. null if byApiKey is false (default)",
                            "nullable": true
                          },
                          "totalCredits": {
                            "type": "integer",
                            "description": "Total number of credits used in the billing period",
                            "example": 1000
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "Server error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "error": {
                      "type": "string",
                      "example": "Internal server error while fetching historical credit usage"
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/team/token-usage": {
      "get": {
        "summary": "Get remaining tokens for the authenticated team (Extract only)",
        "operationId": "getTokenUsage",
        "tags": [
          "Billing"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": true
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "remainingTokens": {
                          "type": "number",
                          "description": "Number of tokens remaining for the team",
                          "example": 1000
                        },
                        "planTokens": {
                          "type": "number",
                          "description": "Number of tokens in the plan. This does not include coupon tokens.",
                          "example": 500000
                        },
                        "billingPeriodStart": {
                          "type": "string",
                          "format": "date-time",
                          "description": "Start date of the current billing period.",
                          "example": "2025-01-01T00:00:00Z",
                          "nullable": true
                        },
                        "billingPeriodEnd": {
                          "type": "string",
                          "format": "date-time",
                          "description": "End date of the current billing period.",
                          "example": "2025-01-31T23:59:59Z",
                          "nullable": true
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Token usage information not found",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "error": {
                      "type": "string",
                      "example": "Could not find token usage information"
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "Server error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "error": {
                      "type": "string",
                      "example": "Internal server error while fetching token usage"
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/team/token-usage/historical": {
      "get": {
        "summary": "Get historical token usage for the authenticated team (Extract only)",
        "operationId": "getHistoricalTokenUsage",
        "tags": [
          "Billing"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "parameters": [
          {
            "name": "byApiKey",
            "in": "query",
            "description": "Get historical token usage by API key",
            "required": false,
            "schema": {
              "type": "boolean",
              "default": false
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": true
                    },
                    "periods": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "startDate": {
                            "type": "string",
                            "format": "date-time",
                            "description": "Start date of the billing period",
                            "example": "2025-01-01T00:00:00Z"
                          },
                          "endDate": {
                            "type": "string",
                            "format": "date-time",
                            "description": "End date of the billing period",
                            "example": "2025-01-31T23:59:59Z"
                          },
                          "apiKey": {
                            "type": "string",
                            "description": "Name of the API key used for the billing period. null if byApiKey is false (default)",
                            "nullable": true
                          },
                          "totalTokens": {
                            "type": "integer",
                            "description": "Total number of tokens used in the billing period",
                            "example": 1000
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "Server error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "error": {
                      "type": "string",
                      "example": "Internal server error while fetching historical token usage"
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/team/queue-status": {
      "get": {
        "summary": "Metrics about your team's scrape queue",
        "operationId": "getQueueStatus",
        "tags": [
          "Miscellaneous"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": true
                    },
                    "jobsInQueue": {
                      "type": "number",
                      "description": "Number of jobs currently in your queue"
                    },
                    "activeJobsInQueue": {
                      "type": "number",
                      "description": "Number of jobs currently active"
                    },
                    "waitingJobsInQueue": {
                      "type": "number",
                      "description": "Number of jobs currently waiting"
                    },
                    "maxConcurrency": {
                      "type": "number",
                      "description": "Maximum number of concurrent active jobs based on your plan"
                    },
                    "mostRecentSuccess": {
                      "type": "string",
                      "format": "date-time",
                      "description": "Timestamp of the most recent successful job",
                      "nullable": true
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/team/activity": {
      "get": {
        "summary": "List recent API activity",
        "operationId": "getActivity",
        "description": "Lists your team's recent API activity from the last 24 hours. Returns metadata about each job including the job ID, which can be used with the corresponding GET endpoint (e.g. GET /crawl/{id}) to retrieve full results. Supports cursor-based pagination and filtering by endpoint.",
        "tags": [
          "Account"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "parameters": [
          {
            "name": "endpoint",
            "in": "query",
            "required": false,
            "schema": {
              "type": "string",
              "enum": [
                "scrape",
                "crawl",
                "batch_scrape",
                "search",
                "extract",
                "llmstxt",
                "deep_research",
                "map",
                "agent",
                "browser",
                "interact"
              ]
            },
            "description": "Filter by endpoint"
          },
          {
            "name": "limit",
            "in": "query",
            "required": false,
            "schema": {
              "type": "integer",
              "default": 50,
              "minimum": 1,
              "maximum": 100
            },
            "description": "Maximum number of results per page"
          },
          {
            "name": "cursor",
            "in": "query",
            "required": false,
            "schema": {
              "type": "string"
            },
            "description": "Cursor for pagination. Use the cursor value from the previous response."
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": true
                    },
                    "data": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "The job ID. Use this with the corresponding GET endpoint to retrieve results."
                          },
                          "endpoint": {
                            "type": "string",
                            "enum": [
                              "scrape",
                              "crawl",
                              "batch_scrape",
                              "search",
                              "extract",
                              "llmstxt",
                              "deep_research",
                              "map",
                              "agent",
                              "browser",
                              "interact"
                            ],
                            "description": "The endpoint used for this job"
                          },
                          "api_version": {
                            "type": "string",
                            "description": "The API version used for this request",
                            "example": "v1"
                          },
                          "created_at": {
                            "type": "string",
                            "format": "date-time",
                            "description": "When the job was created"
                          },
                          "target": {
                            "type": "string",
                            "nullable": true,
                            "description": "The URL or query that was submitted"
                          }
                        }
                      }
                    },
                    "cursor": {
                      "type": "string",
                      "nullable": true,
                      "description": "Cursor to use for the next page. Null if there are no more results."
                    },
                    "has_more": {
                      "type": "boolean",
                      "description": "Whether there are more results available"
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/search": {
      "post": {
        "summary": "Search and optionally scrape search results",
        "operationId": "searchAndScrape",
        "tags": [
          "Search"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "query": {
                    "type": "string",
                    "description": "The search query",
                    "maxLength": 500
                  },
                  "limit": {
                    "type": "integer",
                    "description": "Maximum number of results to return (per source type when using multiple sources)",
                    "default": 10,
                    "maximum": 100,
                    "minimum": 1
                  },
                  "sources": {
                    "type": "array",
                    "items": {
                      "oneOf": [
                        {
                          "type": "object",
                          "title": "Web",
                          "properties": {
                            "type": {
                              "type": "string",
                              "enum": [
                                "web"
                              ]
                            },
                            "tbs": {
                              "type": "string",
                              "description": "Time-based search parameter. Supports predefined time ranges (`qdr:h`, `qdr:d`, `qdr:w`, `qdr:m`, `qdr:y`), custom date ranges (`cdr:1,cd_min:MM/DD/YYYY,cd_max:MM/DD/YYYY`), and sort by date (`sbd:1`). Values can be combined, e.g. `sbd:1,qdr:w`."
                            },
                            "location": {
                              "type": "string",
                              "description": "Location parameter for search results"
                            }
                          },
                          "required": [
                            "type"
                          ]
                        },
                        {
                          "type": "object",
                          "title": "Images",
                          "properties": {
                            "type": {
                              "type": "string",
                              "enum": [
                                "images"
                              ]
                            }
                          },
                          "required": [
                            "type"
                          ]
                        },
                        {
                          "type": "object",
                          "title": "News",
                          "properties": {
                            "type": {
                              "type": "string",
                              "enum": [
                                "news"
                              ]
                            }
                          },
                          "required": [
                            "type"
                          ]
                        }
                      ]
                    },
                    "description": "Sources to search. Will determine the arrays available in the response. Defaults to ['web'].",
                    "default": [
                      "web"
                    ]
                  },
                  "categories": {
                    "type": "array",
                    "items": {
                      "oneOf": [
                        {
                          "type": "object",
                          "title": "GitHub",
                          "properties": {
                            "type": {
                              "type": "string",
                              "enum": [
                                "github"
                              ]
                            }
                          },
                          "required": [
                            "type"
                          ]
                        },
                        {
                          "type": "object",
                          "title": "Research",
                          "properties": {
                            "type": {
                              "type": "string",
                              "enum": [
                                "research"
                              ]
                            }
                          },
                          "required": [
                            "type"
                          ]
                        },
                        {
                          "type": "object",
                          "title": "PDF",
                          "properties": {
                            "type": {
                              "type": "string",
                              "enum": [
                                "pdf"
                              ]
                            }
                          },
                          "required": [
                            "type"
                          ]
                        }
                      ]
                    },
                    "description": "Categories to filter results by. Defaults to [], which means results will not be filtered by any categories."
                  },
                  "includeDomains": {
                    "type": "array",
                    "items": {
                      "type": "string",
                      "format": "hostname"
                    },
                    "description": "Restricts search results to the specified domains. Domains should be hostnames only, without protocol or path. Cannot be used with excludeDomains."
                  },
                  "excludeDomains": {
                    "type": "array",
                    "items": {
                      "type": "string",
                      "format": "hostname"
                    },
                    "description": "Excludes search results from the specified domains. Domains should be hostnames only, without protocol or path. Cannot be used with includeDomains."
                  },
                  "tbs": {
                    "type": "string",
                    "description": "Time-based search parameter. Supports predefined time ranges (`qdr:h`, `qdr:d`, `qdr:w`, `qdr:m`, `qdr:y`), custom date ranges (`cdr:1,cd_min:MM/DD/YYYY,cd_max:MM/DD/YYYY`), and sort by date (`sbd:1`). Values can be combined, e.g. `sbd:1,qdr:w`."
                  },
                  "location": {
                    "type": "string",
                    "description": "Location parameter for search results (e.g. `San Francisco,California,United States`). For best results, set both this and the `country` parameter."
                  },
                  "country": {
                    "type": "string",
                    "description": "ISO country code for geo-targeting search results (e.g. `US`). For best results, set both this and the `location` parameter.",
                    "default": "US"
                  },
                  "safe": {
                    "type": "boolean",
                    "description": "When `true`, filters explicit content from search results (SafeSearch). Omit to keep the default behavior, which does not apply the filter."
                  },
                  "timeout": {
                    "type": "integer",
                    "description": "Timeout in milliseconds",
                    "default": 60000
                  },
                  "ignoreInvalidURLs": {
                    "type": "boolean",
                    "description": "Excludes URLs from the search results that are invalid for other Firecrawl endpoints. This helps reduce errors if you are piping data from search into other Firecrawl API endpoints.",
                    "default": false
                  },
                  "highlights": {
                    "type": "boolean",
                    "description": "Generate query-relevant highlights for search results. Set to false to return provider descriptions or snippets without highlighting.",
                    "default": true
                  },
                  "enterprise": {
                    "type": "array",
                    "items": {
                      "type": "string",
                      "enum": [
                        "anon",
                        "zdr"
                      ]
                    },
                    "description": "Enterprise search options for Zero Data Retention (ZDR). Use `[\"zdr\"]` for end-to-end ZDR (10 credits / 10 results) or `[\"anon\"]` for anonymized ZDR (2 credits / 10 results). Must be enabled for your team."
                  },
                  "scrapeOptions": {
                    "allOf": [
                      {
                        "$ref": "#/components/schemas/ScrapeOptions"
                      }
                    ],
                    "description": "Options for scraping search results",
                    "default": {}
                  },
                  "threatProtection": {
                    "$ref": "#/components/schemas/ThreatProtectionOverride"
                  }
                },
                "required": [
                  "query"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean"
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "web": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "title": {
                                "type": "string",
                                "description": "Title from search result"
                              },
                              "description": {
                                "type": "string",
                                "description": "Description from search result"
                              },
                              "url": {
                                "type": "string",
                                "description": "URL of the search result"
                              },
                              "markdown": {
                                "type": "string",
                                "nullable": true,
                                "description": "Markdown content if scraping was requested"
                              },
                              "html": {
                                "type": "string",
                                "nullable": true,
                                "description": "HTML content if requested in formats"
                              },
                              "rawHtml": {
                                "type": "string",
                                "nullable": true,
                                "description": "Raw HTML content if requested in formats"
                              },
                              "links": {
                                "type": "array",
                                "items": {
                                  "type": "string"
                                },
                                "description": "Links found if requested in formats"
                              },
                              "screenshot": {
                                "type": "string",
                                "nullable": true,
                                "description": "Screenshot URL if requested in formats. Screenshots expire after 24 hours and can no longer be downloaded."
                              },
                              "audio": {
                                "type": "string",
                                "nullable": true,
                                "description": "Signed URL to the extracted MP3 audio file if `audio` is in `formats`. The signed URL expires after 1 hour."
                              },
                              "video": {
                                "type": "string",
                                "nullable": true,
                                "description": "Signed URL to the extracted video file if `video` is in `formats`. The signed URL expires after 1 hour."
                              },
                              "metadata": {
                                "type": "object",
                                "properties": {
                                  "title": {
                                    "type": "string"
                                  },
                                  "description": {
                                    "type": "string"
                                  },
                                  "sourceURL": {
                                    "type": "string",
                                    "description": "The original URL that was requested. May differ from the page's final URL if redirects occurred."
                                  },
                                  "url": {
                                    "type": "string",
                                    "description": "The final URL of the page after all redirects have been followed."
                                  },
                                  "statusCode": {
                                    "type": "integer"
                                  },
                                  "numPages": {
                                    "type": "integer",
                                    "description": "For PDF inputs, the number of pages parsed (capped by the parsers maxPages option)."
                                  },
                                  "totalPages": {
                                    "type": "integer",
                                    "description": "For PDF inputs, the document's true page count before any maxPages capping. Omitted when it cannot be determined; a totalPages greater than numPages indicates the result was truncated."
                                  },
                                  "error": {
                                    "type": "string",
                                    "nullable": true
                                  }
                                }
                              }
                            }
                          }
                        },
                        "images": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "title": {
                                "type": "string",
                                "description": "Title from search result"
                              },
                              "imageUrl": {
                                "type": "string",
                                "description": "URL of the image"
                              },
                              "imageWidth": {
                                "type": "integer",
                                "description": "Width of the image"
                              },
                              "imageHeight": {
                                "type": "integer",
                                "description": "Height of the image"
                              },
                              "url": {
                                "type": "string",
                                "description": "URL of the search result"
                              },
                              "position": {
                                "type": "integer",
                                "description": "Position of the search result"
                              }
                            }
                          }
                        },
                        "news": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "title": {
                                "type": "string",
                                "description": "Title of the article"
                              },
                              "snippet": {
                                "type": "string",
                                "description": "Snippet from the article"
                              },
                              "url": {
                                "type": "string",
                                "description": "URL of the article"
                              },
                              "date": {
                                "type": "string",
                                "description": "Date of the article"
                              },
                              "imageUrl": {
                                "type": "string",
                                "description": "Image URL of the article"
                              },
                              "position": {
                                "type": "integer",
                                "description": "Position of the article"
                              },
                              "markdown": {
                                "type": "string",
                                "nullable": true,
                                "description": "Markdown content if scraping was requested"
                              },
                              "html": {
                                "type": "string",
                                "nullable": true,
                                "description": "HTML content if requested in formats"
                              },
                              "rawHtml": {
                                "type": "string",
                                "nullable": true,
                                "description": "Raw HTML content if requested in formats"
                              },
                              "links": {
                                "type": "array",
                                "items": {
                                  "type": "string"
                                },
                                "description": "Links found if requested in formats"
                              },
                              "screenshot": {
                                "type": "string",
                                "nullable": true,
                                "description": "Screenshot URL if requested in formats. Screenshots expire after 24 hours and can no longer be downloaded."
                              },
                              "audio": {
                                "type": "string",
                                "nullable": true,
                                "description": "Signed URL to the extracted MP3 audio file if `audio` is in `formats`. The signed URL expires after 1 hour."
                              },
                              "video": {
                                "type": "string",
                                "nullable": true,
                                "description": "Signed URL to the extracted video file if `video` is in `formats`. The signed URL expires after 1 hour."
                              },
                              "metadata": {
                                "type": "object",
                                "properties": {
                                  "title": {
                                    "type": "string"
                                  },
                                  "description": {
                                    "type": "string"
                                  },
                                  "sourceURL": {
                                    "type": "string",
                                    "description": "The original URL that was requested. May differ from the page's final URL if redirects occurred."
                                  },
                                  "url": {
                                    "type": "string",
                                    "description": "The final URL of the page after all redirects have been followed."
                                  },
                                  "statusCode": {
                                    "type": "integer"
                                  },
                                  "numPages": {
                                    "type": "integer",
                                    "description": "For PDF inputs, the number of pages parsed (capped by the parsers maxPages option)."
                                  },
                                  "totalPages": {
                                    "type": "integer",
                                    "description": "For PDF inputs, the document's true page count before any maxPages capping. Omitted when it cannot be determined; a totalPages greater than numPages indicates the result was truncated."
                                  },
                                  "error": {
                                    "type": "string",
                                    "nullable": true
                                  }
                                }
                              }
                            }
                          }
                        }
                      },
                      "description": "The search results. The arrays available will depend on the sources you specified in the request. By default, the `web` array will be returned."
                    },
                    "warning": {
                      "type": "string",
                      "nullable": true,
                      "description": "Warning message if any issues occurred"
                    },
                    "id": {
                      "type": "string",
                      "description": "The ID of the search job"
                    },
                    "creditsUsed": {
                      "type": "integer",
                      "description": "The number of credits used for the search"
                    }
                  }
                }
              }
            }
          },
          "408": {
            "description": "Request timeout",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "error": {
                      "type": "string",
                      "example": "Request timed out"
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "Server error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "code": {
                      "type": "string",
                      "example": "UNKNOWN_ERROR"
                    },
                    "error": {
                      "type": "string",
                      "example": "An unexpected error occurred on the server."
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/interact": {
      "post": {
        "summary": "Create an interact session",
        "operationId": "createBrowserSession",
        "tags": [
          "Interact"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "ttl": {
                    "type": "integer",
                    "default": 300,
                    "minimum": 30,
                    "maximum": 3600,
                    "description": "Total time-to-live in seconds for the interact session"
                  },
                  "activityTtl": {
                    "type": "integer",
                    "minimum": 10,
                    "maximum": 3600,
                    "description": "Time in seconds before the session is destroyed due to inactivity"
                  },
                  "streamWebView": {
                    "type": "boolean",
                    "default": true,
                    "description": "Whether to stream a live view of the browser"
                  },
                  "profile": {
                    "type": "object",
                    "description": "Enable persistent storage across interact sessions. Data saved in one session can be loaded in a later session using the same name.",
                    "properties": {
                      "name": {
                        "type": "string",
                        "minLength": 1,
                        "maxLength": 128,
                        "description": "A name for the profile. Sessions with the same name share storage."
                      },
                      "saveChanges": {
                        "type": "boolean",
                        "default": true,
                        "description": "When true, browser state is saved back to the profile on close. Set to false to load existing data without writing. Multiple non-saving sessions are allowed but only one saving session at a time."
                      }
                    },
                    "required": [
                      "name"
                    ]
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Interact session created successfully",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean"
                    },
                    "id": {
                      "type": "string",
                      "description": "The unique session identifier"
                    },
                    "cdpUrl": {
                      "type": "string",
                      "description": "WebSocket URL for Chrome DevTools Protocol access"
                    },
                    "liveViewUrl": {
                      "type": "string",
                      "description": "URL to view the interact session in real time"
                    },
                    "interactiveLiveViewUrl": {
                      "type": "string",
                      "description": "URL to interact with the interact session in real time (click, type, scroll)"
                    },
                    "expiresAt": {
                      "type": "string",
                      "format": "date-time",
                      "description": "When the session will expire based on TTL"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment required",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "Payment required to access this resource."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "List interact sessions",
        "operationId": "listBrowserSessions",
        "tags": [
          "Interact"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "parameters": [
          {
            "name": "status",
            "in": "query",
            "required": false,
            "schema": {
              "type": "string",
              "enum": [
                "active",
                "destroyed"
              ]
            },
            "description": "Filter sessions by status"
          }
        ],
        "responses": {
          "200": {
            "description": "List of interact sessions",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean"
                    },
                    "sessions": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string"
                          },
                          "status": {
                            "type": "string",
                            "enum": [
                              "active",
                              "destroyed"
                            ]
                          },
                          "cdpUrl": {
                            "type": "string"
                          },
                          "liveViewUrl": {
                            "type": "string"
                          },
                          "interactiveLiveViewUrl": {
                            "type": "string",
                            "description": "URL to interact with the interact session in real time (click, type, scroll)"
                          },
                          "streamWebView": {
                            "type": "boolean"
                          },
                          "createdAt": {
                            "type": "string",
                            "format": "date-time"
                          },
                          "lastActivity": {
                            "type": "string",
                            "format": "date-time"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment required",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "Payment required to access this resource."
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/interact/{sessionId}/execute": {
      "post": {
        "summary": "Execute code in an interact session",
        "operationId": "executeBrowserCode",
        "tags": [
          "Interact"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "parameters": [
          {
            "name": "sessionId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "The interact session ID"
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "code"
                ],
                "properties": {
                  "code": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 100000,
                    "description": "Code to execute in the browser sandbox"
                  },
                  "language": {
                    "type": "string",
                    "enum": [
                      "python",
                      "node",
                      "bash"
                    ],
                    "default": "node",
                    "description": "Language of the code to execute. Use `node` for JavaScript or `bash` for agent-browser CLI commands."
                  },
                  "timeout": {
                    "type": "integer",
                    "minimum": 1,
                    "maximum": 300,
                    "description": "Execution timeout in seconds"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Code executed successfully",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean"
                    },
                    "stdout": {
                      "type": "string",
                      "nullable": true,
                      "description": "Standard output from the code execution"
                    },
                    "result": {
                      "type": "string",
                      "nullable": true,
                      "description": "Standard output (alias for stdout)"
                    },
                    "stderr": {
                      "type": "string",
                      "nullable": true,
                      "description": "Standard error output from the code execution"
                    },
                    "exitCode": {
                      "type": "integer",
                      "nullable": true,
                      "description": "Exit code of the executed process"
                    },
                    "killed": {
                      "type": "boolean",
                      "description": "Whether the process was killed due to timeout"
                    },
                    "error": {
                      "type": "string",
                      "nullable": true,
                      "description": "Error message if the code raised an exception"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment required",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "Payment required to access this resource."
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/interact/{sessionId}": {
      "delete": {
        "summary": "Delete an interact session",
        "operationId": "deleteBrowserSession",
        "tags": [
          "Interact"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "parameters": [
          {
            "name": "sessionId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "The interact session ID"
          }
        ],
        "responses": {
          "200": {
            "description": "Interact session deleted successfully",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean"
                    },
                    "sessionDurationMs": {
                      "type": "integer",
                      "description": "Total session duration in milliseconds"
                    },
                    "creditsBilled": {
                      "type": "number",
                      "description": "Number of credits billed for the session"
                    }
                  }
                }
              }
            }
          },
          "402": {
            "description": "Payment required",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "example": "Payment required to access this resource."
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/scrape/{jobId}": {
      "parameters": [
        {
          "name": "jobId",
          "in": "path",
          "required": true,
          "schema": {
            "type": "string",
            "format": "uuid"
          },
          "description": "The ID of the job"
        }
      ],
      "get": {
        "summary": "Get the status of a scrape job",
        "operationId": "getScrapeStatus",
        "tags": [
          "Scraping"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "responses": {
          "200": {
            "description": "Scrape job status",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ScrapeResponse"
                }
              }
            }
          },
          "402": {
            "description": "Payment required",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          },
          "429": {
            "description": "Too many requests",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "Server error",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": false
                    },
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/search/{jobId}/feedback": {
      "post": {
        "summary": "Submit feedback for a search job",
        "operationId": "submitSearchFeedback",
        "tags": [
          "Search",
          "Feedback"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "parameters": [
          {
            "name": "jobId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            },
            "description": "Search job id returned by /search."
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SearchFeedbackRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Feedback recorded",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/FeedbackResponse"
                }
              }
            }
          },
          "400": {
            "description": "Invalid request body",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/FeedbackErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Feedback is not available for this team",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/FeedbackErrorResponse"
                }
              }
            }
          },
          "404": {
            "description": "Search not found for this team",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/FeedbackErrorResponse"
                }
              }
            }
          },
          "409": {
            "description": "Feedback cannot be recorded for this search",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/FeedbackErrorResponse"
                }
              }
            }
          },
          "500": {
            "description": "Server error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/FeedbackErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/support/ask": {
      "post": {
        "summary": "Ask the Firecrawl support agent",
        "description": "Diagnose Firecrawl job, account, and API usage issues with an AI support agent.",
        "operationId": "askSupportAgent",
        "tags": [
          "Support"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SupportAskRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Support agent answer",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SupportAskResponse"
                }
              }
            }
          },
          "400": {
            "description": "Invalid request",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SupportProxyErrorResponse"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SupportProxyErrorResponse"
                }
              }
            }
          },
          "503": {
            "description": "Support agent unavailable",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SupportProxyErrorResponse"
                }
              }
            }
          },
          "504": {
            "description": "Support agent timeout",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SupportProxyErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/support/docs-search": {
      "post": {
        "summary": "Search Firecrawl docs with citations",
        "description": "Answer Firecrawl documentation questions using the public docs corpus.",
        "operationId": "searchSupportDocs",
        "tags": [
          "Support"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SupportDocsSearchRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Docs-grounded answer",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SupportDocsSearchResponse"
                }
              }
            }
          },
          "400": {
            "description": "Invalid request",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SupportProxyErrorResponse"
                }
              }
            }
          },
          "401": {
            "description": "Missing or invalid bearer token",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SupportProxyErrorResponse"
                }
              }
            }
          },
          "503": {
            "description": "Support agent unavailable",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SupportProxyErrorResponse"
                }
              }
            }
          },
          "504": {
            "description": "Support agent timeout",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SupportProxyErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/search/research/papers": {
      "get": {
        "summary": "Search papers",
        "operationId": "researchSearchPapers",
        "tags": [
          "Research"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "parameters": [
          {
            "name": "query",
            "in": "query",
            "required": true,
            "description": "Natural-language paper search query.",
            "schema": {
              "type": "string",
              "minLength": 1
            }
          },
          {
            "name": "k",
            "in": "query",
            "required": false,
            "description": "Maximum number of ranked papers to return.",
            "schema": {
              "type": "integer",
              "minimum": 1,
              "maximum": 500,
              "default": 40
            }
          },
          {
            "name": "authors",
            "in": "query",
            "required": false,
            "description": "Author substring filter. Repeat or pass a comma-separated value; all filters must match.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "categories",
            "in": "query",
            "required": false,
            "description": "Paper category filter. Repeat or pass a comma-separated value; all filters must match.",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "from",
            "in": "query",
            "required": false,
            "description": "Inclusive lower bound on created/updated date.",
            "schema": {
              "type": "string",
              "format": "date"
            }
          },
          {
            "name": "to",
            "in": "query",
            "required": false,
            "description": "Inclusive upper bound on created/updated date.",
            "schema": {
              "type": "string",
              "format": "date"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Ranked paper results.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ResearchSearchPapersResponse"
                },
                "example": {
                  "success": true,
                  "results": [
                    {
                      "paperId": "2014215642691656232",
                      "primaryId": "arxiv:2105.05233",
                      "ids": {
                        "arxiv": [
                          "2105.05233"
                        ]
                      },
                      "title": "Diffusion Models Beat GANs on Image Synthesis",
                      "abstract": "We show that diffusion models can achieve image sample quality superior to the current state-of-the-art generative models...",
                      "score": 0.0163934
                    }
                  ]
                }
              }
            }
          },
          "400": {
            "description": "Invalid request"
          },
          "401": {
            "description": "Missing or invalid bearer token"
          },
          "429": {
            "description": "Rate limit exceeded"
          },
          "500": {
            "description": "Internal server error"
          }
        }
      }
    },
    "/search/research/papers/{id}": {
      "get": {
        "summary": "Inspect or read a paper",
        "operationId": "researchGetPaper",
        "tags": [
          "Research"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Paper reference: a canonical paperId or source-specific primaryId.",
            "schema": {
              "type": "string"
            },
            "examples": {
              "paperId": {
                "summary": "Canonical paperId",
                "value": "2014215642691656232"
              },
              "sourceId": {
                "summary": "Source-specific primaryId",
                "value": "arxiv:2105.05233"
              }
            }
          },
          {
            "name": "query",
            "in": "query",
            "required": false,
            "description": "When present, returns the top matching full-text passages for this question. Omit it to inspect metadata only.",
            "schema": {
              "type": "string",
              "minLength": 1
            }
          },
          {
            "name": "k",
            "in": "query",
            "required": false,
            "description": "Passage count for read mode. Only valid when query is present.",
            "schema": {
              "type": "integer",
              "minimum": 1,
              "maximum": 50,
              "default": 4
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Paper metadata or read-mode passages.",
            "content": {
              "application/json": {
                "schema": {
                  "oneOf": [
                    {
                      "$ref": "#/components/schemas/ResearchPaperMetadataResponse"
                    },
                    {
                      "$ref": "#/components/schemas/ResearchReadPaperResponse"
                    }
                  ]
                },
                "example": {
                  "success": true,
                  "paper": {
                    "paperId": "2014215642691656232",
                    "ids": {
                      "arxiv": [
                        "2105.05233"
                      ]
                    },
                    "title": "Diffusion Models Beat GANs on Image Synthesis",
                    "abstract": "We show that diffusion models can achieve image sample quality superior to the current state-of-the-art generative models...",
                    "authors": "Prafulla Dhariwal, Alexander Nichol",
                    "categories": [
                      "cs.LG"
                    ],
                    "createdDate": "Wed, 11 May 2021 18:01:01 GMT",
                    "updateDate": "2021-06-01"
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid request"
          },
          "401": {
            "description": "Missing or invalid bearer token"
          },
          "404": {
            "description": "Paper not found"
          },
          "429": {
            "description": "Rate limit exceeded"
          },
          "500": {
            "description": "Internal server error"
          }
        }
      }
    },
    "/search/research/papers/{id}/similar": {
      "get": {
        "summary": "Find related papers",
        "operationId": "researchRelatedPapers",
        "tags": [
          "Research"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Primary seed paper reference.",
            "schema": {
              "type": "string"
            },
            "examples": {
              "paperId": {
                "summary": "Canonical paperId",
                "value": "2014215642691656232"
              },
              "sourceId": {
                "summary": "Source-specific primaryId",
                "value": "arxiv:2105.05233"
              }
            }
          },
          {
            "name": "intent",
            "in": "query",
            "required": true,
            "description": "Natural-language ranking/filtering intent used for semantic ranking.",
            "schema": {
              "type": "string",
              "minLength": 1
            }
          },
          {
            "name": "mode",
            "in": "query",
            "required": false,
            "description": "Structural expansion mode.",
            "schema": {
              "type": "string",
              "enum": [
                "similar",
                "citers",
                "references"
              ],
              "default": "similar"
            }
          },
          {
            "name": "k",
            "in": "query",
            "required": false,
            "description": "Maximum number of related papers to return.",
            "schema": {
              "type": "integer",
              "minimum": 1,
              "maximum": 500,
              "default": 40
            }
          },
          {
            "name": "rerank",
            "in": "query",
            "required": false,
            "description": "Apply an additional rerank over fused candidates.",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "anchor",
            "in": "query",
            "required": false,
            "description": "Additional seed paper reference. Repeat this parameter for multiple anchors.",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Ranked related papers.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ResearchSimilarPapersResponse"
                },
                "example": {
                  "success": true,
                  "results": [
                    {
                      "paperId": "482107036680302043",
                      "primaryId": "arxiv:2006.11239",
                      "ids": {
                        "arxiv": [
                          "2006.11239"
                        ]
                      },
                      "title": "Denoising Diffusion Probabilistic Models",
                      "abstract": "We present high quality image synthesis results using diffusion probabilistic models...",
                      "score": 0.032119,
                      "signals": {
                        "structural": 12,
                        "semantic": 0.61,
                        "articleRank": 0.00031,
                        "seedOverlap": 2
                      }
                    }
                  ],
                  "poolSize": 40,
                  "truncated": false
                }
              }
            }
          },
          "400": {
            "description": "Invalid request"
          },
          "401": {
            "description": "Missing or invalid bearer token"
          },
          "429": {
            "description": "Rate limit exceeded"
          },
          "500": {
            "description": "Internal server error"
          }
        }
      }
    },
    "/search/developer": {
      "get": {
        "summary": "Search the developer index",
        "operationId": "developerSearch",
        "tags": [
          "Developer"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "parameters": [
          {
            "name": "query",
            "in": "query",
            "required": true,
            "description": "Natural-language question or search phrase.",
            "schema": {
              "type": "string",
              "minLength": 1
            }
          },
          {
            "name": "k",
            "in": "query",
            "required": false,
            "description": "Number of ranked results to return.",
            "schema": {
              "type": "integer",
              "minimum": 1,
              "maximum": 100,
              "default": 10
            }
          },
          {
            "name": "types",
            "in": "query",
            "required": false,
            "description": "Result kinds to search. Defaults to all four. Accepts a repeated parameter (`types=issue&types=pull_request`) or one comma-separated value (`types=issue,pull_request`).",
            "schema": {
              "type": "array",
              "items": {
                "type": "string",
                "enum": [
                  "doc",
                  "issue",
                  "pull_request",
                  "readme"
                ]
              }
            }
          },
          {
            "name": "repos",
            "in": "query",
            "required": false,
            "description": "Repository slugs to scope the repository half of the index to, such as `firecrawl/firecrawl`. Applies to the `issue`, `pull_request`, and `readme` types only. Sent together with `sources`, the two halves are combined rather than intersected, so matching results come back from either. Returns 400 when no repository type is in `types`, reporting that `repos` cannot match any requested type and that you should add repository types or drop `repos`.",
            "schema": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          },
          {
            "name": "sources",
            "in": "query",
            "required": false,
            "description": "Documentation source ids to scope the documentation half to, at most 20. Applies to the `doc` type only. Not a fixed enum: ids reflect the documentation sites in the index and the set grows over time, so confirm an id resolves by sending it and reading the `sources` array on the response. Returns 400 with `sources cannot match any requested type; add doc or drop sources` when `doc` is not in `types`.",
            "schema": {
              "type": "array",
              "maxItems": 20,
              "items": {
                "type": "string",
                "minLength": 1,
                "maxLength": 512
              }
            }
          },
          {
            "name": "skills",
            "in": "query",
            "required": false,
            "description": "Set to `only` to limit the search to indexed agent-skill files.",
            "schema": {
              "type": "string",
              "enum": [
                "only"
              ]
            }
          },
          {
            "name": "passages",
            "in": "query",
            "required": false,
            "description": "Matched passages to return per result.",
            "schema": {
              "type": "integer",
              "minimum": 1,
              "maximum": 5,
              "default": 1
            }
          },
          {
            "name": "language",
            "in": "query",
            "required": false,
            "description": "Repository primary language, such as `Rust`. Applies to repository results only; sending it with no `sources` scope returns no `doc` results. See [how the repository filters scope a search](/api-reference/endpoint/developer-search#how-the-repository-filters-scope-a-search).",
            "schema": {
              "type": "string",
              "example": "Rust"
            }
          },
          {
            "name": "topic",
            "in": "query",
            "required": false,
            "description": "Repository topic, such as `async`. Applies to repository results only; sending it with no `sources` scope returns no `doc` results.",
            "schema": {
              "type": "string",
              "example": "async"
            }
          },
          {
            "name": "license",
            "in": "query",
            "required": false,
            "description": "Repository license, such as `MIT`. Applies to repository results only; sending it with no `sources` scope returns no `doc` results.",
            "schema": {
              "type": "string",
              "example": "MIT"
            }
          },
          {
            "name": "min_stars",
            "in": "query",
            "required": false,
            "description": "Lower bound on repository stars. Applies to repository results only; sending it with no `sources` scope returns no `doc` results.",
            "schema": {
              "type": "integer",
              "minimum": 0
            }
          },
          {
            "name": "max_stars",
            "in": "query",
            "required": false,
            "description": "Upper bound on repository stars. Applies to repository results only; sending it with no `sources` scope returns no `doc` results.",
            "schema": {
              "type": "integer",
              "minimum": 0
            }
          },
          {
            "name": "archived",
            "in": "query",
            "required": false,
            "description": "Include or exclude archived repositories. Applies to repository results only; sending it with no `sources` scope returns no `doc` results.",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "fork",
            "in": "query",
            "required": false,
            "description": "Include or exclude forks. Applies to repository results only; sending it with no `sources` scope returns no `doc` results.",
            "schema": {
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Ranked developer results with matched passages.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DeveloperSearchResponse"
                },
                "example": {
                  "success": true,
                  "results": [
                    {
                      "id": "issue:firecrawl/firecrawl#1234",
                      "type": "issue",
                      "url": "https://github.com/firecrawl/firecrawl/issues/1234",
                      "title": "Retries are not applied to 429 responses",
                      "passages": [
                        {
                          "text": "The client treats 429 as a terminal status, so the backoff never runs."
                        }
                      ]
                    }
                  ],
                  "coverage": {
                    "doc": "ok",
                    "issue": "ok",
                    "pull_request": "ok",
                    "readme": "ok"
                  },
                  "reranked": true
                }
              }
            }
          },
          "400": {
            "description": "Invalid request, including a filter that cannot match any requested type"
          },
          "401": {
            "description": "Missing or invalid bearer token"
          },
          "429": {
            "description": "Rate limit exceeded"
          },
          "500": {
            "description": "Internal server error"
          }
        }
      },
      "post": {
        "summary": "Search the developer index",
        "operationId": "developerSearchPost",
        "tags": [
          "Developer"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "query"
                ],
                "properties": {
                  "query": {
                    "type": "string",
                    "minLength": 1
                  },
                  "k": {
                    "type": "integer",
                    "minimum": 1,
                    "maximum": 100,
                    "default": 10
                  },
                  "types": {
                    "type": "array",
                    "items": {
                      "type": "string",
                      "enum": [
                        "doc",
                        "issue",
                        "pull_request",
                        "readme"
                      ]
                    }
                  },
                  "repos": {
                    "type": "array",
                    "description": "Repository slugs to scope the repository half of the index to. Applies to the `issue`, `pull_request`, and `readme` types only. Sent together with `sources`, the two halves are combined rather than intersected. Returns 400 when no repository type is in `types`, reporting that `repos` cannot match any requested type and that you should add repository types or drop `repos`.",
                    "items": {
                      "type": "string"
                    }
                  },
                  "sources": {
                    "type": "array",
                    "description": "Documentation source ids to scope the documentation half to, at most 20. Applies to the `doc` type only. Not a fixed enum: ids reflect the documentation sites in the index and the set grows over time. Returns 400 with `sources cannot match any requested type; add doc or drop sources` when `doc` is not in `types`.",
                    "maxItems": 20,
                    "items": {
                      "type": "string",
                      "minLength": 1,
                      "maxLength": 512
                    }
                  },
                  "skills": {
                    "type": "string",
                    "description": "Set to `only` to limit the search to indexed agent-skill files.",
                    "enum": [
                      "only"
                    ]
                  },
                  "passages": {
                    "type": "integer",
                    "minimum": 1,
                    "maximum": 5,
                    "default": 1
                  },
                  "language": {
                    "type": "string",
                    "description": "Repository primary language, such as `Rust`. Applies to repository results only; sending it with no `sources` scope returns no `doc` results. See [how the repository filters scope a search](/api-reference/endpoint/developer-search#how-the-repository-filters-scope-a-search).",
                    "example": "Rust"
                  },
                  "topic": {
                    "type": "string",
                    "description": "Repository topic, such as `async`. Applies to repository results only; sending it with no `sources` scope returns no `doc` results.",
                    "example": "async"
                  },
                  "license": {
                    "type": "string",
                    "description": "Repository license, such as `MIT`. Applies to repository results only; sending it with no `sources` scope returns no `doc` results.",
                    "example": "MIT"
                  },
                  "min_stars": {
                    "type": "integer",
                    "minimum": 0,
                    "description": "Lower bound on repository stars. Applies to repository results only; sending it with no `sources` scope returns no `doc` results."
                  },
                  "max_stars": {
                    "type": "integer",
                    "minimum": 0,
                    "description": "Upper bound on repository stars. Applies to repository results only; sending it with no `sources` scope returns no `doc` results."
                  },
                  "archived": {
                    "type": "boolean",
                    "description": "Include or exclude archived repositories. Applies to repository results only; sending it with no `sources` scope returns no `doc` results."
                  },
                  "fork": {
                    "type": "boolean",
                    "description": "Include or exclude forks. Applies to repository results only; sending it with no `sources` scope returns no `doc` results."
                  }
                }
              },
              "example": {
                "query": "how do I configure retries",
                "k": 10,
                "types": [
                  "issue",
                  "pull_request"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Ranked developer results with matched passages.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DeveloperSearchResponse"
                }
              }
            }
          },
          "400": {
            "description": "Invalid request, including a filter that cannot match any requested type"
          },
          "401": {
            "description": "Missing or invalid bearer token"
          },
          "429": {
            "description": "Rate limit exceeded"
          },
          "500": {
            "description": "Internal server error"
          }
        }
      }
    },
    "/feedback": {
      "post": {
        "summary": "Submit feedback for a v2 job",
        "operationId": "submitEndpointFeedback",
        "tags": [
          "Feedback"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/EndpointFeedbackRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Feedback recorded",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/FeedbackResponse"
                }
              }
            }
          },
          "400": {
            "description": "Invalid request body",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/FeedbackErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Feedback is not available for this team",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/FeedbackErrorResponse"
                }
              }
            }
          },
          "404": {
            "description": "Job not found for this team",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/FeedbackErrorResponse"
                }
              }
            }
          },
          "409": {
            "description": "Feedback cannot be recorded for this job",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/FeedbackErrorResponse"
                }
              }
            }
          },
          "500": {
            "description": "Server error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/FeedbackErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/team/threat-protection": {
      "get": {
        "summary": "Get the team's threat protection policy",
        "operationId": "getThreatProtection",
        "tags": [
          "Threat Protection"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "responses": {
          "200": {
            "description": "Effective threat protection policy for the team's organization.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": true
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "mode": {
                          "type": "string",
                          "enum": [
                            "off",
                            "normal"
                          ],
                          "description": "Threat protection mode. `off` disables checks; `normal` checks URLs against Google Web Risk (+2 credits per URL scanned).",
                          "example": "normal"
                        },
                        "riskScoreThreshold": {
                          "type": "integer",
                          "minimum": 0,
                          "maximum": 100,
                          "description": "Normalized score (0-100) at or above which a classifier verdict is blocked. Lower is stricter.",
                          "example": 75
                        },
                        "blacklist": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          },
                          "description": "Exact domains or globs (e.g. `*.example.com`) always blocked, without a classifier call.",
                          "example": [
                            "*.risky.example"
                          ]
                        },
                        "whitelist": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          },
                          "description": "Exact domains or globs always allowed. Wins over every other rule.",
                          "example": [
                            "*.trusted.example"
                          ]
                        },
                        "blockedTlds": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          },
                          "description": "Top-level domains to block outright, lowercase without a leading dot.",
                          "example": [
                            "zip"
                          ]
                        },
                        "failurePolicy": {
                          "type": "string",
                          "enum": [
                            "open",
                            "closed"
                          ],
                          "description": "Behavior when the classifier is unreachable: `closed` blocks (default), `open` allows.",
                          "example": "closed"
                        },
                        "allowRequestOverrides": {
                          "type": "boolean",
                          "description": "Whether individual requests may pass a `threatProtection` object. When false, such requests are rejected with 403.",
                          "example": true
                        },
                        "configured": {
                          "type": "boolean",
                          "description": "Whether the organization has saved a policy (vs. serving defaults).",
                          "example": true
                        },
                        "updatedAt": {
                          "type": "string",
                          "format": "date-time",
                          "nullable": true
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "403": {
            "description": "Threat protection is not enabled for this team, or a request override was sent while overrides are disabled."
          }
        }
      },
      "put": {
        "summary": "Update the team's threat protection policy",
        "description": "Full-document update. Unspecified fields reset to defaults. Enterprise feature, team admins only.",
        "operationId": "updateThreatProtection",
        "tags": [
          "Threat Protection"
        ],
        "security": [
          {
            "bearerAuth": []
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "mode"
                ],
                "properties": {
                  "mode": {
                    "type": "string",
                    "enum": [
                      "off",
                      "normal"
                    ],
                    "description": "Threat protection mode. `off` disables checks; `normal` checks URLs against Google Web Risk (+2 credits per URL scanned).",
                    "example": "normal"
                  },
                  "riskScoreThreshold": {
                    "type": "integer",
                    "minimum": 0,
                    "maximum": 100,
                    "description": "Normalized score (0-100) at or above which a classifier verdict is blocked. Lower is stricter.",
                    "example": 75
                  },
                  "blacklist": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    },
                    "description": "Exact domains or globs (e.g. `*.example.com`) always blocked, without a classifier call.",
                    "example": [
                      "*.risky.example"
                    ]
                  },
                  "whitelist": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    },
                    "description": "Exact domains or globs always allowed. Wins over every other rule.",
                    "example": [
                      "*.trusted.example"
                    ]
                  },
                  "blockedTlds": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    },
                    "description": "Top-level domains to block outright, lowercase without a leading dot.",
                    "example": [
                      "zip"
                    ]
                  },
                  "failurePolicy": {
                    "type": "string",
                    "enum": [
                      "open",
                      "closed"
                    ],
                    "description": "Behavior when the classifier is unreachable: `closed` blocks (default), `open` allows.",
                    "example": "closed"
                  },
                  "allowRequestOverrides": {
                    "type": "boolean",
                    "description": "Whether individual requests may pass a `threatProtection` object. When false, such requests are rejected with 403.",
                    "example": true
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Effective threat protection policy for the team's organization.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean",
                      "example": true
                    },
                    "data": {
                      "type": "object",
                      "properties": {
                        "mode": {
                          "type": "string",
                          "enum": [
                            "off",
                            "normal"
                          ],
                          "description": "Threat protection mode. `off` disables checks; `normal` checks URLs against Google Web Risk (+2 credits per URL scanned).",
                          "example": "normal"
                        },
                        "riskScoreThreshold": {
                          "type": "integer",
                          "minimum": 0,
                          "maximum": 100,
                          "description": "Normalized score (0-100) at or above which a classifier verdict is blocked. Lower is stricter.",
                          "example": 75
                        },
                        "blacklist": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          },
                          "description": "Exact domains or globs (e.g. `*.example.com`) always blocked, without a classifier call.",
                          "example": [
                            "*.risky.example"
                          ]
                        },
                        "whitelist": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          },
                          "description": "Exact domains or globs always allowed. Wins over every other rule.",
                          "example": [
                            "*.trusted.example"
                          ]
                        },
                        "blockedTlds": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          },
                          "description": "Top-level domains to block outright, lowercase without a leading dot.",
                          "example": [
                            "zip"
                          ]
                        },
                        "failurePolicy": {
                          "type": "string",
                          "enum": [
                            "open",
                            "closed"
                          ],
                          "description": "Behavior when the classifier is unreachable: `closed` blocks (default), `open` allows.",
                          "example": "closed"
                        },
                        "allowRequestOverrides": {
                          "type": "boolean",
                          "description": "Whether individual requests may pass a `threatProtection` object. When false, such requests are rejected with 403.",
                          "example": true
                        },
                        "configured": {
                          "type": "boolean",
                          "description": "Whether the organization has saved a policy (vs. serving defaults).",
                          "example": true
                        },
                        "updatedAt": {
                          "type": "string",
                          "format": "date-time",
                          "nullable": true
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Invalid policy document."
          },
          "403": {
            "description": "Threat protection is not enabled for this team, or a request override was sent while overrides are disabled."
          }
        }
      }
    }
  },
  "components": {
    "securitySchemes": {
      "bearerAuth": {
        "type": "http",
        "scheme": "bearer"
      }
    },
    "parameters": {
      "MonitorId": {
        "name": "monitorId",
        "in": "path",
        "required": true,
        "schema": {
          "type": "string",
          "format": "uuid"
        },
        "description": "The monitor ID"
      }
    },
    "schemas": {
      "AuditMetadata": {
        "type": "object",
        "description": "User attribution included with SIEM logging events when SIEM Logging is enabled for the organization.",
        "additionalProperties": false,
        "required": [
          "username"
        ],
        "properties": {
          "username": {
            "type": "string",
            "maxLength": 1024,
            "description": "The username associated with the request."
          }
        }
      },
      "SuccessResponse": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean",
            "example": true
          }
        }
      },
      "MonitorSchedule": {
        "type": "object",
        "description": "Schedule for monitor checks. Provide either `cron` or `text`.",
        "properties": {
          "cron": {
            "type": "string",
            "description": "Five-field cron expression. Minimum interval is 5 minutes.",
            "example": "*/30 * * * *"
          },
          "text": {
            "type": "string",
            "description": "Natural language schedule. Supported examples include `every 30 minutes`, `every 15 minutes starting at :07`, `hourly`, `every 2 hours`, `daily`, `daily at 9:00`, `daily at 9am`, `daily at 5:30 PM`, and `weekly`.",
            "example": "every 30 minutes"
          },
          "timezone": {
            "type": "string",
            "default": "UTC",
            "description": "IANA timezone for the schedule.",
            "example": "UTC"
          }
        }
      },
      "MonitorWebhook": {
        "type": "object",
        "description": "Webhook destination for monitor page and check completion events.",
        "properties": {
          "url": {
            "type": "string",
            "format": "uri",
            "description": "The URL to send monitor webhooks to."
          },
          "headers": {
            "type": "object",
            "description": "Headers to send to the webhook URL.",
            "additionalProperties": {
              "type": "string"
            }
          },
          "metadata": {
            "type": "object",
            "description": "Custom metadata included in webhook payloads.",
            "additionalProperties": true
          },
          "events": {
            "type": "array",
            "description": "Monitor webhook events to receive. Defaults to all monitor events.",
            "items": {
              "type": "string",
              "enum": [
                "monitor.page",
                "monitor.check.completed"
              ]
            }
          }
        },
        "required": [
          "url"
        ]
      },
      "MonitorNotification": {
        "type": "object",
        "properties": {
          "email": {
            "type": "object",
            "properties": {
              "enabled": {
                "type": "boolean",
                "default": false
              },
              "recipients": {
                "type": "array",
                "maxItems": 25,
                "items": {
                  "type": "string",
                  "format": "email"
                }
              },
              "includeDiffs": {
                "type": "boolean",
                "default": false,
                "description": "Include changed page details in email summaries."
              }
            }
          }
        }
      },
      "MonitorTarget": {
        "oneOf": [
          {
            "type": "object",
            "title": "Scrape target",
            "properties": {
              "id": {
                "type": "string",
                "format": "uuid",
                "description": "Optional stable ID for this target. Generated if omitted."
              },
              "type": {
                "type": "string",
                "enum": [
                  "scrape"
                ]
              },
              "urls": {
                "type": "array",
                "minItems": 1,
                "items": {
                  "type": "string",
                  "format": "uri"
                }
              },
              "scrapeOptions": {
                "$ref": "#/components/schemas/ScrapeOptions"
              }
            },
            "required": [
              "type",
              "urls"
            ]
          },
          {
            "type": "object",
            "title": "Crawl target",
            "properties": {
              "id": {
                "type": "string",
                "format": "uuid",
                "description": "Optional stable ID for this target. Generated if omitted."
              },
              "type": {
                "type": "string",
                "enum": [
                  "crawl"
                ]
              },
              "url": {
                "type": "string",
                "format": "uri"
              },
              "crawlOptions": {
                "type": "object",
                "description": "Crawl options such as `limit`, `maxDepth`, `includePaths`, and `excludePaths`."
              },
              "scrapeOptions": {
                "$ref": "#/components/schemas/ScrapeOptions"
              }
            },
            "required": [
              "type",
              "url"
            ]
          },
          {
            "type": "object",
            "title": "Search target",
            "description": "Runs web search queries on each check and alerts on new results that match the monitor's goal. Requires a non-empty top-level `goal` on the monitor unless `judgeEnabled` is `false`.",
            "properties": {
              "id": {
                "type": "string",
                "format": "uuid",
                "description": "Optional stable ID for this target. Generated if omitted."
              },
              "type": {
                "type": "string",
                "enum": [
                  "search"
                ]
              },
              "queries": {
                "type": "array",
                "minItems": 1,
                "maxItems": 12,
                "items": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 256
                },
                "description": "Search queries to run on each check (1-12)."
              },
              "searchWindow": {
                "type": "string",
                "enum": [
                  "5m",
                  "15m",
                  "1h",
                  "6h",
                  "24h",
                  "7d"
                ],
                "default": "24h",
                "description": "Recency filter — only consider results published within this window."
              },
              "maxResults": {
                "type": "integer",
                "minimum": 1,
                "maximum": 50,
                "default": 10,
                "description": "Total results to evaluate per check, merged and deduped across all queries (a combined cap, not per-query)."
              },
              "includeDomains": {
                "type": "array",
                "maxItems": 50,
                "items": {
                  "type": "string"
                },
                "description": "Optional. Restrict results to these domains."
              },
              "excludeDomains": {
                "type": "array",
                "maxItems": 50,
                "items": {
                  "type": "string"
                },
                "description": "Optional. Drop results from these domains."
              }
            },
            "required": [
              "type",
              "queries"
            ]
          }
        ]
      },
      "MonitorCreateRequest": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 256
          },
          "schedule": {
            "$ref": "#/components/schemas/MonitorSchedule"
          },
          "webhook": {
            "$ref": "#/components/schemas/MonitorWebhook"
          },
          "notification": {
            "$ref": "#/components/schemas/MonitorNotification"
          },
          "targets": {
            "type": "array",
            "minItems": 1,
            "maxItems": 50,
            "items": {
              "$ref": "#/components/schemas/MonitorTarget"
            }
          },
          "retentionDays": {
            "type": "integer",
            "minimum": 1,
            "maximum": 365,
            "default": 30
          },
          "goal": {
            "type": "string",
            "maxLength": 2000,
            "nullable": true,
            "description": "Plain-language goal used to judge whether changed pages are meaningful. If provided and `judgeEnabled` is omitted, judging is enabled automatically. Required (non-empty) when any target is a `search` target, unless `judgeEnabled` is `false`."
          },
          "judgeEnabled": {
            "type": "boolean",
            "description": "Whether to judge changed pages against `goal`. Requires a non-empty `goal` to run."
          }
        },
        "required": [
          "name",
          "schedule",
          "targets"
        ]
      },
      "MonitorUpdateRequest": {
        "type": "object",
        "description": "Partial monitor update payload. Include at least one field.",
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 256
          },
          "schedule": {
            "$ref": "#/components/schemas/MonitorSchedule"
          },
          "webhook": {
            "$ref": "#/components/schemas/MonitorWebhook"
          },
          "notification": {
            "$ref": "#/components/schemas/MonitorNotification"
          },
          "targets": {
            "type": "array",
            "minItems": 1,
            "maxItems": 50,
            "items": {
              "$ref": "#/components/schemas/MonitorTarget"
            }
          },
          "retentionDays": {
            "type": "integer",
            "minimum": 1,
            "maximum": 365
          },
          "goal": {
            "type": "string",
            "maxLength": 2000,
            "nullable": true,
            "description": "Plain-language goal used to judge whether changed pages are meaningful. If provided and `judgeEnabled` is omitted, judging is enabled automatically. Required (non-empty) when any target is a `search` target, unless `judgeEnabled` is `false`."
          },
          "judgeEnabled": {
            "type": "boolean",
            "description": "Whether to judge changed pages against `goal`. Requires a non-empty `goal` to run."
          },
          "status": {
            "type": "string",
            "enum": [
              "active",
              "paused"
            ]
          }
        }
      },
      "MonitorSummary": {
        "type": "object",
        "properties": {
          "totalPages": {
            "type": "integer"
          },
          "same": {
            "type": "integer"
          },
          "changed": {
            "type": "integer"
          },
          "new": {
            "type": "integer"
          },
          "removed": {
            "type": "integer"
          },
          "error": {
            "type": "integer"
          }
        }
      },
      "Monitor": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "format": "uuid"
          },
          "name": {
            "type": "string"
          },
          "status": {
            "type": "string",
            "enum": [
              "active",
              "paused",
              "deleted"
            ]
          },
          "schedule": {
            "type": "object",
            "properties": {
              "cron": {
                "type": "string"
              },
              "timezone": {
                "type": "string"
              }
            }
          },
          "nextRunAt": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "lastRunAt": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "currentCheckId": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "targets": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/MonitorTarget"
            }
          },
          "webhook": {
            "$ref": "#/components/schemas/MonitorWebhook"
          },
          "notification": {
            "$ref": "#/components/schemas/MonitorNotification"
          },
          "retentionDays": {
            "type": "integer"
          },
          "estimatedCreditsPerMonth": {
            "type": "integer",
            "nullable": true,
            "description": "Upper-bound monthly credit estimate. When judging is enabled, actual usage may be lower because judge credits are only charged for changed pages that are judged."
          },
          "lastCheckSummary": {
            "$ref": "#/components/schemas/MonitorSummary"
          },
          "goal": {
            "type": "string",
            "nullable": true
          },
          "judgeEnabled": {
            "type": "boolean"
          },
          "createdAt": {
            "type": "string",
            "format": "date-time"
          },
          "updatedAt": {
            "type": "string",
            "format": "date-time"
          }
        }
      },
      "MonitorCheck": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "format": "uuid"
          },
          "monitorId": {
            "type": "string",
            "format": "uuid"
          },
          "status": {
            "type": "string",
            "enum": [
              "queued",
              "running",
              "completed",
              "failed",
              "partial",
              "skipped_overlap"
            ]
          },
          "trigger": {
            "type": "string",
            "enum": [
              "scheduled",
              "manual"
            ]
          },
          "scheduledFor": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "startedAt": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "finishedAt": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "estimatedCredits": {
            "type": "integer",
            "nullable": true,
            "description": "Upper-bound credits reserved for this check before Firecrawl knows how many pages changed and require judging."
          },
          "reservedCredits": {
            "type": "integer",
            "nullable": true
          },
          "actualCredits": {
            "type": "integer",
            "nullable": true,
            "description": "Final credits charged for this check after scrapes, crawls, and any changed-page judge calls complete."
          },
          "billingStatus": {
            "type": "string"
          },
          "summary": {
            "$ref": "#/components/schemas/MonitorSummary"
          },
          "targetResults": {
            "type": "array",
            "nullable": true
          },
          "notificationStatus": {
            "type": "object",
            "nullable": true
          },
          "error": {
            "type": "string",
            "nullable": true
          },
          "createdAt": {
            "type": "string",
            "format": "date-time"
          },
          "updatedAt": {
            "type": "string",
            "format": "date-time"
          }
        }
      },
      "MonitorCheckPage": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "format": "uuid"
          },
          "targetId": {
            "type": "string"
          },
          "url": {
            "type": "string",
            "format": "uri"
          },
          "status": {
            "type": "string",
            "enum": [
              "same",
              "new",
              "changed",
              "removed",
              "error"
            ]
          },
          "previousScrapeId": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "currentScrapeId": {
            "type": "string",
            "format": "uuid",
            "nullable": true
          },
          "statusCode": {
            "type": "integer",
            "nullable": true
          },
          "error": {
            "type": "string",
            "nullable": true
          },
          "metadata": {
            "type": "object",
            "nullable": true,
            "description": "Extra per-page metadata. For search monitors this includes `searchStatus`, the finer-grained search disposition behind the top-level `status`: `alert` (maps to `new`), `already_seen`, `watching`, `ignored` (all map to `same`), or `skipped` (maps to `error`)."
          },
          "judgment": {
            "$ref": "#/components/schemas/MonitorPageJudgment"
          },
          "diff": {
            "type": "object",
            "nullable": true,
            "description": "Inline diff artifact when the page changed. The shape depends on what the monitor's scrapeOptions.formats asked for. Markdown-only monitors populate both `text` (unified diff) and `json` (parseDiff AST). JSON-extraction monitors populate `json` as a per-field `{previous, current}` map keyed by JSON path. Mixed-mode monitors (`changeTracking` with both `json` and `git-diff` modes) populate both `text` (markdown sidecar) and `json` (per-field diff).",
            "properties": {
              "text": {
                "type": "string",
                "description": "Unified markdown diff. Present on markdown-only and mixed-mode monitors."
              },
              "json": {
                "type": "object",
                "description": "For markdown-only monitors, a parseDiff AST `{ files: [...] }`. For JSON-extraction (and mixed-mode) monitors, a per-field `{ previous, current }` map keyed by the JSON path into the extraction (e.g. `plans[0].price`)."
              }
            }
          },
          "snapshot": {
            "type": "object",
            "nullable": true,
            "description": "Snapshot of the current JSON extraction at this run. Present on JSON-extraction and mixed-mode monitors; absent for markdown-only monitors.",
            "properties": {
              "json": {
                "type": "object",
                "description": "The full structured JSON extracted on this run, matching the schema/prompt declared on the target's `changeTracking` format."
              }
            }
          },
          "createdAt": {
            "type": "string",
            "format": "date-time"
          }
        }
      },
      "MonitorPageJudgment": {
        "type": "object",
        "nullable": true,
        "properties": {
          "meaningful": {
            "type": "boolean",
            "description": "Whether the changed page is meaningful for the monitor goal."
          },
          "confidence": {
            "type": "string",
            "enum": [
              "high",
              "medium",
              "low"
            ]
          },
          "reason": {
            "type": "string"
          },
          "meaningfulChanges": {
            "type": "array",
            "description": "Goal-relevant changes selected by the judge from the page diff.",
            "items": {
              "type": "object",
              "properties": {
                "type": {
                  "type": "string",
                  "enum": [
                    "added",
                    "removed",
                    "changed"
                  ]
                },
                "before": {
                  "type": "string",
                  "nullable": true
                },
                "after": {
                  "type": "string",
                  "nullable": true
                },
                "reason": {
                  "type": "string"
                }
              }
            }
          }
        }
      },
      "MonitorResponse": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "data": {
            "$ref": "#/components/schemas/Monitor"
          }
        }
      },
      "MonitorListResponse": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Monitor"
            }
          }
        }
      },
      "MonitorRunResponse": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "id": {
            "type": "string",
            "format": "uuid"
          },
          "data": {
            "$ref": "#/components/schemas/MonitorCheck"
          }
        }
      },
      "MonitorCheckListResponse": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/MonitorCheck"
            }
          }
        }
      },
      "MonitorCheckDetailResponse": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "next": {
            "type": "string",
            "nullable": true,
            "description": "URL to fetch the next page of monitor check page results, if any."
          },
          "data": {
            "allOf": [
              {
                "$ref": "#/components/schemas/MonitorCheck"
              },
              {
                "type": "object",
                "properties": {
                  "pages": {
                    "type": "array",
                    "items": {
                      "$ref": "#/components/schemas/MonitorCheckPage"
                    }
                  },
                  "next": {
                    "type": "string",
                    "nullable": true,
                    "description": "URL to fetch the next page of monitor check page results, if any."
                  }
                }
              }
            ]
          }
        }
      },
      "Formats": {
        "type": "array",
        "items": {
          "oneOf": [
            {
              "type": "object",
              "title": "Markdown",
              "properties": {
                "type": {
                  "type": "string",
                  "enum": [
                    "markdown"
                  ]
                }
              },
              "required": [
                "type"
              ]
            },
            {
              "type": "object",
              "title": "Summary",
              "properties": {
                "type": {
                  "type": "string",
                  "enum": [
                    "summary"
                  ]
                }
              },
              "required": [
                "type"
              ]
            },
            {
              "type": "object",
              "title": "HTML",
              "properties": {
                "type": {
                  "type": "string",
                  "enum": [
                    "html"
                  ]
                }
              },
              "required": [
                "type"
              ]
            },
            {
              "type": "object",
              "title": "Raw HTML",
              "properties": {
                "type": {
                  "type": "string",
                  "enum": [
                    "rawHtml"
                  ]
                }
              },
              "required": [
                "type"
              ]
            },
            {
              "type": "object",
              "title": "Links",
              "properties": {
                "type": {
                  "type": "string",
                  "enum": [
                    "links"
                  ]
                }
              },
              "required": [
                "type"
              ]
            },
            {
              "type": "object",
              "title": "Images",
              "properties": {
                "type": {
                  "type": "string",
                  "enum": [
                    "images"
                  ]
                }
              },
              "required": [
                "type"
              ]
            },
            {
              "type": "object",
              "title": "Screenshot",
              "properties": {
                "type": {
                  "type": "string",
                  "enum": [
                    "screenshot"
                  ]
                },
                "fullPage": {
                  "type": "boolean",
                  "description": "Whether to capture a full-page screenshot (ignores viewport.height) or limit to the current viewport.",
                  "default": false
                },
                "quality": {
                  "type": "integer",
                  "description": "The quality of the screenshot, from 1 to 100. 100 is the highest quality."
                },
                "viewport": {
                  "type": "object",
                  "properties": {
                    "width": {
                      "type": "integer",
                      "description": "The width of the viewport in pixels"
                    },
                    "height": {
                      "type": "integer",
                      "description": "The height of the viewport in pixels"
                    }
                  },
                  "required": [
                    "width",
                    "height"
                  ]
                }
              },
              "required": [
                "type"
              ]
            },
            {
              "type": "object",
              "title": "JSON",
              "properties": {
                "type": {
                  "type": "string",
                  "enum": [
                    "json"
                  ]
                },
                "schema": {
                  "type": "object",
                  "description": "The schema to use for the JSON output. Must conform to [JSON Schema](https://json-schema.org/)."
                },
                "prompt": {
                  "type": "string",
                  "description": "The prompt to use for the JSON output"
                }
              },
              "required": [
                "type"
              ]
            },
            {
              "type": "object",
              "title": "Change Tracking",
              "properties": {
                "type": {
                  "type": "string",
                  "enum": [
                    "changeTracking"
                  ]
                },
                "modes": {
                  "type": "array",
                  "items": {
                    "type": "string",
                    "enum": [
                      "git-diff",
                      "json"
                    ]
                  },
                  "description": "The mode to use for change tracking. 'git-diff' provides a detailed diff, and 'json' compares extracted JSON data."
                },
                "schema": {
                  "type": "object",
                  "description": "Schema for JSON extraction when using 'json' mode. Defines the structure of data to extract and compare. Must conform to [JSON Schema](https://json-schema.org/)."
                },
                "prompt": {
                  "type": "string",
                  "description": "Prompt to use for change tracking when using 'json' mode. If not provided, the default prompt will be used."
                },
                "tag": {
                  "type": "string",
                  "nullable": true,
                  "default": null,
                  "description": "Tag to use for change tracking. Tags can separate change tracking history into separate \"branches\", where change tracking with a specific tagwill only compare to scrapes made in the same tag. If not provided, the default tag (null) will be used."
                }
              },
              "required": [
                "type"
              ]
            },
            {
              "type": "object",
              "title": "Branding",
              "properties": {
                "type": {
                  "type": "string",
                  "enum": [
                    "branding"
                  ]
                }
              },
              "required": [
                "type"
              ]
            },
            {
              "type": "object",
              "title": "Product",
              "properties": {
                "type": {
                  "type": "string",
                  "enum": [
                    "product"
                  ]
                }
              },
              "required": [
                "type"
              ]
            },
            {
              "type": "object",
              "title": "Menu",
              "properties": {
                "type": {
                  "type": "string",
                  "enum": [
                    "menu"
                  ]
                }
              },
              "required": [
                "type"
              ]
            },
            {
              "type": "object",
              "title": "Audio",
              "description": "Extract audio (MP3) from supported video URLs, e.g. YouTube. Returns a signed GCS URL.",
              "properties": {
                "type": {
                  "type": "string",
                  "enum": [
                    "audio"
                  ]
                }
              },
              "required": [
                "type"
              ]
            },
            {
              "type": "object",
              "title": "Video",
              "description": "Extract best-quality video from supported video URLs, e.g. YouTube. Returns a signed GCS URL.",
              "properties": {
                "type": {
                  "type": "string",
                  "enum": [
                    "video"
                  ]
                }
              },
              "required": [
                "type"
              ]
            },
            {
              "type": "object",
              "title": "Question",
              "description": "Ask a natural-language question about the page. Returns the answer in the response `answer` field.",
              "properties": {
                "type": {
                  "type": "string",
                  "enum": [
                    "question"
                  ]
                },
                "question": {
                  "type": "string",
                  "maxLength": 10000,
                  "description": "The question to answer about the page. Maximum 10,000 characters."
                }
              },
              "required": [
                "type",
                "question"
              ]
            },
            {
              "type": "object",
              "title": "Highlights",
              "description": "Find relevant source text from the page. Returns the selected text in the response `highlights` field.",
              "properties": {
                "type": {
                  "type": "string",
                  "enum": [
                    "highlights"
                  ]
                },
                "query": {
                  "type": "string",
                  "maxLength": 10000,
                  "description": "The text-selection query to run against the page. Maximum 10,000 characters."
                }
              },
              "required": [
                "type",
                "query"
              ]
            }
          ]
        },
        "description": "Output formats to include in the response. You can specify one or more formats, either as strings (e.g., `'markdown'`) or as objects with additional options (e.g., `{ type: 'json', schema: {...} }`). Some formats require specific options to be set. Example: `['markdown', { type: 'json', schema: {...} }]`.",
        "default": [
          "markdown"
        ]
      },
      "ParseFormats": {
        "type": "array",
        "items": {
          "oneOf": [
            {
              "type": "object",
              "title": "Markdown",
              "properties": {
                "type": {
                  "type": "string",
                  "enum": [
                    "markdown"
                  ]
                }
              },
              "required": [
                "type"
              ]
            },
            {
              "type": "object",
              "title": "Summary",
              "properties": {
                "type": {
                  "type": "string",
                  "enum": [
                    "summary"
                  ]
                }
              },
              "required": [
                "type"
              ]
            },
            {
              "type": "object",
              "title": "HTML",
              "properties": {
                "type": {
                  "type": "string",
                  "enum": [
                    "html"
                  ]
                }
              },
              "required": [
                "type"
              ]
            },
            {
              "type": "object",
              "title": "Raw HTML",
              "properties": {
                "type": {
                  "type": "string",
                  "enum": [
                    "rawHtml"
                  ]
                }
              },
              "required": [
                "type"
              ]
            },
            {
              "type": "object",
              "title": "Links",
              "properties": {
                "type": {
                  "type": "string",
                  "enum": [
                    "links"
                  ]
                }
              },
              "required": [
                "type"
              ]
            },
            {
              "type": "object",
              "title": "Images",
              "properties": {
                "type": {
                  "type": "string",
                  "enum": [
                    "images"
                  ]
                }
              },
              "required": [
                "type"
              ]
            },
            {
              "type": "object",
              "title": "JSON",
              "properties": {
                "type": {
                  "type": "string",
                  "enum": [
                    "json"
                  ]
                },
                "schema": {
                  "type": "object",
                  "description": "The schema to use for the JSON output. Must conform to [JSON Schema](https://json-schema.org/)."
                },
                "prompt": {
                  "type": "string",
                  "description": "The prompt to use for the JSON output"
                }
              },
              "required": [
                "type"
              ]
            }
          ]
        },
        "description": "Output formats supported for `/parse` uploads. Browser-rendering formats and change tracking are not supported.",
        "default": [
          "markdown"
        ]
      },
      "ParseOptions": {
        "type": "object",
        "description": "Optional parse options sent as JSON in the multipart `options` field.",
        "properties": {
          "formats": {
            "$ref": "#/components/schemas/ParseFormats"
          },
          "onlyMainContent": {
            "type": "boolean",
            "description": "Only return the main content of the page excluding headers, navs, footers, etc.",
            "default": true
          },
          "includeTags": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Tags to include in the output."
          },
          "excludeTags": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Tags to exclude from the output."
          },
          "headers": {
            "type": "object",
            "description": "Headers to send when additional network requests are required."
          },
          "timeout": {
            "type": "integer",
            "description": "Timeout in milliseconds for the request. Default is 30000 (30 seconds). Maximum is 300000 (300 seconds).",
            "default": 30000,
            "maximum": 300000
          },
          "parsers": {
            "type": "array",
            "description": "Controls file parser behavior when relevant (for example PDF parser mode).",
            "items": {
              "oneOf": [
                {
                  "type": "object",
                  "properties": {
                    "type": {
                      "type": "string",
                      "enum": [
                        "pdf"
                      ]
                    },
                    "mode": {
                      "type": "string",
                      "enum": [
                        "fast",
                        "auto",
                        "ocr"
                      ],
                      "default": "auto",
                      "description": "PDF parsing mode. \"fast\": text-only extraction. \"auto\": text-first with OCR fallback. \"ocr\": OCR on every page."
                    },
                    "maxPages": {
                      "type": "integer",
                      "minimum": 1,
                      "maximum": 10000,
                      "description": "Maximum number of pages to parse from the PDF."
                    }
                  },
                  "required": [
                    "type"
                  ],
                  "additionalProperties": false
                }
              ]
            },
            "default": [
              "pdf"
            ]
          },
          "skipTlsVerification": {
            "type": "boolean",
            "description": "Skip TLS certificate verification when making requests.",
            "default": true
          },
          "removeBase64Images": {
            "type": "boolean",
            "description": "Remove base64-encoded images from output and keep alt text placeholders.",
            "default": true
          },
          "blockAds": {
            "type": "boolean",
            "description": "Enable ad and cookie popup blocking.",
            "default": true
          },
          "redactPII": {
            "oneOf": [
              {
                "type": "boolean"
              },
              {
                "$ref": "#/components/schemas/RedactPIIOptions"
              }
            ],
            "default": false,
            "description": "Redact personally identifiable information from returned markdown. Pass `true` to use defaults, or an object to tune mode, entities, and replacement style."
          },
          "proxy": {
            "type": "string",
            "enum": [
              "basic",
              "auto"
            ],
            "description": "Proxy mode for parse uploads. `/parse` supports only `basic` and `auto`."
          },
          "origin": {
            "type": "string",
            "description": "Origin identifier for analytics and logging.",
            "default": "api"
          },
          "integration": {
            "type": "string",
            "nullable": true,
            "description": "Optional integration identifier."
          },
          "auditMetadata": {
            "$ref": "#/components/schemas/AuditMetadata"
          },
          "zeroDataRetention": {
            "type": "boolean",
            "default": false,
            "description": "If true, this will enable zero data retention for this parse. To enable this feature, please contact help@firecrawl.dev"
          }
        }
      },
      "ScrapeOptions": {
        "type": "object",
        "properties": {
          "formats": {
            "$ref": "#/components/schemas/Formats"
          },
          "onlyMainContent": {
            "type": "boolean",
            "description": "Only return the main content of the page excluding headers, navs, footers, etc. This is a deterministic HTML-level filter applied before markdown is generated; no LLM is involved.",
            "default": true
          },
          "onlyCleanContent": {
            "type": "boolean",
            "description": "Beta. Run an additional LLM-based pass over the generated markdown to remove residual boilerplate that `onlyMainContent` can miss (cookie banners, ad blocks, social share widgets, breadcrumbs, newsletter signups, comment sections, related-article lists). Headings, lists, tables, code blocks, image references, and inline links are preserved. Can be combined with `onlyMainContent` (the most common setup) or used on its own. Skipped with a warning when the markdown exceeds the cleaning model's output token limit (the original markdown is preserved). Not supported on zero-data-retention requests.",
            "default": false
          },
          "includeTags": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Tags to include in the output."
          },
          "excludeTags": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Tags to exclude from the output."
          },
          "maxAge": {
            "type": "integer",
            "description": "Returns a cached version of the page if it is younger than this age in milliseconds. If a cached version of the page is older than this value, the page will be scraped. If you do not need extremely fresh data, enabling this can speed up your scrapes by 500%. Defaults to 2 days.",
            "default": 172800000
          },
          "minAge": {
            "type": "integer",
            "description": "When set, the request only checks the cache and never triggers a fresh scrape. The value is in milliseconds and specifies the minimum age the cached data must be. If matching cached data exists, it is returned instantly. If no cached data is found, a 404 with error code SCRAPE_NO_CACHED_DATA is returned. Set to 1 to accept any cached data regardless of age."
          },
          "headers": {
            "type": "object",
            "description": "Headers to send with the request. Can be used to send cookies, user-agent, etc."
          },
          "waitFor": {
            "type": "integer",
            "description": "Specify a delay in milliseconds before fetching the content, allowing the page sufficient time to load. This waiting time is in addition to Firecrawl's smart wait feature.",
            "default": 0
          },
          "mobile": {
            "type": "boolean",
            "description": "Set to true if you want to emulate scraping from a mobile device. Useful for testing responsive pages and taking mobile screenshots.",
            "default": false
          },
          "skipTlsVerification": {
            "type": "boolean",
            "description": "Skip TLS certificate verification when making requests.",
            "default": true
          },
          "timeout": {
            "type": "integer",
            "description": "Timeout in milliseconds for the request. Minimum is 1000 (1 second). Default is 60000 (60 seconds). Maximum is 300000 (300 seconds).",
            "default": 60000,
            "minimum": 1000,
            "maximum": 300000
          },
          "parsers": {
            "type": "array",
            "description": "Controls how files are processed during scraping. When \"pdf\" is included (default), the PDF content is extracted and converted to markdown format, with billing based on the number of pages (1 credit per page). When an empty array is passed, the PDF file is returned in base64 encoding with a flat rate of 1 credit for the entire PDF.",
            "items": {
              "oneOf": [
                {
                  "type": "object",
                  "properties": {
                    "type": {
                      "type": "string",
                      "enum": [
                        "pdf"
                      ]
                    },
                    "mode": {
                      "type": "string",
                      "enum": [
                        "fast",
                        "auto",
                        "ocr"
                      ],
                      "default": "auto",
                      "description": "PDF parsing mode. \"fast\": text-based extraction only (embedded text, fastest). \"auto\" (default): attempts fast extraction first, falls back to OCR if needed. \"ocr\": forces OCR parsing on every page."
                    },
                    "maxPages": {
                      "type": "integer",
                      "minimum": 1,
                      "maximum": 10000,
                      "description": "Maximum number of pages to parse from the PDF. Must be a positive integer up to 10000."
                    }
                  },
                  "required": [
                    "type"
                  ],
                  "additionalProperties": false
                }
              ]
            },
            "default": [
              "pdf"
            ]
          },
          "actions": {
            "type": "array",
            "description": "Actions to perform on the page before grabbing the content",
            "items": {
              "oneOf": [
                {
                  "title": "Wait",
                  "oneOf": [
                    {
                      "type": "object",
                      "title": "Wait by Duration",
                      "properties": {
                        "type": {
                          "type": "string",
                          "enum": [
                            "wait"
                          ],
                          "description": "Wait for a specified amount of milliseconds"
                        },
                        "milliseconds": {
                          "type": "integer",
                          "minimum": 1,
                          "description": "Number of milliseconds to wait"
                        }
                      },
                      "required": [
                        "type",
                        "milliseconds"
                      ],
                      "additionalProperties": false
                    },
                    {
                      "type": "object",
                      "title": "Wait for Element",
                      "properties": {
                        "type": {
                          "type": "string",
                          "enum": [
                            "wait"
                          ],
                          "description": "Wait for a specific element to appear"
                        },
                        "selector": {
                          "type": "string",
                          "description": "CSS selector to wait for",
                          "example": "#my-element"
                        }
                      },
                      "required": [
                        "type",
                        "selector"
                      ],
                      "additionalProperties": false
                    }
                  ]
                },
                {
                  "type": "object",
                  "title": "Screenshot",
                  "properties": {
                    "type": {
                      "type": "string",
                      "enum": [
                        "screenshot"
                      ],
                      "description": "Take a screenshot. The links will be in the response's `actions.screenshots` array."
                    },
                    "fullPage": {
                      "type": "boolean",
                      "description": "Whether to capture a full-page screenshot (ignores viewport.height) or limit to the current viewport.",
                      "default": false
                    },
                    "quality": {
                      "type": "integer",
                      "description": "The quality of the screenshot, from 1 to 100. 100 is the highest quality."
                    },
                    "viewport": {
                      "type": "object",
                      "properties": {
                        "width": {
                          "type": "integer",
                          "description": "The width of the viewport in pixels"
                        },
                        "height": {
                          "type": "integer",
                          "description": "The height of the viewport in pixels"
                        }
                      },
                      "required": [
                        "width",
                        "height"
                      ]
                    }
                  },
                  "required": [
                    "type"
                  ]
                },
                {
                  "type": "object",
                  "title": "Click",
                  "properties": {
                    "type": {
                      "type": "string",
                      "enum": [
                        "click"
                      ],
                      "description": "Click on an element"
                    },
                    "selector": {
                      "type": "string",
                      "description": "Query selector to find the element by",
                      "example": "#load-more-button"
                    },
                    "all": {
                      "type": "boolean",
                      "description": "Clicks all elements matched by the selector, not just the first one. Does not throw an error if no elements match the selector.",
                      "default": false
                    }
                  },
                  "required": [
                    "type",
                    "selector"
                  ]
                },
                {
                  "type": "object",
                  "title": "Write text",
                  "properties": {
                    "type": {
                      "type": "string",
                      "enum": [
                        "write"
                      ],
                      "description": "Write text into an input field, text area, or contenteditable element. Note: You must first focus the element using a 'click' action before writing. The text will be typed character by character to simulate keyboard input."
                    },
                    "text": {
                      "type": "string",
                      "description": "Text to type",
                      "example": "Hello, world!"
                    }
                  },
                  "required": [
                    "type",
                    "text"
                  ]
                },
                {
                  "type": "object",
                  "title": "Press a key",
                  "description": "Press a key on the page. See https://asawicki.info/nosense/doc/devices/keyboard/key_codes.html for key codes.",
                  "properties": {
                    "type": {
                      "type": "string",
                      "enum": [
                        "press"
                      ],
                      "description": "Press a key on the page"
                    },
                    "key": {
                      "type": "string",
                      "description": "Key to press",
                      "example": "Enter"
                    }
                  },
                  "required": [
                    "type",
                    "key"
                  ]
                },
                {
                  "type": "object",
                  "title": "Scroll",
                  "properties": {
                    "type": {
                      "type": "string",
                      "enum": [
                        "scroll"
                      ],
                      "description": "Scroll the page or a specific element"
                    },
                    "direction": {
                      "type": "string",
                      "enum": [
                        "up",
                        "down"
                      ],
                      "description": "Direction to scroll",
                      "default": "down"
                    },
                    "selector": {
                      "type": "string",
                      "description": "Query selector for the element to scroll",
                      "example": "#my-element"
                    }
                  },
                  "required": [
                    "type"
                  ]
                },
                {
                  "type": "object",
                  "title": "Scrape",
                  "properties": {
                    "type": {
                      "type": "string",
                      "enum": [
                        "scrape"
                      ],
                      "description": "Scrape the current page content, returns the url and the html."
                    }
                  },
                  "required": [
                    "type"
                  ]
                },
                {
                  "type": "object",
                  "title": "Execute JavaScript",
                  "properties": {
                    "type": {
                      "type": "string",
                      "enum": [
                        "executeJavascript"
                      ],
                      "description": "Execute JavaScript code on the page"
                    },
                    "script": {
                      "type": "string",
                      "description": "JavaScript code to execute",
                      "example": "document.querySelector('.button').click();"
                    }
                  },
                  "required": [
                    "type",
                    "script"
                  ]
                },
                {
                  "type": "object",
                  "title": "Generate PDF",
                  "properties": {
                    "type": {
                      "type": "string",
                      "enum": [
                        "pdf"
                      ],
                      "description": "Generate a PDF of the current page. The PDF will be returned in the `actions.pdfs` array of the response."
                    },
                    "format": {
                      "type": "string",
                      "enum": [
                        "A0",
                        "A1",
                        "A2",
                        "A3",
                        "A4",
                        "A5",
                        "A6",
                        "Letter",
                        "Legal",
                        "Tabloid",
                        "Ledger"
                      ],
                      "description": "The page size of the resulting PDF",
                      "default": "Letter"
                    },
                    "landscape": {
                      "type": "boolean",
                      "description": "Whether to generate the PDF in landscape orientation",
                      "default": false
                    },
                    "scale": {
                      "type": "number",
                      "description": "The scale multiplier of the resulting PDF",
                      "default": 1
                    }
                  },
                  "required": [
                    "type"
                  ]
                }
              ]
            }
          },
          "location": {
            "type": "object",
            "description": "Location settings for the request. When specified, this will use an appropriate proxy if available and emulate the corresponding language and timezone settings. Defaults to 'US' if not specified.",
            "properties": {
              "country": {
                "type": "string",
                "description": "ISO 3166-1 alpha-2 country code (e.g., 'US', 'AU', 'DE', 'JP')",
                "pattern": "^[A-Z]{2}$",
                "default": "US"
              },
              "languages": {
                "type": "array",
                "description": "Preferred languages and locales for the request in order of priority. Defaults to the language of the specified location. See https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Accept-Language",
                "items": {
                  "type": "string",
                  "example": "en-US"
                }
              }
            }
          },
          "removeBase64Images": {
            "type": "boolean",
            "description": "Removes all base 64 images from the markdown output, which may be overwhelmingly long. This does not affect html or rawHtml formats. The image's alt text remains in the output, but the URL is replaced with a placeholder.",
            "default": true
          },
          "blockAds": {
            "type": "boolean",
            "description": "Enables ad-blocking and cookie popup blocking.",
            "default": true
          },
          "proxy": {
            "type": "string",
            "enum": [
              "basic",
              "enhanced",
              "auto"
            ],
            "description": "Specifies the type of proxy to use.\n\n - **basic**: Proxies for scraping sites with none to basic anti-bot solutions. Fast and usually works.\n - **enhanced**: Enhanced proxies for scraping sites with advanced anti-bot solutions. Slower, but more reliable on certain sites. Costs up to 5 credits per request.\n - **auto**: Firecrawl will automatically retry scraping with enhanced proxies if the basic proxy fails. If the retry with enhanced is successful, 5 credits will be billed for the scrape. If the first attempt with basic is successful, only the regular cost will be billed.",
            "default": "auto"
          },
          "storeInCache": {
            "type": "boolean",
            "description": "If true, the page will be stored in the Firecrawl index and cache. Setting this to false is useful if your scraping activity may have data protection concerns. Using some parameters associated with sensitive scraping (e.g. actions, headers) will force this parameter to be false.",
            "default": true
          },
          "lockdown": {
            "type": "boolean",
            "description": "If true, serves the request from Firecrawl's cache only and never makes an outbound request to the target URL. Designed for compliance-constrained or air-gapped environments where the scrape request itself could leak sensitive information. On cache miss, returns a 404 with error code SCRAPE_LOCKDOWN_CACHE_MISS (the URL is never logged on miss). Lockdown requests are treated as zero data retention. Default maxAge is extended to 2 years so existing cached pages remain eligible. Billed at 5 credits on hit, 1 credit on cache miss.",
            "default": false
          },
          "redactPII": {
            "oneOf": [
              {
                "type": "boolean"
              },
              {
                "$ref": "#/components/schemas/RedactPIIOptions"
              }
            ],
            "default": false,
            "description": "Redact personally identifiable information from returned markdown. Pass `true` to use defaults, or an object to tune mode, entities, and replacement style."
          },
          "profile": {
            "type": "object",
            "description": "Enable persistent browser storage across scrape and interact sessions. Pass a profile when scraping to preserve cookies, localStorage, and session data. Sessions with the same profile name share browser state.",
            "properties": {
              "name": {
                "type": "string",
                "minLength": 1,
                "maxLength": 128,
                "description": "A name for the profile. Scrapes with the same name share browser state (cookies, localStorage, sessions)."
              },
              "saveChanges": {
                "type": "boolean",
                "default": true,
                "description": "When true, browser state is saved back to the profile when the interact session stops. Set to false to load existing data without writing. Only one saving session is allowed at a time."
              }
            },
            "required": [
              "name"
            ]
          },
          "threatProtection": {
            "$ref": "#/components/schemas/ThreatProtectionOverride"
          },
          "auditMetadata": {
            "$ref": "#/components/schemas/AuditMetadata"
          }
        }
      },
      "ScrapeResponse": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "data": {
            "type": "object",
            "properties": {
              "markdown": {
                "type": "string"
              },
              "summary": {
                "type": "string",
                "nullable": true,
                "description": "Summary of the page if `summary` is in `formats`"
              },
              "html": {
                "type": "string",
                "nullable": true,
                "description": "Cleaned HTML of the page if `html` is in `formats`. Removes `<script>`, `<style>`, `<noscript>`, `<meta>`, and `<head>` tags; converts relative URLs to absolute; resolves responsive image `srcset` to the largest version. Respects `onlyMainContent`, `includeTags`, and `excludeTags` filters."
              },
              "rawHtml": {
                "type": "string",
                "nullable": true,
                "description": "The exact, unmodified HTML as received from the page if `rawHtml` is in `formats`. No cleaning or filtering is applied."
              },
              "screenshot": {
                "type": "string",
                "nullable": true,
                "description": "Screenshot of the page if `screenshot` is in `formats`. Screenshots expire after 24 hours and can no longer be downloaded."
              },
              "audio": {
                "type": "string",
                "nullable": true,
                "description": "Signed URL to the extracted MP3 audio file if `audio` is in `formats`. The signed URL expires after 1 hour."
              },
              "video": {
                "type": "string",
                "nullable": true,
                "description": "Signed URL to the extracted video file if `video` is in `formats`. The signed URL expires after 1 hour."
              },
              "answer": {
                "type": "string",
                "nullable": true,
                "description": "Natural-language answer to the question supplied via the `question` format. Only present if a `question` format object was included in `formats`."
              },
              "highlights": {
                "type": "string",
                "nullable": true,
                "description": "Relevant source text selected by the `highlights` format. Only present if a `highlights` format object was included in `formats`."
              },
              "links": {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "description": "List of links on the page if `links` is in `formats`"
              },
              "actions": {
                "type": "object",
                "nullable": true,
                "description": "Results of the actions specified in the `actions` parameter. Only present if the `actions` parameter was provided in the request",
                "properties": {
                  "screenshots": {
                    "type": "array",
                    "description": "Screenshot URLs, in the same order as the screenshot actions provided.",
                    "items": {
                      "type": "string",
                      "format": "url"
                    }
                  },
                  "scrapes": {
                    "type": "array",
                    "description": "Scrape contents, in the same order as the scrape actions provided.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "url": {
                          "type": "string"
                        },
                        "html": {
                          "type": "string"
                        }
                      }
                    }
                  },
                  "javascriptReturns": {
                    "type": "array",
                    "description": "JavaScript return values, in the same order as the executeJavascript actions provided.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "type": {
                          "type": "string"
                        },
                        "value": {}
                      }
                    }
                  },
                  "pdfs": {
                    "type": "array",
                    "description": "PDFs generated, in the same order as the pdf actions provided.",
                    "items": {
                      "type": "string"
                    }
                  }
                }
              },
              "metadata": {
                "type": "object",
                "properties": {
                  "title": {
                    "oneOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      }
                    ],
                    "description": "Title extracted from the page, can be a string or array of strings"
                  },
                  "description": {
                    "oneOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      }
                    ],
                    "description": "Description extracted from the page, can be a string or array of strings"
                  },
                  "language": {
                    "oneOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      }
                    ],
                    "nullable": true,
                    "description": "Language extracted from the page, can be a string or array of strings"
                  },
                  "sourceURL": {
                    "type": "string",
                    "format": "uri",
                    "description": "The original URL that was requested. May differ from the page's final URL if redirects occurred."
                  },
                  "url": {
                    "type": "string",
                    "format": "uri",
                    "description": "The final URL of the page after all redirects have been followed."
                  },
                  "keywords": {
                    "oneOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      }
                    ],
                    "description": "Keywords extracted from the page, can be a string or array of strings"
                  },
                  "ogLocaleAlternate": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    },
                    "description": "Alternative locales for the page"
                  },
                  "<any other metadata> ": {
                    "oneOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      }
                    ],
                    "description": "Other metadata extracted from HTML, can be a string or array of strings"
                  },
                  "statusCode": {
                    "type": "integer",
                    "description": "The status code of the page"
                  },
                  "numPages": {
                    "type": "integer",
                    "description": "For PDF inputs, the number of pages parsed (capped by the parsers maxPages option)."
                  },
                  "totalPages": {
                    "type": "integer",
                    "description": "For PDF inputs, the document's true page count before any maxPages capping. Omitted when it cannot be determined; a totalPages greater than numPages indicates the result was truncated."
                  },
                  "contentType": {
                    "type": "string",
                    "description": "The content type (MIME type) of the page, e.g. text/html, application/pdf"
                  },
                  "error": {
                    "type": "string",
                    "nullable": true,
                    "description": "The error message of the page"
                  },
                  "concurrencyLimited": {
                    "type": "boolean",
                    "description": "Whether this scrape was throttled due to team concurrency limits"
                  },
                  "concurrencyQueueDurationMs": {
                    "type": "number",
                    "description": "Time in milliseconds the request waited in the concurrency queue. Only present when concurrencyLimited is true."
                  }
                }
              },
              "warning": {
                "type": "string",
                "nullable": true,
                "description": "Can be displayed when using LLM Extraction. Warning message will let you know any issues with the extraction."
              },
              "changeTracking": {
                "type": "object",
                "nullable": true,
                "description": "Change tracking information if `changeTracking` is in `formats`. Only present when the `changeTracking` format is requested.",
                "properties": {
                  "previousScrapeAt": {
                    "type": "string",
                    "format": "date-time",
                    "nullable": true,
                    "description": "The timestamp of the previous scrape that the current page is being compared against. Null if no previous scrape exists."
                  },
                  "changeStatus": {
                    "type": "string",
                    "enum": [
                      "new",
                      "same",
                      "changed",
                      "removed"
                    ],
                    "description": "The result of the comparison between the two page versions. 'new' means this page did not exist before, 'same' means content has not changed, 'changed' means content has changed, 'removed' means the page was removed."
                  },
                  "visibility": {
                    "type": "string",
                    "enum": [
                      "visible",
                      "hidden"
                    ],
                    "description": "The visibility of the current page/URL. 'visible' means the URL was discovered through an organic route (links or sitemap), 'hidden' means the URL was discovered through memory from previous crawls."
                  },
                  "diff": {
                    "type": "string",
                    "nullable": true,
                    "description": "Git-style diff of changes when using 'git-diff' mode. Only present when the mode is set to 'git-diff'."
                  },
                  "json": {
                    "type": "object",
                    "nullable": true,
                    "description": "JSON comparison results when using 'json' mode. Only present when the mode is set to 'json'. This will emit a list of all the keys and their values from the `previous` and `current` scrapes based on the type defined in the `schema`. Example [here](/features/change-tracking)"
                  }
                }
              },
              "branding": {
                "type": "object",
                "nullable": true,
                "description": "Branding information extracted from the page if `branding` is in `formats`. Includes colors, fonts, typography, spacing, components, and more.",
                "properties": {
                  "colorScheme": {
                    "type": "string",
                    "enum": [
                      "light",
                      "dark"
                    ],
                    "description": "The detected color scheme of the page."
                  },
                  "logo": {
                    "type": "string",
                    "nullable": true,
                    "description": "URL of the primary logo."
                  },
                  "colors": {
                    "type": "object",
                    "nullable": true,
                    "description": "Brand colors extracted from the page.",
                    "properties": {
                      "primary": {
                        "type": "string",
                        "description": "Primary brand color (hex)."
                      },
                      "secondary": {
                        "type": "string",
                        "description": "Secondary brand color (hex)."
                      },
                      "accent": {
                        "type": "string",
                        "description": "Accent color (hex)."
                      },
                      "background": {
                        "type": "string",
                        "description": "Background color (hex)."
                      },
                      "textPrimary": {
                        "type": "string",
                        "description": "Primary text color (hex)."
                      },
                      "textSecondary": {
                        "type": "string",
                        "description": "Secondary text color (hex)."
                      },
                      "link": {
                        "type": "string",
                        "description": "Link color (hex)."
                      },
                      "success": {
                        "type": "string",
                        "description": "Success/positive color (hex)."
                      },
                      "warning": {
                        "type": "string",
                        "description": "Warning color (hex)."
                      },
                      "error": {
                        "type": "string",
                        "description": "Error/danger color (hex)."
                      }
                    }
                  },
                  "fonts": {
                    "type": "array",
                    "nullable": true,
                    "description": "Array of font families used on the page.",
                    "items": {
                      "type": "object",
                      "properties": {
                        "family": {
                          "type": "string",
                          "description": "Font family name."
                        }
                      }
                    }
                  },
                  "typography": {
                    "type": "object",
                    "nullable": true,
                    "description": "Detailed typography information.",
                    "properties": {
                      "fontFamilies": {
                        "type": "object",
                        "description": "Font families by role.",
                        "properties": {
                          "primary": {
                            "type": "string",
                            "description": "Primary font family."
                          },
                          "heading": {
                            "type": "string",
                            "description": "Heading font family."
                          },
                          "code": {
                            "type": "string",
                            "description": "Code/monospace font family."
                          }
                        }
                      },
                      "fontSizes": {
                        "type": "object",
                        "description": "Font sizes for different text levels.",
                        "properties": {
                          "h1": {
                            "type": "string"
                          },
                          "h2": {
                            "type": "string"
                          },
                          "h3": {
                            "type": "string"
                          },
                          "body": {
                            "type": "string"
                          }
                        }
                      },
                      "fontWeights": {
                        "type": "object",
                        "description": "Font weight definitions.",
                        "properties": {
                          "light": {
                            "type": "integer"
                          },
                          "regular": {
                            "type": "integer"
                          },
                          "medium": {
                            "type": "integer"
                          },
                          "bold": {
                            "type": "integer"
                          }
                        }
                      },
                      "lineHeights": {
                        "type": "object",
                        "description": "Line height values for different text types.",
                        "properties": {
                          "heading": {
                            "type": "string"
                          },
                          "body": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  },
                  "spacing": {
                    "type": "object",
                    "nullable": true,
                    "description": "Spacing and layout information.",
                    "properties": {
                      "baseUnit": {
                        "type": "integer",
                        "description": "Base spacing unit in pixels."
                      },
                      "borderRadius": {
                        "type": "string",
                        "description": "Default border radius."
                      },
                      "padding": {
                        "type": "object",
                        "description": "Padding values."
                      },
                      "margins": {
                        "type": "object",
                        "description": "Margin values."
                      }
                    }
                  },
                  "components": {
                    "type": "object",
                    "nullable": true,
                    "description": "UI component styles.",
                    "properties": {
                      "buttonPrimary": {
                        "type": "object",
                        "description": "Primary button styles.",
                        "properties": {
                          "background": {
                            "type": "string"
                          },
                          "textColor": {
                            "type": "string"
                          },
                          "borderRadius": {
                            "type": "string"
                          }
                        }
                      },
                      "buttonSecondary": {
                        "type": "object",
                        "description": "Secondary button styles.",
                        "properties": {
                          "background": {
                            "type": "string"
                          },
                          "textColor": {
                            "type": "string"
                          },
                          "borderColor": {
                            "type": "string"
                          },
                          "borderRadius": {
                            "type": "string"
                          }
                        }
                      },
                      "input": {
                        "type": "object",
                        "description": "Input field styles."
                      }
                    }
                  },
                  "icons": {
                    "type": "object",
                    "nullable": true,
                    "description": "Icon style information."
                  },
                  "images": {
                    "type": "object",
                    "nullable": true,
                    "description": "Brand images.",
                    "properties": {
                      "logo": {
                        "type": "string",
                        "description": "Logo image URL."
                      },
                      "favicon": {
                        "type": "string",
                        "description": "Favicon URL."
                      },
                      "ogImage": {
                        "type": "string",
                        "description": "Open Graph image URL."
                      }
                    }
                  },
                  "animations": {
                    "type": "object",
                    "nullable": true,
                    "description": "Animation and transition settings."
                  },
                  "layout": {
                    "type": "object",
                    "nullable": true,
                    "description": "Layout configuration (grid, header/footer heights)."
                  },
                  "personality": {
                    "type": "object",
                    "nullable": true,
                    "description": "Brand personality traits (tone, energy, target audience)."
                  }
                }
              },
              "product": {
                "type": "object",
                "nullable": true,
                "description": "Product information extracted from the page if `product` is in `formats`. Includes title, brand, category, description, and variants. Pricing, availability, and images live on each variant.",
                "properties": {
                  "title": {
                    "type": "string",
                    "description": "The product title."
                  },
                  "brand": {
                    "type": "string",
                    "description": "The product brand or manufacturer."
                  },
                  "category": {
                    "type": "string",
                    "description": "The product category, optionally as a breadcrumb path (e.g. 'Electronics > Audio > Headphones')."
                  },
                  "url": {
                    "type": "string",
                    "description": "The canonical URL of the product page."
                  },
                  "description": {
                    "type": "string",
                    "description": "The product description."
                  },
                  "variants": {
                    "type": "array",
                    "description": "Product variants (e.g. different colors or sizes).",
                    "items": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "The variant identifier."
                        },
                        "sku": {
                          "type": "string",
                          "description": "The variant SKU."
                        },
                        "title": {
                          "type": "string",
                          "description": "The variant title."
                        },
                        "values": {
                          "type": "object",
                          "description": "The variant option values (e.g. { \"color\": \"Black\" }).",
                          "additionalProperties": {
                            "type": "string"
                          }
                        },
                        "price": {
                          "type": "object",
                          "description": "The current price of the variant.",
                          "properties": {
                            "amount": {
                              "type": "number",
                              "description": "The numeric price amount."
                            },
                            "currency": {
                              "type": "string",
                              "description": "The ISO 4217 currency code (e.g. 'USD')."
                            },
                            "formatted": {
                              "type": "string",
                              "description": "The price formatted for display (e.g. '$199.99')."
                            }
                          },
                          "required": [
                            "amount"
                          ]
                        },
                        "sale": {
                          "type": "object",
                          "description": "Sale/discount information for the variant, present when the variant is discounted.",
                          "properties": {
                            "originalPrice": {
                              "type": "object",
                              "description": "The original (pre-discount) price of the variant.",
                              "properties": {
                                "amount": {
                                  "type": "number",
                                  "description": "The numeric price amount."
                                },
                                "currency": {
                                  "type": "string",
                                  "description": "The ISO 4217 currency code (e.g. 'USD')."
                                },
                                "formatted": {
                                  "type": "string",
                                  "description": "The price formatted for display (e.g. '$249.99')."
                                }
                              },
                              "required": [
                                "amount"
                              ]
                            }
                          },
                          "required": [
                            "originalPrice"
                          ]
                        },
                        "availability": {
                          "type": "object",
                          "description": "The availability of the variant. Always present on a variant.",
                          "properties": {
                            "inStock": {
                              "type": "boolean",
                              "description": "Whether the variant is in stock."
                            },
                            "text": {
                              "type": "string",
                              "description": "Human-readable availability text (e.g. 'In Stock')."
                            }
                          },
                          "required": [
                            "inStock"
                          ]
                        },
                        "images": {
                          "type": "array",
                          "description": "Variant images.",
                          "items": {
                            "type": "object",
                            "properties": {
                              "url": {
                                "type": "string",
                                "description": "Image URL."
                              },
                              "alt": {
                                "type": "string",
                                "description": "Alternative text for the image."
                              }
                            },
                            "required": [
                              "url"
                            ]
                          }
                        }
                      },
                      "required": [
                        "availability"
                      ]
                    }
                  }
                },
                "required": [
                  "title",
                  "url",
                  "variants"
                ]
              },
              "menu": {
                "type": "object",
                "nullable": true,
                "description": "Menu information extracted from the page if `menu` is in `formats`. Includes the merchant, currency, and a list of sections, where each section carries items with description, images, price, availability, dietary tags, calories, and option groups.",
                "properties": {
                  "isMenu": {
                    "type": "boolean",
                    "description": "Whether the page was identified as a menu."
                  },
                  "confidence": {
                    "type": "number",
                    "description": "A confidence score between 0 and 1 for the menu extraction."
                  },
                  "merchant": {
                    "type": "object",
                    "description": "The merchant the menu belongs to.",
                    "properties": {
                      "name": {
                        "type": "string",
                        "description": "The merchant name."
                      },
                      "type": {
                        "type": "string",
                        "description": "The merchant type (e.g. 'restaurant')."
                      }
                    },
                    "required": [
                      "name"
                    ]
                  },
                  "currency": {
                    "type": "string",
                    "description": "The ISO 4217 currency code for the menu (e.g. 'USD'), reported only when the page sources it."
                  },
                  "sections": {
                    "type": "array",
                    "description": "Menu sections (e.g. 'Appetizers', 'Entrees').",
                    "items": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string",
                          "description": "The section identifier."
                        },
                        "name": {
                          "type": "string",
                          "description": "The section name."
                        },
                        "description": {
                          "type": "string",
                          "nullable": true,
                          "description": "The section description."
                        },
                        "items": {
                          "type": "array",
                          "description": "The items in the section.",
                          "items": {
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "The item identifier."
                              },
                              "name": {
                                "type": "string",
                                "description": "The item name."
                              },
                              "description": {
                                "type": "string",
                                "nullable": true,
                                "description": "The item description."
                              },
                              "images": {
                                "type": "array",
                                "description": "Item images.",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "url": {
                                      "type": "string",
                                      "description": "Image URL."
                                    },
                                    "alt": {
                                      "type": "string",
                                      "nullable": true,
                                      "description": "Alternative text for the image."
                                    }
                                  },
                                  "required": [
                                    "url"
                                  ]
                                }
                              },
                              "price": {
                                "type": "object",
                                "description": "The price of the item.",
                                "properties": {
                                  "amount": {
                                    "type": "number",
                                    "description": "The numeric price amount."
                                  },
                                  "currency": {
                                    "type": "string",
                                    "description": "The ISO 4217 currency code (e.g. 'USD')."
                                  },
                                  "formatted": {
                                    "type": "string",
                                    "description": "The price formatted for display (e.g. '$7.99')."
                                  }
                                },
                                "required": [
                                  "amount"
                                ]
                              },
                              "availability": {
                                "type": "object",
                                "description": "The availability of the item.",
                                "properties": {
                                  "inStock": {
                                    "type": "boolean",
                                    "description": "Whether the item is available."
                                  },
                                  "text": {
                                    "type": "string",
                                    "nullable": true,
                                    "description": "Human-readable availability text."
                                  }
                                },
                                "required": [
                                  "inStock"
                                ]
                              },
                              "dietary": {
                                "type": "array",
                                "description": "Dietary tags for the item (e.g. ['vegetarian']).",
                                "items": {
                                  "type": "string"
                                }
                              },
                              "calories": {
                                "type": "number",
                                "nullable": true,
                                "description": "The item's calorie count."
                              },
                              "optionGroups": {
                                "type": "array",
                                "description": "Option/modifier groups for the item.",
                                "items": {
                                  "type": "object"
                                }
                              },
                              "identifiers": {
                                "type": "object",
                                "description": "Merchant-specific identifiers for the item.",
                                "properties": {
                                  "merchantItemId": {
                                    "type": "string",
                                    "description": "The merchant's own item ID."
                                  }
                                }
                              },
                              "url": {
                                "type": "string",
                                "nullable": true,
                                "description": "The canonical URL of the item."
                              },
                              "sourceUrl": {
                                "type": "string",
                                "nullable": true,
                                "description": "The URL the item was extracted from."
                              }
                            },
                            "required": [
                              "name"
                            ]
                          }
                        }
                      },
                      "required": [
                        "name",
                        "items"
                      ]
                    }
                  },
                  "sourceUrl": {
                    "type": "string",
                    "nullable": true,
                    "description": "The URL the menu was extracted from."
                  }
                },
                "required": [
                  "isMenu",
                  "sections"
                ]
              }
            }
          }
        }
      },
      "CrawlStatusResponseObj": {
        "type": "object",
        "properties": {
          "status": {
            "type": "string",
            "description": "The current status of the crawl. Can be `scraping`, `completed`, or `failed`."
          },
          "total": {
            "type": "integer",
            "description": "The total number of pages that were attempted to be crawled."
          },
          "completed": {
            "type": "integer",
            "description": "The number of pages that have been successfully crawled."
          },
          "creditsUsed": {
            "type": "integer",
            "description": "The number of credits used for the crawl."
          },
          "expiresAt": {
            "type": "string",
            "format": "date-time",
            "description": "The date and time when the crawl will expire."
          },
          "createdAt": {
            "type": "string",
            "format": "date-time",
            "description": "The date and time when the crawl was started."
          },
          "completedAt": {
            "type": "string",
            "format": "date-time",
            "description": "The date and time when the crawl finished. Present only when the crawl is in a terminal state (`completed`, `failed`, or `cancelled`)."
          },
          "duration": {
            "type": "number",
            "description": "Crawl duration in seconds. For terminal crawls, this is the elapsed time from `createdAt` to `completedAt`. For in-progress crawls, it is the elapsed time from `createdAt` to now."
          },
          "next": {
            "type": "string",
            "nullable": true,
            "description": "The URL to retrieve the next 10MB of data. Returned if the crawl is not completed or if the response is larger than 10MB."
          },
          "data": {
            "type": "array",
            "description": "The data of the crawl.",
            "items": {
              "type": "object",
              "properties": {
                "markdown": {
                  "type": "string"
                },
                "html": {
                  "type": "string",
                  "nullable": true,
                  "description": "HTML version of the content on page if `includeHtml`  is true"
                },
                "rawHtml": {
                  "type": "string",
                  "nullable": true,
                  "description": "Raw HTML content of the page if `includeRawHtml`  is true"
                },
                "links": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  },
                  "description": "List of links on the page if `includeLinks` is true"
                },
                "screenshot": {
                  "type": "string",
                  "nullable": true,
                  "description": "Screenshot of the page if `includeScreenshot` is true"
                },
                "metadata": {
                  "type": "object",
                  "properties": {
                    "title": {
                      "oneOf": [
                        {
                          "type": "string"
                        },
                        {
                          "type": "array",
                          "items": {
                            "type": "string"
                          }
                        }
                      ],
                      "description": "Title extracted from the page, can be a string or array of strings"
                    },
                    "description": {
                      "oneOf": [
                        {
                          "type": "string"
                        },
                        {
                          "type": "array",
                          "items": {
                            "type": "string"
                          }
                        }
                      ],
                      "description": "Description extracted from the page, can be a string or array of strings"
                    },
                    "language": {
                      "oneOf": [
                        {
                          "type": "string"
                        },
                        {
                          "type": "array",
                          "items": {
                            "type": "string"
                          }
                        }
                      ],
                      "nullable": true,
                      "description": "Language extracted from the page, can be a string or array of strings"
                    },
                    "sourceURL": {
                      "type": "string",
                      "format": "uri",
                      "description": "The original URL that was requested. May differ from the page's final URL if redirects occurred."
                    },
                    "url": {
                      "type": "string",
                      "format": "uri",
                      "description": "The final URL of the page after all redirects have been followed."
                    },
                    "keywords": {
                      "oneOf": [
                        {
                          "type": "string"
                        },
                        {
                          "type": "array",
                          "items": {
                            "type": "string"
                          }
                        }
                      ],
                      "description": "Keywords extracted from the page, can be a string or array of strings"
                    },
                    "ogLocaleAlternate": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      },
                      "description": "Alternative locales for the page"
                    },
                    "<any other metadata> ": {
                      "type": "string"
                    },
                    "statusCode": {
                      "type": "integer",
                      "description": "The status code of the page"
                    },
                    "numPages": {
                      "type": "integer",
                      "description": "For PDF inputs, the number of pages parsed (capped by the parsers maxPages option)."
                    },
                    "totalPages": {
                      "type": "integer",
                      "description": "For PDF inputs, the document's true page count before any maxPages capping. Omitted when it cannot be determined; a totalPages greater than numPages indicates the result was truncated."
                    },
                    "error": {
                      "type": "string",
                      "nullable": true,
                      "description": "The error message of the page"
                    },
                    "concurrencyLimited": {
                      "type": "boolean",
                      "description": "Whether this scrape was throttled due to team concurrency limits"
                    },
                    "concurrencyQueueDurationMs": {
                      "type": "number",
                      "description": "Time in milliseconds the request waited in the concurrency queue. Only present when concurrencyLimited is true."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "CrawlErrorsResponseObj": {
        "type": "object",
        "properties": {
          "errors": {
            "type": "array",
            "description": "Errored scrape jobs and error details",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string"
                },
                "timestamp": {
                  "type": "string",
                  "nullable": true,
                  "description": "ISO timestamp of failure"
                },
                "url": {
                  "type": "string",
                  "description": "Scraped URL"
                },
                "error": {
                  "type": "string",
                  "description": "Error message"
                }
              }
            }
          },
          "robotsBlocked": {
            "type": "array",
            "description": "List of URLs that were attempted in scraping but were blocked by robots.txt",
            "items": {
              "type": "string"
            }
          }
        }
      },
      "BatchScrapeStatusResponseObj": {
        "type": "object",
        "properties": {
          "status": {
            "type": "string",
            "description": "The current status of the batch scrape. Can be `scraping`, `completed`, or `failed`."
          },
          "total": {
            "type": "integer",
            "description": "The total number of pages that were attempted to be scraped."
          },
          "completed": {
            "type": "integer",
            "description": "The number of pages that have been successfully scraped."
          },
          "creditsUsed": {
            "type": "integer",
            "description": "The number of credits used for the batch scrape."
          },
          "expiresAt": {
            "type": "string",
            "format": "date-time",
            "description": "The date and time when the batch scrape will expire."
          },
          "createdAt": {
            "type": "string",
            "format": "date-time",
            "description": "The date and time when the batch scrape was started."
          },
          "completedAt": {
            "type": "string",
            "format": "date-time",
            "description": "The date and time when the batch scrape finished. Present only when the batch scrape is in a terminal state (`completed`, `failed`, or `cancelled`)."
          },
          "duration": {
            "type": "number",
            "description": "Batch scrape duration in seconds. For terminal batch scrapes, this is the elapsed time from `createdAt` to `completedAt`. For in-progress batch scrapes, it is the elapsed time from `createdAt` to now."
          },
          "next": {
            "type": "string",
            "nullable": true,
            "description": "The URL to retrieve the next 10MB of data. Returned if the batch scrape is not completed or if the response is larger than 10MB."
          },
          "data": {
            "type": "array",
            "description": "The data of the batch scrape.",
            "items": {
              "type": "object",
              "properties": {
                "markdown": {
                  "type": "string"
                },
                "html": {
                  "type": "string",
                  "nullable": true,
                  "description": "HTML version of the content on page if `includeHtml`  is true"
                },
                "rawHtml": {
                  "type": "string",
                  "nullable": true,
                  "description": "Raw HTML content of the page if `includeRawHtml`  is true"
                },
                "links": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  },
                  "description": "List of links on the page if `includeLinks` is true"
                },
                "screenshot": {
                  "type": "string",
                  "nullable": true,
                  "description": "Screenshot of the page if `includeScreenshot` is true"
                },
                "metadata": {
                  "type": "object",
                  "properties": {
                    "title": {
                      "oneOf": [
                        {
                          "type": "string"
                        },
                        {
                          "type": "array",
                          "items": {
                            "type": "string"
                          }
                        }
                      ],
                      "description": "Title extracted from the page, can be a string or array of strings"
                    },
                    "description": {
                      "oneOf": [
                        {
                          "type": "string"
                        },
                        {
                          "type": "array",
                          "items": {
                            "type": "string"
                          }
                        }
                      ],
                      "description": "Description extracted from the page, can be a string or array of strings"
                    },
                    "language": {
                      "oneOf": [
                        {
                          "type": "string"
                        },
                        {
                          "type": "array",
                          "items": {
                            "type": "string"
                          }
                        }
                      ],
                      "nullable": true,
                      "description": "Language extracted from the page, can be a string or array of strings"
                    },
                    "sourceURL": {
                      "type": "string",
                      "format": "uri",
                      "description": "The original URL that was requested. May differ from the page's final URL if redirects occurred."
                    },
                    "url": {
                      "type": "string",
                      "format": "uri",
                      "description": "The final URL of the page after all redirects have been followed."
                    },
                    "keywords": {
                      "oneOf": [
                        {
                          "type": "string"
                        },
                        {
                          "type": "array",
                          "items": {
                            "type": "string"
                          }
                        }
                      ],
                      "description": "Keywords extracted from the page, can be a string or array of strings"
                    },
                    "ogLocaleAlternate": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      },
                      "description": "Alternative locales for the page"
                    },
                    "<any other metadata> ": {
                      "type": "string"
                    },
                    "statusCode": {
                      "type": "integer",
                      "description": "The status code of the page"
                    },
                    "numPages": {
                      "type": "integer",
                      "description": "For PDF inputs, the number of pages parsed (capped by the parsers maxPages option)."
                    },
                    "totalPages": {
                      "type": "integer",
                      "description": "For PDF inputs, the document's true page count before any maxPages capping. Omitted when it cannot be determined; a totalPages greater than numPages indicates the result was truncated."
                    },
                    "error": {
                      "type": "string",
                      "nullable": true,
                      "description": "The error message of the page"
                    },
                    "concurrencyLimited": {
                      "type": "boolean",
                      "description": "Whether this scrape was throttled due to team concurrency limits"
                    },
                    "concurrencyQueueDurationMs": {
                      "type": "number",
                      "description": "Time in milliseconds the request waited in the concurrency queue. Only present when concurrencyLimited is true."
                    }
                  }
                }
              }
            }
          }
        }
      },
      "CrawlResponse": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "id": {
            "type": "string"
          },
          "url": {
            "type": "string",
            "format": "uri"
          }
        }
      },
      "BatchScrapeResponseObj": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "id": {
            "type": "string"
          },
          "url": {
            "type": "string",
            "format": "uri"
          },
          "invalidURLs": {
            "type": "array",
            "nullable": true,
            "items": {
              "type": "string"
            },
            "description": "If ignoreInvalidURLs is true, this is an array containing the invalid URLs that were specified in the request. If there were no invalid URLs, this will be an empty array. If ignoreInvalidURLs is false, this field will be undefined."
          }
        }
      },
      "MapResponse": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "links": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "url": {
                  "type": "string",
                  "format": "uri"
                },
                "title": {
                  "type": "string",
                  "description": "The title of the page, if available."
                },
                "description": {
                  "type": "string",
                  "description": "A description of the page, if available."
                }
              },
              "required": [
                "url"
              ]
            }
          }
        }
      },
      "ExtractResponse": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "id": {
            "type": "string"
          },
          "invalidURLs": {
            "type": "array",
            "nullable": true,
            "items": {
              "type": "string"
            },
            "description": "If ignoreInvalidURLs is true, this is an array containing the invalid URLs that were specified in the request. If there were no invalid URLs, this will be an empty array. If ignoreInvalidURLs is false, this field will be undefined."
          }
        }
      },
      "ExtractStatusResponse": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "data": {
            "type": "object"
          },
          "status": {
            "type": "string",
            "enum": [
              "completed",
              "processing",
              "failed",
              "cancelled"
            ],
            "description": "The current status of the extract job"
          },
          "expiresAt": {
            "type": "string",
            "format": "date-time"
          },
          "tokensUsed": {
            "type": "integer",
            "description": "The number of tokens used by the extract job. Only available if the job is completed."
          }
        }
      },
      "SearchFeedbackRequest": {
        "type": "object",
        "description": "For 'good', include valuableSources. For 'partial', include valuableSources or missingContent. For 'bad', include missingContent or querySuggestions.",
        "properties": {
          "rating": {
            "type": "string",
            "enum": [
              "good",
              "partial",
              "bad"
            ]
          },
          "valuableSources": {
            "type": "array",
            "maxItems": 50,
            "items": {
              "type": "object",
              "properties": {
                "url": {
                  "type": "string",
                  "format": "uri"
                },
                "reason": {
                  "type": "string",
                  "maxLength": 1000
                }
              },
              "required": [
                "url"
              ]
            }
          },
          "missingContent": {
            "type": "array",
            "maxItems": 20,
            "items": {
              "type": "object",
              "properties": {
                "topic": {
                  "type": "string",
                  "maxLength": 200,
                  "minLength": 1
                },
                "description": {
                  "type": "string",
                  "maxLength": 2000
                }
              },
              "required": [
                "topic"
              ]
            }
          },
          "querySuggestions": {
            "type": "string",
            "maxLength": 2000
          },
          "origin": {
            "type": "string",
            "default": "api"
          },
          "integration": {
            "type": "string",
            "nullable": true
          }
        },
        "required": [
          "rating"
        ]
      },
      "SupportAskRequest": {
        "type": "object",
        "required": [
          "question"
        ],
        "additionalProperties": true,
        "properties": {
          "question": {
            "type": "string",
            "description": "Question or issue for the support agent to diagnose."
          },
          "rationale": {
            "type": "string",
            "description": "Optional context about what the end user is trying to accomplish."
          }
        }
      },
      "SupportAskResponse": {
        "type": "object",
        "properties": {
          "answer": {
            "type": "string",
            "description": "Diagnosis and recommended fix."
          },
          "confidence": {
            "type": "string",
            "enum": [
              "high",
              "medium",
              "low"
            ]
          },
          "fixParameters": {
            "type": "object",
            "nullable": true,
            "additionalProperties": true,
            "description": "Machine-readable API parameters that may fix the issue."
          },
          "validation": {
            "type": "object",
            "nullable": true,
            "additionalProperties": true,
            "description": "Validation result when the support agent tested or attempted a fix."
          },
          "feedback": {
            "type": "object",
            "nullable": true,
            "additionalProperties": true,
            "description": "Present when the support agent is blocked or needs more information."
          },
          "durationMs": {
            "type": "integer",
            "description": "Total support-agent execution time in milliseconds."
          }
        }
      },
      "SupportDocsSearchRequest": {
        "type": "object",
        "required": [
          "question"
        ],
        "properties": {
          "question": {
            "type": "string",
            "description": "Documentation question to answer."
          }
        }
      },
      "SupportDocsSearchResponse": {
        "type": "object",
        "properties": {
          "requestId": {
            "type": "string"
          },
          "answer": {
            "type": "string",
            "description": "Concise answer grounded in Firecrawl documentation."
          },
          "evidence": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "pathOrUrl": {
                  "type": "string"
                },
                "reason": {
                  "type": "string"
                }
              }
            }
          },
          "usage": {
            "type": "object",
            "properties": {
              "inputTokens": {
                "type": "integer"
              },
              "outputTokens": {
                "type": "integer"
              },
              "totalTokens": {
                "type": "integer"
              }
            }
          },
          "durationMs": {
            "type": "integer",
            "description": "Total docs-search execution time in milliseconds."
          }
        }
      },
      "SupportProxyErrorResponse": {
        "type": "object",
        "properties": {
          "error": {
            "type": "string",
            "description": "Support proxy or upstream error code."
          }
        }
      },
      "RedactPIIEntity": {
        "type": "string",
        "enum": [
          "PERSON",
          "EMAIL",
          "PHONE",
          "LOCATION",
          "FINANCIAL",
          "SECRET"
        ],
        "description": "Public PII entity buckets supported by Firecrawl redaction."
      },
      "RedactPIIOptions": {
        "type": "object",
        "description": "Tuning options for PII redaction.",
        "properties": {
          "mode": {
            "type": "string",
            "enum": [
              "accurate",
              "aggressive",
              "fast"
            ],
            "default": "accurate",
            "description": "Redaction strategy. `accurate` is model-only and optimized for precision, `aggressive` increases recall with additional heuristics, and `fast` uses heuristics without the model call."
          },
          "entities": {
            "type": "array",
            "description": "Restrict redaction to these entity buckets. If omitted, all supported entities are redacted.",
            "items": {
              "$ref": "#/components/schemas/RedactPIIEntity"
            }
          },
          "replaceStyle": {
            "type": "string",
            "enum": [
              "tag",
              "mask",
              "remove"
            ],
            "default": "tag",
            "description": "`tag` replaces spans with placeholders like `<EMAIL>`, `mask` replaces characters with `*`, and `remove` deletes the span text."
          }
        },
        "additionalProperties": false
      },
      "ResearchIdMap": {
        "type": "object",
        "description": "Source identifiers grouped by namespace.",
        "additionalProperties": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "example": {
          "arxiv": [
            "2105.05233"
          ]
        }
      },
      "ResearchPaperSignals": {
        "type": "object",
        "required": [
          "structural",
          "semantic",
          "articleRank",
          "seedOverlap"
        ],
        "properties": {
          "structural": {
            "type": "number",
            "format": "double",
            "description": "Raw structural graph signal."
          },
          "semantic": {
            "type": "number",
            "format": "double",
            "description": "Semantic score from the intent search."
          },
          "articleRank": {
            "type": "number",
            "format": "double",
            "description": "Structural expansion article-rank score."
          },
          "seedOverlap": {
            "type": "integer",
            "minimum": 0,
            "description": "Number of distinct seeds connected to this candidate."
          }
        }
      },
      "ResearchPaperResult": {
        "type": "object",
        "required": [
          "paperId",
          "primaryId",
          "title",
          "abstract",
          "score"
        ],
        "properties": {
          "paperId": {
            "type": "string",
            "description": "Canonical paper id, or web:<url> for SERP-discovered display results."
          },
          "primaryId": {
            "type": "string",
            "description": "Preferred cite/fetch id such as arxiv:<id>, pmid:<id>, pmcid:<id>, or doi:<id>."
          },
          "ids": {
            "$ref": "#/components/schemas/ResearchIdMap"
          },
          "title": {
            "type": "string"
          },
          "abstract": {
            "type": "string"
          },
          "score": {
            "type": "number",
            "format": "double"
          },
          "signals": {
            "$ref": "#/components/schemas/ResearchPaperSignals"
          }
        }
      },
      "ResearchPaperMetadata": {
        "type": "object",
        "required": [
          "paperId",
          "title",
          "abstract"
        ],
        "properties": {
          "paperId": {
            "type": "string",
            "description": "Canonical paper id."
          },
          "ids": {
            "$ref": "#/components/schemas/ResearchIdMap"
          },
          "title": {
            "type": "string"
          },
          "abstract": {
            "type": "string"
          },
          "authors": {
            "type": "string",
            "description": "Comma-joined author names."
          },
          "categories": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Paper categories."
          },
          "createdDate": {
            "type": "string",
            "description": "Original creation date string."
          },
          "updateDate": {
            "type": "string",
            "description": "Last-updated date string."
          }
        }
      },
      "ResearchPassage": {
        "type": "object",
        "required": [
          "text",
          "score"
        ],
        "properties": {
          "text": {
            "type": "string",
            "description": "In-body passage text. May include markdown tables."
          },
          "score": {
            "type": "number",
            "format": "double",
            "description": "Dense similarity score for the passage."
          }
        }
      },
      "ResearchSearchPapersResponse": {
        "type": "object",
        "required": [
          "success",
          "results"
        ],
        "properties": {
          "success": {
            "type": "boolean"
          },
          "results": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ResearchPaperResult"
            }
          }
        }
      },
      "ResearchPaperMetadataResponse": {
        "type": "object",
        "required": [
          "success",
          "paper"
        ],
        "properties": {
          "success": {
            "type": "boolean"
          },
          "paper": {
            "$ref": "#/components/schemas/ResearchPaperMetadata"
          }
        }
      },
      "ResearchReadPaperResponse": {
        "type": "object",
        "required": [
          "success",
          "paper",
          "paperId",
          "query",
          "passages"
        ],
        "properties": {
          "success": {
            "type": "boolean"
          },
          "paper": {
            "$ref": "#/components/schemas/ResearchPaperMetadata"
          },
          "paperId": {
            "type": "string"
          },
          "query": {
            "type": "string"
          },
          "passages": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ResearchPassage"
            }
          }
        }
      },
      "ResearchSimilarPapersResponse": {
        "type": "object",
        "required": [
          "success",
          "results",
          "poolSize",
          "truncated"
        ],
        "properties": {
          "success": {
            "type": "boolean"
          },
          "results": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ResearchPaperResult"
            }
          },
          "poolSize": {
            "type": "integer",
            "minimum": 0
          },
          "truncated": {
            "type": "boolean"
          },
          "note": {
            "type": "string",
            "nullable": true
          }
        }
      },
      "DeveloperSearchResult": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Stable result id, such as `issue:owner/repo#123`.",
            "example": "issue:firecrawl/firecrawl#1234"
          },
          "type": {
            "type": "string",
            "enum": [
              "doc",
              "issue",
              "pull_request",
              "readme"
            ],
            "description": "Result kind."
          },
          "url": {
            "type": "string",
            "format": "uri"
          },
          "title": {
            "type": "string",
            "description": "Frequently absent on `doc` results, where the source page carries no usable title. Fall back to `url`."
          },
          "passages": {
            "type": "array",
            "description": "Matched passages in markdown, so tables and code blocks survive.",
            "items": {
              "type": "object",
              "properties": {
                "text": {
                  "type": "string"
                }
              }
            }
          }
        }
      },
      "DeveloperSearchResponse": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "results": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DeveloperSearchResult"
            }
          },
          "coverage": {
            "type": "object",
            "description": "Outcome for each result type. Check this when an expected result type is missing: `skipped` means your `types` value did not ask for that type, while `degraded` or `unavailable` means the gap came from the index or from a filter, not from the query. A repository filter is one such cause — see [how the repository filters scope a search](/api-reference/endpoint/developer-search#how-the-repository-filters-scope-a-search).",
            "properties": {
              "doc": {
                "type": "string",
                "enum": [
                  "ok",
                  "degraded",
                  "unavailable",
                  "skipped"
                ]
              },
              "issue": {
                "type": "string",
                "enum": [
                  "ok",
                  "degraded",
                  "unavailable",
                  "skipped"
                ]
              },
              "pull_request": {
                "type": "string",
                "enum": [
                  "ok",
                  "degraded",
                  "unavailable",
                  "skipped"
                ]
              },
              "readme": {
                "type": "string",
                "enum": [
                  "ok",
                  "degraded",
                  "unavailable",
                  "skipped"
                ]
              }
            }
          },
          "reranked": {
            "type": "boolean",
            "description": "Whether the ranked list went through the reranking stage."
          },
          "repos": {
            "type": "array",
            "description": "Present only when `repos` was sent. Echoes each slug with whether it is indexed, plus a per-type breakdown under `types`.",
            "items": {
              "type": "object",
              "properties": {
                "repo": {
                  "type": "string"
                },
                "indexed": {
                  "type": "boolean"
                },
                "types": {
                  "type": "object",
                  "description": "Which result types are indexed for this repository: `issue`, `pullRequest`, and `readme`.",
                  "properties": {
                    "issue": {
                      "type": "boolean"
                    },
                    "pullRequest": {
                      "type": "boolean"
                    },
                    "readme": {
                      "type": "boolean"
                    }
                  }
                }
              }
            },
            "example": [
              {
                "repo": "firecrawl/firecrawl",
                "indexed": true,
                "types": {
                  "issue": true,
                  "pullRequest": true,
                  "readme": true
                }
              }
            ]
          },
          "sources": {
            "type": "array",
            "description": "Present only when `sources` was sent. Reports each id exactly as requested along with whether it is indexed. `indexed: true` means the source has a published generation, so documentation evidence from it may appear; `indexed: false` means nothing from that id can match, which distinguishes an id that is not in the index from a query that simply found nothing.",
            "items": {
              "type": "object",
              "properties": {
                "source": {
                  "type": "string"
                },
                "indexed": {
                  "type": "boolean"
                }
              }
            },
            "example": [
              {
                "source": "some-docs-site",
                "indexed": true
              },
              {
                "source": "unknown-docs-site",
                "indexed": false
              }
            ]
          }
        }
      },
      "EndpointFeedbackRequest": {
        "allOf": [
          {
            "$ref": "#/components/schemas/SearchFeedbackRequest"
          },
          {
            "type": "object",
            "description": "Submit feedback for a v2 job. Include at least one substantive signal such as issues, note, valuableSources, missingContent, querySuggestions, url, or pageNumbers.",
            "properties": {
              "endpoint": {
                "type": "string",
                "enum": [
                  "search",
                  "scrape",
                  "parse",
                  "map"
                ]
              },
              "jobId": {
                "type": "string",
                "format": "uuid"
              },
              "issues": {
                "type": "array",
                "maxItems": 20,
                "items": {
                  "type": "string",
                  "pattern": "^[a-z0-9][a-z0-9_-]*$",
                  "maxLength": 80
                }
              },
              "tags": {
                "type": "array",
                "maxItems": 20,
                "items": {
                  "type": "string",
                  "pattern": "^[a-z0-9][a-z0-9_-]*$",
                  "maxLength": 80
                }
              },
              "note": {
                "type": "string",
                "maxLength": 4000
              },
              "url": {
                "type": "string",
                "format": "uri"
              },
              "pageNumbers": {
                "type": "array",
                "maxItems": 100,
                "items": {
                  "type": "integer",
                  "minimum": 1
                }
              },
              "metadata": {
                "type": "object",
                "additionalProperties": true,
                "description": "Small endpoint-specific metadata object. Must be 8KB or smaller; do not include full endpoint results."
              },
              "missingContent": {
                "type": "array",
                "maxItems": 50,
                "items": {
                  "type": "object",
                  "properties": {
                    "topic": {
                      "type": "string",
                      "maxLength": 200,
                      "minLength": 1
                    },
                    "description": {
                      "type": "string",
                      "maxLength": 2000
                    }
                  },
                  "required": [
                    "topic"
                  ]
                }
              }
            },
            "required": [
              "endpoint",
              "jobId"
            ]
          }
        ]
      },
      "FeedbackResponse": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean",
            "example": true
          },
          "feedbackId": {
            "type": "string",
            "format": "uuid"
          },
          "creditsRefunded": {
            "type": "number"
          },
          "alreadySubmitted": {
            "type": "boolean"
          },
          "dailyCapReached": {
            "type": "boolean"
          },
          "creditsRefundedToday": {
            "type": "number"
          },
          "dailyRefundCap": {
            "type": "number"
          },
          "warning": {
            "type": "string"
          }
        },
        "required": [
          "success",
          "feedbackId",
          "creditsRefunded"
        ]
      },
      "FeedbackErrorResponse": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean",
            "example": false
          },
          "error": {
            "type": "string"
          },
          "feedbackErrorCode": {
            "type": "string"
          },
          "details": {
            "type": "array",
            "items": {
              "type": "object"
            }
          }
        },
        "required": [
          "success",
          "error"
        ]
      },
      "ThreatProtectionOverride": {
        "type": "object",
        "title": "Threat Protection Override",
        "description": "Per-request [Threat Protection](https://docs.firecrawl.dev/features/threat-protection) override. Fields you provide replace the corresponding fields of your organization's policy for this request only; omitted fields keep their organization-level values. Requires Threat Protection to be enabled for your team (enterprise feature) — otherwise the request is rejected with a 403. If your organization has disabled request overrides, any request that includes this object is rejected with a 403. If Threat Protection is enforced for your team, `mode` may not be set to `off`.",
        "properties": {
          "mode": {
            "type": "string",
            "enum": [
              "off",
              "normal"
            ],
            "description": "URL scanning mode for this request. `normal` checks URLs against Google Web Risk (+2 credits per URL scanned)."
          },
          "riskScoreThreshold": {
            "type": "integer",
            "minimum": 0,
            "maximum": 100,
            "description": "Normalized risk score (0–100) at or above which a classifier verdict blocks the URL. Lower is stricter.",
            "example": 75
          },
          "blacklist": {
            "type": "array",
            "maxItems": 1000,
            "items": {
              "type": "string"
            },
            "description": "Domains to always block, as plain domains (`example.com`) or wildcard globs (`*.example.com`). No protocol, path, or port."
          },
          "whitelist": {
            "type": "array",
            "maxItems": 1000,
            "items": {
              "type": "string"
            },
            "description": "Domains to always allow, as plain domains or wildcard globs. Wins over every other rule."
          },
          "blockedTlds": {
            "type": "array",
            "maxItems": 1000,
            "items": {
              "type": "string"
            },
            "description": "Top-level domains to block outright, lowercase without the leading dot (e.g. `zip`)."
          },
          "failurePolicy": {
            "type": "string",
            "enum": [
              "open",
              "closed"
            ],
            "description": "What to do when the classifier can't be reached: `closed` blocks the request, `open` allows it."
          }
        }
      }
    }
  },
  "security": [
    {
      "bearerAuth": []
    }
  ]
}