> ## 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 Usage Information(내 사용량 정보 조회)



## OpenAPI

````yaml https://beta.flamel.app/api-json get /api/users/me/usage
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/usage:
    get:
      tags:
        - users
      summary: Get My Usage Information(내 사용량 정보 조회)
      operationId: UsersApiController_getMyUsage
      parameters: []
      responses:
        '200':
          description: Usage Related Information(사용량 관련 정보)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UsageInfoDto'
        '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:
  schemas:
    UsageInfoDto:
      type: object
      properties:
        currentCredit:
          type: number
          description: Current Credit(현재 크레딧)
        additionalCredit:
          type: number
          description: Additional Purchase Credit(추가 구매 크레딧)
        maxCredit:
          type: number
          description: Maximum Credit(최대 크레딧)
        period:
          type: string
          description: Plan Period(플랜 기간)
        ttpCount:
          type: number
          description: TTP Usage(TTP 사용량)
        maxTtpCount:
          type: number
          description: Maximum TTP Usage(TTP 최대 사용량)
          nullable: true
        editCount:
          type: number
          description: Edit Usage(Edit 사용량)
        maxEditCount:
          type: number
          description: Maximum Edit Usage(Edit 최대 사용량)
          nullable: true
        postpaidUsageCount:
          type: number
          description: Postpaid Usage Count(후청구 사용 개수) - 엔터프라이즈 후청구 계정만
          nullable: true
      required:
        - currentCredit
        - additionalCredit
        - maxCredit
        - period
        - ttpCount
        - maxTtpCount
        - editCount
        - maxEditCount
  securitySchemes:
    apiKey:
      type: apiKey
      name: X-Api-Key
      in: header

````