WinCL Admin Auth API

Admin Auth Controller

Operations 3

POST /bapi/v1/auth/clear-firebase-claim 어드민 계정 로그인 #
POST /bapi/v1/auth/forgot-password 비밀번호 초기화 요청 #
POST /bapi/v1/auth/signin 어드민 계정 로그인 #

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-admin-auth-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-admin-auth-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Wincl Admin Admin Auth API
  version: '1.0'
  description: Admin Controller
servers:
- url: https://api.wincl.io:443
  description: Inferred Url
tags:
- name: Admin Auth
  description: Admin Auth Controller
paths:
  /bapi/v1/auth/clear-firebase-claim:
    post:
      tags:
      - Admin Auth
      summary: 어드민 계정 로그인
      operationId: passwordResetUsingPOST
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SignInAdminRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WinclResponse'
        '201':
          description: Created
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      security:
      - Bearer 토큰 값:
        - global
  /bapi/v1/auth/forgot-password:
    post:
      tags:
      - Admin Auth
      summary: 비밀번호 초기화 요청
      description: 이메일로 임시 비밀번호를 발송합니다.
      operationId: requestForgotPasswordUsingPOST
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SignInAdminRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WinclResponse'
        '201':
          description: Created
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      security:
      - Bearer 토큰 값:
        - global
  /bapi/v1/auth/signin:
    post:
      tags:
      - Admin Auth
      summary: 어드민 계정 로그인
      operationId: signInUsingPOST
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SignInAdminRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WinclResponseData_SignInAdminResponse'
        '201':
          description: Created
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      security:
      - Bearer 토큰 값:
        - global
components:
  schemas:
    WinclResponse:
      title: WinclResponse
      type: object
      properties:
        code:
          type: string
        message:
          type: string
    WinclResponseData_SignInAdminResponse:
      title: WinclResponseData«SignInAdminResponse»
      type: object
      properties:
        code:
          type: string
        data:
          $ref: '#/components/schemas/SignInAdminResponse'
        message:
          type: string
    SignInAdminResponse:
      title: SignInAdminResponse
      type: object
      properties:
        access_token:
          type: string
          description: Access Token
        refresh_token:
          type: string
          description: Refresh Token
        token_type:
          type: string
          description: jwt 토큰 타입
    SignInAdminRequest:
      title: SignInAdminRequest
      type: object
      properties:
        google_id_token:
          type: string
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer
      bearerFormat: JWT