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

# Get Batch Item Result Endpoint



## OpenAPI

````yaml /openapi.json get /v1/batches/{batch_id}/items/{item_id}/result
openapi: 3.1.0
info:
  title: extract
  summary: Parse documents into structured data. Text, tables, and figures in one call.
  version: 0.1.0
servers:
  - url: https://api.extract.page
    description: production
security:
  - APIKeyHeader: []
paths:
  /v1/batches/{batch_id}/items/{item_id}/result:
    get:
      tags:
        - v1
        - async-batch
      summary: Get Batch Item Result Endpoint
      operationId: get_batch_item_result_v1
      parameters:
        - name: batch_id
          in: path
          required: true
          schema:
            type: string
            title: Batch Id
        - name: item_id
          in: path
          required: true
          schema:
            type: string
            title: Item Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '302':
          description: Redirect (`Location`) to a presigned S3 GET for the result blob.
        '404':
          description: Batch or item not found for this account.
        '409':
          description: >-
            Item hasn't reached `succeeded` yet — keep polling `GET
            /v1/batches/{batch_id}`.
          content:
            application/json:
              example:
                error: result_not_ready
                status: running
        '410':
          description: Result is gone — past the 3-day retention window.
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
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
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-KEY

````