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

# Fetch a cached nesting export generated via SignalR result generation request

> Fetch a cached nesting export generated via SignalR result generation request



## OpenAPI

````yaml /openapi.json get /v1/nesting/export/cached
openapi: 3.0.0
info:
  title: NestAPI
  version: '1.0'
servers:
  - description: Staging
    url: https://dev.api.nestapi.com
security: []
tags:
  - name: account
    description: API key and account management
  - name: ApiAdmin
  - name: auth
  - 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: public
    description: Health check and public utility endpoints
paths:
  /v1/nesting/export/cached:
    parameters:
      - $ref: '#/components/parameters/Accept'
    get:
      tags:
        - nesting
      summary: >-
        Fetch a cached nesting export generated via SignalR result generation
        request
      description: >-
        Fetch a cached nesting export generated via SignalR result generation
        request
      operationId: FetchCachedNestingExport
      parameters:
        - name: RequestId
          in: query
          x-nullable: false
          schema:
            type: string
        - name: ResultId
          in: query
          x-nullable: false
          schema:
            type: string
        - name: ResponseType
          in: query
          x-nullable: false
          schema:
            type: string
            enum:
              - Result
              - Render
              - DXF
              - ReportSource
              - RemnantExport
              - Runtime
              - PartsExport
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CachedNestingExportResponse'
      deprecated: false
      security:
        - Bearer: []
components:
  parameters:
    Accept:
      name: Accept
      in: header
      description: Accept Header
      required: true
      schema:
        type: string
        enum:
          - application/json
  schemas:
    CachedNestingExportResponse:
      title: CachedNestingExportResponse
      properties:
        Ready:
          type: boolean
          nullable: false
        Error:
          type: string
        RequestId:
          type: string
          nullable: false
        ResultId:
          type: string
          nullable: false
        ResponseType:
          type: string
        PayloadJson:
          type: string
        CreatedUtc:
          type: string
          format: date-time
        ExpiresUtc:
          type: string
          format: date-time
      description: CachedNestingExportResponse
      type: object
  securitySchemes:
    Bearer:
      type: apiKey
      name: Authorization
      in: header

````