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

# Request a Render response for a nesting Result

> This endpoint requires calling with your ApiKey <br /><b>RequestId</b><br /> <br /> RequestId to get result from<br /><b>ResultIdentity</b> <br /> ResultId for the result you wish to fetch<br />



## OpenAPI

````yaml /openapi.json get /v1/nesting/render/
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/render/:
    parameters:
      - $ref: '#/components/parameters/Accept'
    get:
      tags:
        - nesting
      summary: Request a Render response for a nesting Result
      description: >-
        This endpoint requires calling with your ApiKey <br
        /><b>RequestId</b><br /> <br /> RequestId to get result from<br
        /><b>ResultIdentity</b> <br /> ResultId for the result you wish to
        fetch<br />
      operationId: FetchNestingRender
      parameters:
        - name: RequestId
          in: query
          x-nullable: false
          schema:
            type: string
        - name: ResultIdentity
          in: query
          x-nullable: false
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RenderResponse'
      deprecated: false
      security:
        - Bearer: []
components:
  parameters:
    Accept:
      name: Accept
      in: header
      description: Accept Header
      required: true
      schema:
        type: string
        enum:
          - application/json
  schemas:
    RenderResponse:
      title: RenderResponse
      properties:
        Base64EncodedRendering:
          type: string
        RenderFormat:
          type: string
        ResultIdentity:
          type: string
          nullable: false
        xDimension:
          type: string
        yDimension:
          type: string
      description: RenderResponse
      type: object
  securitySchemes:
    Bearer:
      type: apiKey
      name: Authorization
      in: header

````