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

# Retrieve a list of QR Codes

> Retrieve a list of QR Codes for the authenticated workspace.



## OpenAPI

````yaml GET /workspaces/{url}/qrcodes
openapi: 3.0.0
info:
  title: Reqlick API
  version: 1.0.0
  description: Reqlick API Documentation
servers:
  - url: https://api.reqlick.com
security:
  - bearerAuth: []
tags:
  - name: Documents
    description: Documents management
  - name: Domains
    description: Domains management
  - name: GoogleAuth
    description: Google Authentication
  - name: Links
    description: Links management
  - name: Payments
    description: Payments management
  - name: QRCodes
    description: QR Codes management
  - name: Resources
    description: Resources management
  - name: Subscriptions
    description: Subscription management
  - name: Users
    description: User management and authentication
  - name: Workspaces
    description: Workspaces management
paths:
  /workspaces/{url}/qrcodes:
    get:
      tags:
        - Workspaces
      summary: Get workspace QR Codes
      parameters:
        - in: path
          name: url
          required: true
          schema:
            type: string
          description: Workspace URL
      responses:
        '200':
          description: Successfully retrieved QR Codes
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                      description: Link ID
                      example: 1110580a82031111aaa01111
                    documentId:
                      type: string
                      nullable: true
                      description: Document ID
                    url:
                      type: string
                      description: Link URL
                      example: https://reqlick.com
                    key:
                      type: string
                      description: Link key
                      example: qD0ToTl
                    expiresAt:
                      type: string
                      nullable: true
                      description: Expiration date
                    password:
                      type: string
                      nullable: true
                      description: Password protection
                    proxy:
                      type: boolean
                      description: Proxy status
                      example: false
                    isFile:
                      type: boolean
                      description: File status
                      example: false
                    isQR:
                      type: boolean
                      description: QR code status
                      example: true
                    title:
                      type: string
                      description: Link title
                      example: URL Shortener, QR Codes, and File to Link | Reqlick
                    description:
                      type: string
                      description: Link description
                      example: >-
                        Reqlick is more than a free URL shortener built-in
                        analytics with custom domains, advanced QR Code
                        features, and a File to Link solution
                    image:
                      type: string
                      description: Link image URL
                      example: https://reqlick.com/_static/thumbnail.png
                    allowedEmails:
                      type: array
                      items:
                        type: string
                      description: List of allowed emails
                    createdAt:
                      type: string
                      format: date-time
                      description: Creation date
                      example: '2024-07-03T16:42:26.468Z'
                    updatedAt:
                      type: string
                      format: date-time
                      description: Last update date
                      example: '2024-07-03T16:42:26.468Z'
                    projectId:
                      type: string
                      description: Workspace ID
                      example: 1110580a82031111aaa01111
                    isPublic:
                      type: boolean
                      description: Public status
                      example: true
                    isActive:
                      type: boolean
                      description: Active status
                      example: true
                    isArchived:
                      type: boolean
                      description: Archived status
                      example: false
                    isRecord:
                      type: boolean
                      description: Record status
                      example: false
                    domain:
                      type: string
                      description: Domain
                      example: rqk.sh
                    utm_source:
                      type: string
                      nullable: true
                      description: UTM source
                    utm_medium:
                      type: string
                      nullable: true
                      description: UTM medium
                    utm_campaign:
                      type: string
                      nullable: true
                      description: UTM campaign
                    utm_term:
                      type: string
                      nullable: true
                      description: UTM term
                    utm_content:
                      type: string
                      nullable: true
                      description: UTM content
                    ref:
                      type: string
                      nullable: true
                      description: Reference
                    ios:
                      type: string
                      nullable: true
                      description: iOS data
                    android:
                      type: string
                      nullable: true
                      description: Android data
                    tagId:
                      type: string
                      nullable: true
                      description: Tag ID
                    createdSessionId:
                      type: string
                      nullable: true
                      description: Created session ID
                    _count:
                      type: object
                      properties:
                        views:
                          type: integer
                          description: Number of views
                          example: 7
                    qrcode:
                      type: array
                      items:
                        type: object
                        properties:
                          id:
                            type: string
                            description: QR code ID
                            example: 1110580a82031111aaa01111
                          image:
                            type: string
                            description: QR code image in base64
                            example: data:image/png;base64....
                          bgColor:
                            type: string
                            description: Background color
                            example: '#ffffff'
                          fgColor:
                            type: string
                            description: Foreground color
                            example: '#000000'
                          level:
                            type: string
                            description: Error correction level
                            example: Q
                          size:
                            type: integer
                            description: QR code size
                            example: 1024
                          url:
                            type: string
                            description: QR code URL
                            example: https://reqlick.com
                          image_src:
                            type: string
                            description: QR code image source
                          image_excavate:
                            type: boolean
                            description: Image excavation status
                            example: true
                          image_height:
                            type: integer
                            description: Image height
                            example: 256
                          image_width:
                            type: integer
                            description: Image width
                            example: 256
                          projectId:
                            type: string
                            description: Workspace ID
                            example: 1110580a82031111aaa01111
                          createdAt:
                            type: string
                            format: date-time
                            description: Creation date
                            example: '2024-07-03T16:42:24.940Z'
                          updatedAt:
                            type: string
                            format: date-time
                            description: Last update date
                            example: '2024-07-03T16:42:26.468Z'
                          linkId:
                            type: string
                            description: Link ID
                            example: 1110580a82031111aaa01111
                    createdBy:
                      type: object
                      properties:
                        name:
                          type: string
                          description: Creator's name
                        image:
                          type: string
                          description: Creator's image URL
                          example: https://example.com/image.png
                        id:
                          type: string
                          description: Creator's ID
                          example: 1110580a82031111aaa01111
        '401':
          description: Authentication Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Authentication Error
                  feedback:
                    type: string
                    example: You are unauthenticated!
        '500':
          description: Internal server error
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````