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

# Get Job Results



## OpenAPI

````yaml GET /jobs/{job_id}/results
openapi: 3.1.0
info:
  title: Mindcase API
  version: 1.0.0
  description: >-
    The Mindcase API provides programmatic access to 30+ data scraping and
    enrichment agents. Collect structured data from Instagram, LinkedIn,
    YouTube, Google Maps, and more.
servers:
  - url: https://api.mindcase.co/api/v1
security:
  - bearerAuth: []
tags:
  - name: Agents
    description: Browse and run data agents
  - name: Jobs
    description: Track and manage agent jobs
  - name: Balance
    description: Check remaining USD balance
paths:
  /jobs/{job_id}/results:
    get:
      tags:
        - Jobs
      summary: Get job results
      operationId: getJobResults
      parameters:
        - name: job_id
          in: path
          required: true
          schema:
            type: string
          example: job_abc123def456
      responses:
        '200':
          description: Job results with scraped data
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - row_count
                  - data
                properties:
                  status:
                    type: string
                    enum:
                      - completed
                    example: completed
                  row_count:
                    type: integer
                    example: 2
                  data:
                    type: array
                    items:
                      type: object
                      additionalProperties: true
                    example:
                      - username: mkbhd
                        full_name: Marques Brownlee
                        followers: 4200000
                      - username: casey
                        full_name: Casey Neistat
                        followers: 3100000
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  responses:
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: unauthorized
            message: >-
              Invalid or missing API key. Include your key in the Authorization
              header as 'Bearer mk_live_...'.
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: not_found
            message: The requested resource was not found.
  schemas:
    Error:
      type: object
      required:
        - error
        - message
      properties:
        error:
          type: string
        message:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key in the format `mk_live_...`

````