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

# List job recipe runs

> List workflow runs started by job recipe requests.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/recipes/jobs/runs
openapi: 3.1.0
info:
  title: Skyvern API
  description: API for Skyvern
  version: 1.0.0
servers:
  - url: https://api.skyvern.com
    x-fern-server-name: Cloud
  - url: https://api-staging.skyvern.com
    x-fern-server-name: Staging
  - url: http://localhost:8000
    x-fern-server-name: Local
security: []
paths:
  /v1/recipes/jobs/runs:
    get:
      tags:
        - Runs
      summary: List job recipe runs
      description: List workflow runs started by job recipe requests.
      operationId: list_job_recipe_runs_v1_recipes_jobs_runs_get
      parameters:
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            description: Page number.
            default: 1
            title: Page
          description: Page number.
        - name: page_size
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            description: Number of runs per page.
            default: 25
            title: Page Size
          description: Number of runs per page.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JobRecipeRunListResponse'
        '403':
          description: Unauthorized or insufficient organization permission
        '422':
          description: Invalid pagination parameters
components:
  schemas:
    JobRecipeRunListResponse:
      properties:
        runs:
          items:
            $ref: '#/components/schemas/JobRecipeRunSummary'
          type: array
          title: Runs
        page:
          type: integer
          title: Page
        page_size:
          type: integer
          title: Page Size
        has_next:
          type: boolean
          title: Has Next
      additionalProperties: false
      type: object
      required:
        - runs
        - page
        - page_size
        - has_next
      title: JobRecipeRunListResponse
    JobRecipeRunSummary:
      properties:
        workflow_run_id:
          type: string
          pattern: ^wr_
          title: Workflow Run Id
        workflow_permanent_id:
          type: string
          title: Workflow Permanent Id
        recipe:
          type: string
          enum:
            - apply
            - extract
          title: Recipe
        status:
          type: string
          title: Status
        created_at:
          type: string
          format: date-time
          title: Created At
        job_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Job Url
        failure_reason:
          anyOf:
            - type: string
            - type: 'null'
          title: Failure Reason
      additionalProperties: false
      type: object
      required:
        - workflow_run_id
        - workflow_permanent_id
        - recipe
        - status
        - created_at
        - job_url
        - failure_reason
      title: JobRecipeRunSummary

````