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

# Return time dashboard data



## OpenAPI

````yaml /api-reference/tempo.yaml get /v2/time-clock/dashboard
openapi: 3.0.0
info:
  title: Tarefy API
  description: >-
    Tarefy REST API — task management, culture and performance platform.


    Endpoints are versioned at `/v2/...`. Authentication via Bearer JWT in the
    `Authorization` header.


    To get started, see the [authentication guide](/authentication) and the
    [quickstart](/quickstart).
  version: 2.0.0
  contact:
    name: Tarefy Support
    email: suporte@tarefy.com
    url: https://tarefy.com
  license:
    name: Proprietary
    url: https://tarefy.com
servers:
  - url: https://app.tarefy.com/nodeapi
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Time Clock
    description: Electronic time — work record
  - name: Time Clock Justifys
    description: Time justifications
  - name: Time Bank
    description: Time bank
  - name: Off Time
    description: Days off and absences
  - name: Vacations
    description: Vacation — granting and management
paths:
  /v2/time-clock/dashboard:
    get:
      tags:
        - Time Clock
      summary: Return time dashboard data
      responses:
        '200':
          description: Dashboard retornado com sucesso
          content:
            application/json:
              schema:
                type: object
                properties:
                  clockAvailability:
                    type: object
                    properties:
                      is_enabled:
                        type: boolean
                      has_work_schedule:
                        type: boolean
                      geolocation_required:
                        type: boolean
                        description: >-
                          True quando a geofence está ativa, o usuário não é
                          isento e o dia atual é presencial.
                      is_presential_day:
                        type: boolean
                        description: >-
                          Resultado da regra empresa/colaborador para o dia
                          atual.
                      geofence_block_outside_radius:
                        type: boolean
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````