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

# Get Projection

> Return a deterministic, class-stratified sample of the two-dimensional model-embedding projection persisted for a completed prediction job.



## OpenAPI

````yaml /openapi.json get /jobs/{job_id}/projection
openapi: 3.1.0
info:
  title: Woodwide API
  description: API service for the Woodwide platform
  version: 0.1.0
servers:
  - url: https://api.woodwide.ai
    description: Production
security: []
paths:
  /jobs/{job_id}/projection:
    get:
      tags:
        - Jobs
      summary: Get Projection
      description: >-
        Return a deterministic, class-stratified sample of the two-dimensional
        model-embedding projection persisted for a completed prediction job.
      operationId: get_job_projection_jobs__job_id__projection_get
      parameters:
        - name: job_id
          in: path
          required: true
          schema:
            type: string
            title: Job Id
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 5000
            minimum: 1
            default: 2500
            title: Limit
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JobProjectionResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    JobProjectionResponse:
      properties:
        job_id:
          type: string
          title: Job Id
        method:
          type: string
          const: pca-2d
          title: Method
          default: pca-2d
        total_points:
          type: integer
          title: Total Points
        sampled:
          type: boolean
          title: Sampled
        points:
          items:
            $ref: '#/components/schemas/JobProjectionPoint'
          type: array
          title: Points
      type: object
      required:
        - job_id
        - total_points
        - sampled
        - points
      title: JobProjectionResponse
      description: A deterministic sample of a prediction job's model embedding projection.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    JobProjectionPoint:
      properties:
        id:
          type: string
          title: Id
        x:
          type: number
          title: X
        'y':
          type: number
          title: 'Y'
        label:
          type: string
          title: Label
      type: object
      required:
        - id
        - x
        - 'y'
        - label
      title: JobProjectionPoint
      description: One point in a persisted two-dimensional inference projection.
    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:
    HTTPBearer:
      type: http
      scheme: bearer

````