WinCL Dashboard API

Dashboard Controller

Operations 1

GET /api/v1/dashboard/transactionCards 대쉬보드 내역 모음 #

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-dashboard-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-dashboard-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Wincl Admin Dashboard API
  version: '1.0'
  description: Admin Controller
servers:
- url: https://api.wincl.io:443
  description: Inferred Url
tags:
- name: Dashboard
  description: Dashboard Controller
paths:
  /api/v1/dashboard/transactionCards:
    get:
      tags:
      - Dashboard
      summary: 대쉬보드 내역 모음
      operationId: listTransactionCardsUsingGET
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WinclResponseDataList_TransactionCard'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      security:
      - Bearer 토큰 값:
        - global
components:
  schemas:
    TransactionCard:
      title: TransactionCard
      type: object
      properties:
        cardName:
          type: string
          description: 카드 이름
        currency:
          type: string
          description: 통화
          enum:
          - KRW
          - USD
        recentTransactions:
          type: array
          description: 최근 트랜잭션들
          items:
            $ref: '#/components/schemas/Transaction'
        totalAmount:
          type: number
          description: 총 수량 (톤)
          format: bigdecimal
        totalPrice:
          type: number
          description: 총 가격
          format: bigdecimal
    WinclResponseDataList_TransactionCard:
      title: WinclResponseDataList«TransactionCard»
      type: object
      properties:
        code:
          type: string
        currentPageNum:
          type: integer
          description: 현재 페이지 번호
          format: int32
        items:
          type: array
          items:
            $ref: '#/components/schemas/TransactionCard'
        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
    Transaction:
      title: Transaction
      type: object
      properties:
        amount:
          type: number
          format: bigdecimal
        productName:
          type: string
        timestamp:
          type: integer
          format: int64
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer
      bearerFormat: JWT