WinCL Hedera Contract Info API

Hedera Contract Controller

Operations 3

GET /api/v1/hedera/contracts 스마트 컨트랙트 정보 조회 #
GET /api/v1/hedera/holdings 프로젝트별 온체인 토큰 정보 조회 #
GET /api/v1/hedera/metadata/{tokenId} ERC-1155 토큰 메타데이터 (HashScan 등 외부 탐색기용) #

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-hedera-contract-info-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-hedera-contract-info-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Wincl Admin Hedera Contract Info API
  version: '1.0'
  description: Admin Controller
servers:
- url: https://api.wincl.io:443
  description: Inferred Url
tags:
- name: Hedera Contract Info
  description: Hedera Contract Controller
paths:
  /api/v1/hedera/contracts:
    get:
      tags:
      - Hedera Contract Info
      summary: 스마트 컨트랙트 정보 조회
      operationId: getContractsUsingGET
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/WinclResponseData_Map_string_object'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      security:
      - Bearer 토큰 값:
        - global
  /api/v1/hedera/holdings:
    get:
      tags:
      - Hedera Contract Info
      summary: 프로젝트별 온체인 토큰 정보 조회
      operationId: getHoldingsUsingGET
      parameters:
      - name: accountId
        in: query
        description: accountId
        required: true
        style: form
        schema:
          type: string
      - name: projectId
        in: query
        description: projectId
        required: true
        style: form
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/WinclResponseData_Map_string_object'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      security:
      - Bearer 토큰 값:
        - global
  /api/v1/hedera/metadata/{tokenId}:
    get:
      tags:
      - Hedera Contract Info
      summary: ERC-1155 토큰 메타데이터 (HashScan 등 외부 탐색기용)
      operationId: getTokenMetadataUsingGET
      parameters:
      - name: tokenId
        in: path
        description: tokenId
        required: true
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      security:
      - Bearer 토큰 값:
        - global
components:
  schemas:
    WinclResponseData_Map_string_object:
      title: WinclResponseData«Map«string,object»»
      type: object
      properties:
        code:
          type: string
        data:
          type: object
        message:
          type: string
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer
      bearerFormat: JWT