WinCL Ranking API

Rank Controller

Operations 3

GET /api/v1/rank/my/list 내 랭킹 리스트 #
GET /api/v1/rank/national/list 국가 랭킹 리스트 #
GET /api/v1/rank/personal/list 개인 랭킹 리스트 #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/wincl-ranking-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

wincl-ranking-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Wincl Admin Ranking API
  version: '1.0'
  description: Admin Controller
servers:
- url: https://api.wincl.io:443
  description: Inferred Url
tags:
- name: Ranking
  description: Rank Controller
paths:
  /api/v1/rank/my/list:
    get:
      tags:
      - Ranking
      summary: 내 랭킹 리스트
      operationId: myRankListUsingGET
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WinclResponseData_List_MyRank'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      security:
      - Bearer 토큰 값:
        - global
  /api/v1/rank/national/list:
    get:
      tags:
      - Ranking
      summary: 국가 랭킹 리스트
      operationId: nationalRankListUsingGET
      parameters:
      - name: period
        in: query
        description: 기간 주, 월
        required: false
        style: form
        schema:
          type: string
      - name: periodType
        in: query
        description: 기간 타입 (주간, 월간, 전체기간)
        required: false
        style: form
        schema:
          type: string
          enum:
          - ALL
          - MONTH
          - WEEK
      - name: pageSize
        in: query
        description: 페이지당 아이템 개수
        required: true
        style: form
        schema:
          type: integer
          format: int32
      - name: pageNum
        in: query
        description: 페이지 넘버
        required: true
        style: form
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WinclResponseDataList_NationalRank'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      security:
      - Bearer 토큰 값:
        - global
  /api/v1/rank/personal/list:
    get:
      tags:
      - Ranking
      summary: 개인 랭킹 리스트
      operationId: personalRankListUsingGET
      parameters:
      - name: searchKeyword
        in: query
        description: 검색 키워드
        required: false
        style: form
        schema:
          type: string
      - name: period
        in: query
        description: 기간 주, 월
        required: false
        style: form
        schema:
          type: string
      - name: periodType
        in: query
        description: 기간 타입 (주간, 월간, 전체기간)
        required: false
        style: form
        schema:
          type: string
          enum:
          - ALL
          - MONTH
          - WEEK
      - name: pageSize
        in: query
        description: 페이지당 아이템 개수
        required: true
        style: form
        schema:
          type: integer
          format: int32
      - name: pageNum
        in: query
        description: 페이지 넘버
        required: true
        style: form
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WinclResponseDataList_PersonalRank'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      security:
      - Bearer 토큰 값:
        - global
components:
  schemas:
    NationalRank:
      title: NationalRank
      type: object
      properties:
        cd_nation:
          type: string
          description: 국가 코드
        rank:
          type: integer
          description: 순위
          format: int32
        tot_amt_retire:
          type: number
          description: 포인트, 리타이어 총 수량
          format: bigdecimal
        tot_cnt_retire:
          type: number
          description: 리타이어 횟수
          format: bigdecimal
    WinclResponseDataList_NationalRank:
      title: WinclResponseDataList«NationalRank»
      type: object
      properties:
        code:
          type: string
        currentPageNum:
          type: integer
          description: 현재 페이지 번호
          format: int32
        items:
          type: array
          items:
            $ref: '#/components/schemas/NationalRank'
        message:
          type: string
        pageSize:
          type: integer
          description: 페이지당 아이템 개수
          format: int32
        sortType:
          type: string
          description: 정렬 기준
          enum:
          - AMOUNT_ASC
          - AMOUNT_DESC
          - ASC
          - DESC
          - NONE
          - PRICE_ASC
          - PRICE_DESC
          - UNIT_PRICE_ASC
          - UNIT_PRICE_DESC
        totalCount:
          type: integer
          description: 전체 아이템 개수
          format: int32
        totalPages:
          type: integer
          description: 전체 페이지 수
          format: int32
    WinclResponseDataList_PersonalRank:
      title: WinclResponseDataList«PersonalRank»
      type: object
      properties:
        code:
          type: string
        currentPageNum:
          type: integer
          description: 현재 페이지 번호
          format: int32
        items:
          type: array
          items:
            $ref: '#/components/schemas/PersonalRank'
        message:
          type: string
        pageSize:
          type: integer
          description: 페이지당 아이템 개수
          format: int32
        sortType:
          type: string
          description: 정렬 기준
          enum:
          - AMOUNT_ASC
          - AMOUNT_DESC
          - ASC
          - DESC
          - NONE
          - PRICE_ASC
          - PRICE_DESC
          - UNIT_PRICE_ASC
          - UNIT_PRICE_DESC
        totalCount:
          type: integer
          description: 전체 아이템 개수
          format: int32
        totalPages:
          type: integer
          description: 전체 페이지 수
          format: int32
    PersonalRank:
      title: PersonalRank
      type: object
      properties:
        cd_nation:
          type: string
          description: 유저 거주국가코드
        id_login:
          type: string
          description: 유저가 설정한 아이디
        image_url:
          type: string
          description: 사용자 아이콘 이미지 URL
        nickname:
          type: string
          description: 유저 닉네임
        rank:
          type: integer
          description: 순위
          format: int32
        tot_amt_retire:
          type: number
          description: 포인트, 리타이어 총 수량
          format: bigdecimal
    WinclResponseData_List_MyRank:
      title: WinclResponseData«List«MyRank»»
      type: object
      properties:
        code:
          type: string
        data:
          type: array
          items:
            $ref: '#/components/schemas/MyRank'
        message:
          type: string
    MyRank:
      title: MyRank
      type: object
      properties:
        amt:
          type: number
          description: 포인트
          format: bigdecimal
        cd_country:
          type: string
          description: 유저 거주국가코드
        cnt_retire:
          type: integer
          description: retire시킨 횟수
          format: int32
        image_url:
          type: string
          description: 사용자 아이콘 이미지 URL
        month:
          type: string
        rank:
          type: integer
          description: 순위
          format: int32
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer
      bearerFormat: JWT