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

# Resume Streaming Extraction

> Resume streaming events for an existing extraction job.

This endpoint:
1. Validates the job exists and is still processing
2. Queries Temporal workflow for current state (accumulated_results)
3. Sends current state as initial event
4. Streams new events going forward



## OpenAPI

````yaml api-reference/openapi.json get /extract/jobs/{job_id}/stream
openapi: 3.1.0
info:
  title: Endpoints
  version: '1.0'
servers:
  - url: https://api.contextual.ai/v1
security:
  - BearerAuth: []
paths:
  /extract/jobs/{job_id}/stream:
    get:
      tags:
        - /extract
      summary: Resume Streaming Extraction
      description: |-
        Resume streaming events for an existing extraction job.

        This endpoint:
        1. Validates the job exists and is still processing
        2. Queries Temporal workflow for current state (accumulated_results)
        3. Sends current state as initial event
        4. Streams new events going forward
      operationId: resume_streaming_extraction_extract_jobs__job_id__stream_get
      parameters:
        - name: job_id
          in: path
          required: true
          schema:
            type: string
            title: Job Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key

````