> ## Documentation Index
> Fetch the complete documentation index at: https://docs.convocore.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# General Scrape

> Ad-hoc research scrape that is not tied to an agent KB or workspace crawler plan gate.

## When to use

* Research / planning **before** an agent exists
* One-off page extraction without creating a `kb_ingest` crawler job

For agent KB ingest crawls, keep using [`POST /workspaces/{workspaceId}/crawler/jobs`](/api-reference/v3/crawler/createJob) (`type: kb_ingest` when `toAgentId` is set).

## Request

```json theme={null}
{
  "url": "https://example.com/hotel"
}
```

## Response

```json theme={null}
{
  "success": true,
  "content": "# Example Hotel\n\n…markdown-ish text…",
  "images": ["https://example.com/hero.jpg"],
  "links": ["https://example.com/rooms"],
  "jobId": "scrape_job_id"
}
```

A `scrape_jobs/{jobId}` row is recorded with `type: "general"` and `agentId: null` for auditability.


## OpenAPI

````yaml POST /scrape
openapi: 3.0.3
info:
  title: Convocore OpenAPI
  description: Full API reference for Convocore
  version: 1.0.4
servers:
  - url: https://eu-gcp-api.vg-stuff.com/v3
security: []
paths:
  /scrape:
    post:
      tags:
        - Scrape
      summary: General-purpose URL scrape
      description: >-
        Ad-hoc research scrape. Not tied to an agent KB. Distinct from workspace
        crawler kb_ingest jobs.
      operationId: generalScrape
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/url_e69aa3'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  content:
                    type: string
                  images:
                    type: array
                    items:
                      type: string
                  links:
                    type: array
                    items:
                      type: string
                  jobId:
                    type: string
                required:
                  - success
                  - content
                  - images
                  - links
                additionalProperties: false
        default:
          $ref: '#/components/responses/error'
      security:
        - Authorization: []
components:
  schemas:
    url_e69aa3:
      type: object
      properties:
        url:
          type: string
          format: uri
      required:
        - url
      additionalProperties: false
    message_11569e:
      type: object
      properties:
        message:
          type: string
      required:
        - message
      additionalProperties: false
  responses:
    error:
      description: Error response
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
              code:
                type: string
              issues:
                type: array
                items:
                  $ref: '#/components/schemas/message_11569e'
            required:
              - message
              - code
            additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer

````