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

# Obtener etiquetas paginadas

> Recuperar una lista paginada de etiquetas con filtrado y ordenamiento opcional



## OpenAPI

````yaml get /tag
openapi: 3.0.0
info:
  version: 1.0.0
  title: Fint API
  description: Fint API
servers:
  - url: https://api.fint.app/api/v1
    variables: {}
security: []
paths:
  /tag:
    get:
      tags:
        - Etiquetas
      summary: Obtener etiquetas paginadas
      description: >-
        Recuperar una lista paginada de etiquetas con filtrado y ordenamiento
        opcional
      parameters:
        - schema:
            type: string
          required: false
          name: search
          in: query
        - schema:
            type: number
            nullable: true
            default: 0
          required: false
          name: page
          in: query
        - schema:
            type: number
            minimum: 0
            exclusiveMinimum: true
            default: 500
          required: false
          name: limit
          in: query
      responses:
        '200':
          description: Etiquetas recuperadas exitosamente
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: number
                        name:
                          type: string
                        color:
                          type: string
                          nullable: true
                        icon:
                          type: string
                          nullable: true
                        group:
                          type: boolean
                        contacts:
                          type: number
                          nullable: true
                        children:
                          type: array
                          items:
                            type: object
                            properties:
                              id:
                                type: number
                              name:
                                type: string
                              color:
                                type: string
                                nullable: true
                              icon:
                                type: string
                                nullable: true
                              contacts:
                                type: number
                            required:
                              - id
                              - name
                              - color
                              - icon
                              - contacts
                      required:
                        - id
                        - name
                        - color
                        - icon
                        - group
                        - contacts
                        - children
                  total:
                    type: number
                  totalPages:
                    type: number
                  currentPage:
                    type: number
                  limit:
                    type: number
                  hasNextPage:
                    type: boolean
                  hasPreviousPage:
                    type: boolean
                required:
                  - data
                  - total
                  - totalPages
                  - currentPage
                  - limit
                  - hasNextPage
                  - hasPreviousPage
        '400':
          description: Parámetros de consulta inválidos
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                  errors:
                    type: array
                    items:
                      type: string
                required:
                  - message
                  - errors
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````