> ## 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 Own Styles(내 소유 스타일들 조회)



## OpenAPI

````yaml https://beta.flamel.app/api-json get /api/users/me/styles
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/styles:
    get:
      tags:
        - users
      summary: Get My Own Styles(내 소유 스타일들 조회)
      operationId: UsersApiController_getMyStyles
      parameters: []
      responses:
        '200':
          description: 성공
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/StyleResponseDto'
        '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: 로그인 하지 않음(not_logged_in)
      security:
        - connect.sid: []
        - apiKey: []
components:
  schemas:
    StyleResponseDto:
      type: object
      properties:
        styleId:
          type: number
          description: 아이디
          example: 1
        createdAt:
          format: date-time
          type: string
          description: 생성 일시
        super:
          type: string
          description: 대분류코드
          example: STL
        main:
          type: string
          description: 중분류코드
          example: DIG
        apiEnabled:
          type: boolean
          description: api 사용가능여부
          example: false
        thumbLink:
          type: string
          description: 썸네일 링크
          example: /api/images/30444/binary
        creditCost:
          type: number
          description: 생성 크레딧 차감량
          example: 1
        mainText:
          type: string
          description: 번역된 텍스트
      required:
        - styleId
        - createdAt
        - super
        - main
        - apiEnabled
        - creditCost
        - mainText
  securitySchemes:
    apiKey:
      type: apiKey
      name: X-Api-Key
      in: header

````