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

# 1D Nesting Result

> This endpoint requires calling with your ApiKey <br />Available once <b>/nesting/status</b> reports Completed for the RequestId. The plan is in <b>Result</b> with <b>Status</b> Success; a nest that ran but produced nothing reports Status Failure and a <b>StatusReport</b>.



## OpenAPI

````yaml /openapi.json post /v1/nesting/1D/result
openapi: 3.0.0
info:
  title: NestAPI
  version: '1.0'
servers:
  - description: Production
    url: https://api.nestapi.com
security: []
tags:
  - name: account
    description: API key and account management
  - name: admin
  - name: ApiAdmin
  - name: auth
  - name: billing
  - name: fairness
    description: >-
      Per-customer nesting-minutes fairness config, weights and usage (requires
      an Admin API key)
  - name: importer
  - name: nesting
    description: Submit nesting jobs, retrieve results and exports
  - name: plan
  - name: proxy
  - name: public
    description: Health check and public utility endpoints
  - name: subscriptionstatus
paths:
  /v1/nesting/1D/result:
    parameters:
      - $ref: '#/components/parameters/Accept'
    post:
      tags:
        - nesting
      summary: 1D Nesting Result
      description: >-
        This endpoint requires calling with your ApiKey <br />Available once
        <b>/nesting/status</b> reports Completed for the RequestId. The plan is
        in <b>Result</b> with <b>Status</b> Success; a nest that ran but
        produced nothing reports Status Failure and a <b>StatusReport</b>.
      operationId: FetchNesting1DResult
      parameters:
        - name: RequestId
          in: query
          x-nullable: false
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FetchNesting1DResult'
      responses:
        '200':
          description: The cutting plan, or the reason the nest produced none.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Nesting1DApiResponse'
        '401':
          description: API key is missing or invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Nesting1DApiResponse'
      deprecated: false
      security:
        - Bearer: []
components:
  parameters:
    Accept:
      name: Accept
      in: header
      description: Accept Header
      required: true
      schema:
        type: string
        enum:
          - application/json
  schemas:
    FetchNesting1DResult:
      title: FetchNesting1DResult
      properties:
        RequestId:
          type: string
          nullable: false
      description: Fetch the cutting plan for a completed 1D nesting request.
      type: object
    Nesting1DApiResponse:
      title: Nesting1DApiResponse
      properties:
        Status:
          type: string
        StatusReport:
          type: string
        Result:
          $ref: '#/components/schemas/Nesting1DResult'
        ResponseStatus:
          $ref: '#/components/schemas/ResponseStatus'
      description: Nesting1DApiResponse
      type: object
    Nesting1DResult:
      title: Nesting1DResult
      properties:
        NumberOfUniqueNests:
          type: integer
          format: int32
          nullable: false
        Nests:
          type: array
          items:
            $ref: '#/components/schemas/Nesting1DNest'
      description: Nesting1DResult
      type: object
    ResponseStatus:
      title: ResponseStatus
      properties:
        ErrorCode:
          type: string
        Message:
          type: string
        StackTrace:
          type: string
        Errors:
          type: array
          items:
            $ref: '#/components/schemas/ResponseError'
        Meta:
          $ref: '#/components/schemas/Dictionary_String_String_'
      description: ResponseStatus
      type: object
    Nesting1DNest:
      title: Nesting1DNest
      properties:
        Multiplicity:
          type: integer
          format: int32
          nullable: false
        PlacedLengths:
          type: array
          items:
            $ref: '#/components/schemas/Nesting1DPlacedLength'
      description: Nesting1DNest
      type: object
    ResponseError:
      title: ResponseError
      properties:
        ErrorCode:
          type: string
        FieldName:
          type: string
        Message:
          type: string
        Meta:
          $ref: '#/components/schemas/Dictionary_String_String_'
      description: ResponseError
      type: object
    Dictionary_String_String_:
      title: Dictionary<String,String>
      additionalProperties:
        type: string
      description: Dictionary<String,String>
      type: object
    Nesting1DPlacedLength:
      title: Nesting1DPlacedLength
      properties:
        Quantity:
          type: integer
          format: int32
          nullable: false
        Length:
          type: number
          format: double
          nullable: false
        PlacedX:
          type: number
          format: double
          nullable: false
      description: Nesting1DPlacedLength
      type: object
  securitySchemes:
    Bearer:
      type: apiKey
      name: Authorization
      in: header

````