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

# Get Crawl Job Status

> Check crawl progress and get results

<Tip>
  Unlike scrape, crawl returns an **array** of results - one object per crawled page.
</Tip>


## OpenAPI

````yaml GET /crawl/{jobId}
openapi: 3.1.0
info:
  title: Spidra API
  version: 1.0.0
  description: >-
    Public API endpoints for web scraping via Spidra. Authentication is via API
    key passed in the `x-api-key` header.
servers:
  - url: https://api.spidra.io/api
security:
  - ApiKeyAuth: []
paths:
  /crawl/{jobId}:
    get:
      tags:
        - Crawling
      summary: Get Crawl Job Status
      parameters:
        - name: jobId
          in: path
          required: true
          schema:
            type: string
          description: The job ID returned from POST /crawl
      responses:
        '200':
          description: Job status and results
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - waiting
                      - active
                      - completed
                      - failed
                  progress:
                    type: object
                    properties:
                      message:
                        type: string
                      pagesCrawled:
                        type: integer
                      maxPages:
                        type: integer
                  result:
                    type: array
                    items:
                      type: object
                      properties:
                        url:
                          type: string
                        title:
                          type: string
                        status:
                          type: string
                        data:
                          type: object
                    nullable: true
                  error:
                    type: string
                    nullable: true
              example:
                status: completed
                progress:
                  message: Crawl complete
                  pagesCrawled: 5
                  maxPages: 10
                result:
                  - url: https://example.com/blog/post-1
                    title: First Post
                    status: success
                    data:
                      title: First Post
                      author: John
                      date: '2025-01-01'
                error: null
        '403':
          description: Not authorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Job not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                status: error
                message: Crawl job not found
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        status:
          type: string
          enum:
            - error
        message:
          type: string
      required:
        - status
        - message
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````