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

# Get My Collection Count(내 컬렉션 개수 조회)



## OpenAPI

````yaml https://beta.flamel.app/api-json get /api/users/me/collectionCount
openapi: 3.0.0
info:
  title: Flamel API 문서
  description: REST API 문서입니다. 발급받은 API키를 X-Api-Key 헤더에 넣은 뒤 api를 사용하면 됩니다.
  version: '1.1'
  contact: {}
servers:
  - url: http://localhost:4010
    description: Local
  - url: https://beta.flamel.app
    description: Beta
security: []
tags:
  - name: Flamel
    description: ''
paths:
  /api/users/me/collectionCount:
    get:
      tags:
        - users
      summary: Get My Collection Count(내 컬렉션 개수 조회)
      operationId: UsersApiController_getCollectionCount
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: number
        '401':
          description: Unauthorized
          content:
            application/json:
              examples:
                InvalidApiKey:
                  summary: Invalid API KEY(API KEY 틀림)
                  value:
                    success: false
                    code: 401
                    data: wrong_api_key
                ApiKeyExpired:
                  summary: API KEY Expired(API KEY 만료)
                  value:
                    success: false
                    code: 401
                    data: api_key_expired
        '403':
          description: Forbidden
          content:
            application/json:
              examples:
                NotLoggedIn:
                  summary: Not Logged In(로그인되어있지 않음)
                  value:
                    success: false
                    code: 403
                    data: not_logged_in
      security:
        - connect.sid: []
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      name: X-Api-Key
      in: header

````