> ## 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 nests that have been failed in the last 24 hours

> Fetch nests that have been failed in the last 24 hours



## OpenAPI

````yaml /openapi.json get /v1/nesting/failures
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/failures:
    parameters:
      - $ref: '#/components/parameters/Accept'
    get:
      tags:
        - nesting
      summary: Fetch nests that have been failed in the last 24 hours
      description: Fetch nests that have been failed in the last 24 hours
      operationId: FailingNestsRequest
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                title: List<FailedNest>
                type: array
                items:
                  $ref: '#/components/schemas/FailedNest'
      deprecated: false
      security:
        - Bearer: []
components:
  parameters:
    Accept:
      name: Accept
      in: header
      description: Accept Header
      required: true
      schema:
        type: string
        enum:
          - application/json
  schemas:
    FailedNest:
      title: FailedNest
      properties:
        Id:
          type: string
          nullable: false
        NestApiKeyId:
          type: string
        NestingTime:
          type: integer
          format: int32
          nullable: false
        CreatedDate:
          type: string
          format: date-time
          nullable: false
        ErrorDate:
          type: string
          format: date-time
        NumberOfParts:
          type: integer
          format: int64
          nullable: false
        NumberOfNests:
          type: integer
          format: int64
          nullable: false
        ErrorReason:
          type: string
      description: FailedNest
      type: object
  securitySchemes:
    Bearer:
      type: apiKey
      name: Authorization
      in: header

````