Stock101 API 명세서
  1. Predictions
Stock101 API 명세서
  • Stock101 API 명세서
  • Auth
    • 로그아웃
      POST
    • 로그인
      POST
  • Users
    • 사용자 정보 조회
      GET
    • 아이디(이메일) 중복체크
      GET
    • 회원가입
      POST
    • 사용자 정보 수정
      PATCH
    • 회원탈퇴
      DELETE
  • Stocks
    • 주식 전체 조회
      GET
    • 주식 상세 조회
      GET
  • Board
    • 게시물 추가
      POST
    • 게시물 단건 조회
      GET
    • 게시물 삭제
      DELETE
    • 사용자 활동 내역 - 작성글 조회
      GET
    • [종목 페이지] 게시물 목록 조회
      GET
    • 나의 게시물 목록 조회
      GET
  • Likes
    • 게시물 좋아요
      POST
  • Comments
    • 댓글 조회
      GET
    • 댓글 추가
      POST
    • 댓글 삭제
      DELETE
  • Predictions
    • 주가 예측 생성
      POST
    • 주가 예측 조회
      GET
  • Indicators
    • 개미지표 조회
    • 뉴스지표 조회
    • 전문가지표 조회
  • 재무지표 조회
    GET
  • Schemas
    • Schemas
      • TierCode
      • UpDownEnum
      • ErrorResponse
      • ValidationError
      • UserProfile
      • AuthLoginResponse
      • StockSummary
      • StockPricePoint
      • FinancialIndicator
      • EconomicEvent
      • AnalystIndicator
      • IndividualIndicator
      • NewsIndicator
      • Post
      • Comment
      • PredictionResult
      • PredictionItem
      • PredictionPagedResponse
  1. Predictions

주가 예측 조회

Developing
GET
/api/v1/prediction

Request

Header Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/prediction' \
--header 'Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwidXNlcklkIjoxLCJyb2xlcyI6WyJBRE1JTiJdLCJqdGkiOiI0MTdiMDk4ODcxMDkiLCJpc3MiOiJodHRwczovL2FjY291bnRzLmJleW9uZC5jb20iLCJpYXQiOjE3NTg0NTcyNjcsImV4cCI6MTc1ODQ1OTA2N30.YCeHd5CB70XxatlQRZvFovg3UOUSeq5yDEkAzop_u98'
Response Response Example
{"items":[{"predictionId":1,"userId":1,"stockId":1001,"predictedAt":"2025-09-21T00:00:00","prediction":"UP","evaluatedAt":null,"actualPrice":null,"result":null},{"predictionId":2,"userId":1,"stockId":1001,"predictedAt":"2025-09-21T21:32:50","prediction":"UP","evaluatedAt":null,"actualPrice":null,"result":null},{"predictionId":3,"userId":1,"stockId":1001,"predictedAt":"2025-09-21T21:39:36","prediction":"UP","evaluatedAt":null,"actualPrice":null,"result":null},{"predictionId":4,"userId":1,"stockId":1001,"predictedAt":"2025-09-21T21:39:38","prediction":"UP","evaluatedAt":null,"actualPrice":null,"result":null},{"predictionId":5,"userId":1,"stockId":1002,"predictedAt":"2025-09-21T21:39:52","prediction":"UP","evaluatedAt":null,"actualPrice":null,"result":null},{"predictionId":6,"userId":1,"stockId":1003,"predictedAt":"2025-09-21T21:40:08","prediction":"DOWN","evaluatedAt":null,"actualPrice":null,"result":null},{"predictionId":7,"userId":1,"stockId":1004,"predictedAt":"2025-09-21T21:40:52","prediction":"DOWN","evaluatedAt":null,"actualPrice":null,"result":null}],"totalCount":7,"code":200,"message":"OK","numOfRows":7}
Modified at 2025-09-21 12:43:15
Previous
주가 예측 생성
Next
개미지표 조회
Built with