> ## 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.

# Extract a job application posting

> Start a workflow run that extracts structured details from a job posting.



## OpenAPI

````yaml /api-reference/openapi.json post /v1/recipes/jobs/extract
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/extract:
    post:
      tags:
        - Runs
      summary: Extract a job application posting
      description: >-
        Start a workflow run that extracts structured details from a job
        posting.
      operationId: extract_job_application_v1_recipes_jobs_extract_post
      requestBody:
        content:
          application/json:
            schema:
              properties:
                job_url:
                  type: string
                  format: uri
                  title: Job Url
              additionalProperties: false
              type: object
              required:
                - job_url
              title: JobRecipeExtractRequest
        required: true
      responses:
        '200':
          description: Successfully started job application extraction
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JobRecipeRunResponse'
        '402':
          description: Insufficient credits or required billing state
        '403':
          description: Unauthorized or insufficient organization permission
        '422':
          description: Invalid extract request
        '429':
          description: Workflow submission rate limit exceeded
        '500':
          description: Workflow launch failed
components:
  schemas:
    JobRecipeRunResponse:
      properties:
        workflow_run_id:
          type: string
          pattern: ^wr_
          title: Workflow Run Id
      additionalProperties: false
      type: object
      required:
        - workflow_run_id
      title: JobRecipeRunResponse

````