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

# Estimates Report (deprecated)

> Legacy export of team estimates, returned as JSON. Requires admin access. Kept for backward compatibility; new integrations should use the dashboard reports.



## OpenAPI

````yaml /openapi.json get /team/estimate/export
openapi: 3.1.1
info:
  title: Everhour API
  version: 1.0.0
  license:
    name: Proprietary
    identifier: LicenseRef-Proprietary
servers:
  - url: https://api.everhour.com
security:
  - ApiKeyAuth: []
tags:
  - name: Clients
  - name: Custom Fields
  - name: Expenses
  - name: Invoices
  - name: Projects
  - name: Reports
  - name: Schedule
  - name: Tasks
  - name: Time Off
  - name: Time Records
  - name: Timecards
  - name: Timers
  - name: Timesheets
  - name: Users
  - name: Webhooks
paths:
  /team/estimate/export:
    get:
      tags:
        - Reports
      summary: Estimates Report (deprecated)
      description: >-
        Legacy export of team estimates, returned as JSON. Requires admin
        access. Kept for backward compatibility; new integrations should use the
        dashboard reports.
      operationId: estimatesReportDeprecated
      parameters:
        - name: dueFrom
          in: query
          required: false
          description: Task due date from you what to fetch estimates (format YYYY-MM-DD)
          schema:
            type: string
            example: '2018-01-01'
        - name: dueTo
          in: query
          required: false
          description: Task due date to you what to fetch estimates (format YYYY-MM-DD)
          schema:
            type: string
            example: '2018-01-31'
        - name: status
          in: query
          required: false
          description: Task status (e.g. open or completed)
          schema:
            type: string
            example: open
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/EstimateExportObject'
        '401':
          description: Unauthorized
components:
  schemas:
    EstimateExportObject:
      type: object
      properties:
        time:
          $ref: '#/components/schemas/TaskTime'
        estimate:
          $ref: '#/components/schemas/TaskEstimate'
        project:
          type: object
          description: Will appear only if 'project' passed to fields parameter
          properties:
            id:
              type: string
              example: ev:9876543210
            name:
              type: string
              example: Project Name
            workspace:
              type: string
              example: Project Workspace Name
        task:
          type: object
          description: Will appear only if 'task' passed to fields parameter
          properties:
            id:
              type: string
              example: ev:1234567890
            name:
              type: string
              example: Task Name
            status:
              type: string
              example: open
            type:
              type: string
              example: task
            iteration:
              type: string
              example: Iteration/column/section name
            number:
              type: number
              example: 123
            dueAt:
              type: string
              example: '2018-01-20'
    TaskTime:
      type: object
      properties:
        total:
          type: number
          description: Total task time in seconds
          example: 7200
        users:
          type: object
          description: Task time per user ID
          additionalProperties:
            type: number
          example:
            '1304': 3600
            '1543': 3600
      required:
        - total
        - users
    TaskEstimate:
      type: object
      properties:
        total:
          type: number
          description: Total task estimate in seconds
          example: 7200
        type:
          type: string
          enum:
            - overall
            - users
          example: overall
        users:
          type: object
          description: Task estimate per user ID
          additionalProperties:
            type: number
          example:
            '1304': 3600
            '1543': 3600
      required:
        - total
        - type
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Api-Key

````