Echo-bloom-dev API 관리
  1. custom-sentence-controller
Echo-bloom-dev API 관리
  • v1 EndPoint(북마크, 커스텀 기능 만들기 전)
    • category-controller
      • getCategory
      • updateCategory
      • deleteCategory
      • getCategoryList
      • createCategory
    • affirmation-controller
      • createToneExamples
      • getMainAffirmation
    • Auth
      • kakaoCallback
      • checkAuth
    • user-controller
      • getUserTones
      • updateUserTones
      • updateUserCategories
      • updateUserProblems
      • getCurrentUserInfo
      • getUserCategories
      • withdrawUser
    • test-auth-controller
      • createTestUser
    • auth-controller
      • logout
      • getKakaoLoginUrl
    • speech-controller
      • recognizeSpeech
      • compareSpeech
      • getUserSpeechLogs
    • bookmark-controller
      • addBookmark
      • getUserBookmarks
      • isBookmarked
      • removeBookmark
    • api-controller
      • checkAuth
    • (로컬에서만 사용 가능)Apidog API 문서화 자동화를 위한 openAPI 엔드포인트
      GET
    • Schemas
      • Schemas
        • ToneUpdateRequestDto
        • CategoryRequestDto
        • CategoryResponseDto
        • ToneExampleResponseDto
        • UserCategoryRequestDto
        • SpeechRecognitionResponseDto
        • MainAffirmationResponseDto
        • DifferenceDetail
        • BookmarkResponseDto
        • SpeechCompareResponseDto
        • ToneExampleRequestDto
        • BookmarkRequestDto
        • BookmarkEntity
        • AffirmationLogEntity
  • EchoBloom API definition for v1.1.0
    • custom-sentence-controller
      • getCustomSentence
        GET
      • updateCustomSentence
        PUT
      • deleteCustomSentence
        DELETE
      • getUserCustomSentences
        GET
      • addCustomSentence
        POST
    • user-controller
      • getUserTones
      • updateUserTones
      • updateUserProblems
      • getCurrentUserInfo
      • getUserCategories
      • withdrawUser
    • test-auth-controller
      • createTestUser
    • auth-controller
      • logout
      • getKakaoLoginUrl
      • kakaoCallback
    • speech-controller
      • recognizeSpeech
    • bookmark-controller
      • addBookmark
      • getUserBookmarks
      • isBookmarked
      • removeBookmark
    • affirmation-controller
      • createToneExamples
      • getMainAffirmation
    • api-controller
      • checkAuth
    • Schemas
      • Schemas
        • CustomSentenceRequestDto
        • CustomSentenceResponseDto
        • ToneUpdateRequestDto
        • MainAffirmationResponseDto
        • UserCategoryRequestDto
        • SpeechRecognitionResponseDto
        • BookmarkRequestDto
        • BookmarkResponseDto
        • ToneExampleRequestDto
        • ToneExampleResponseDto
        • CategorySelectionDto
        • MyPageCategoryResponseDto
  1. custom-sentence-controller

getCustomSentence

GET
/api/v1/custom-sentences/{id}
home.html에서 특정 커스텀 문장 조회할 수 있는 엔드포인트입니다.

Request

Path Params

Responses

🟢200OK
*/*
OK
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/custom-sentences/'
Response Response Example
{
    "id": 0,
    "sentence": "string",
    "createdAt": "2019-08-24T14:15:22Z"
}
Modified at 2025-10-11 11:40:32
Previous
AffirmationLogEntity
Next
updateCustomSentence
Built with