Bithumb General API

Server time and configuration

Operations 2

GET /serverTime Query server time #
GET /spot/config Get exchange configuration #

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/bithumb-general-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

bithumb-general-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Bithumb Global REST Account General API
  description: 'REST API for Bithumb Global (bithumb.pro), South Korea''s leading cryptocurrency exchange. Provides public market data and authenticated private endpoints for spot trading, account management, and deposit/withdrawal operations across 396+ cryptocurrencies.

    '
  version: 1.0.0
  contact:
    name: Bithumb Developer Support
    url: https://apidocs.bithumb.com
  termsOfService: https://www.bithumb.com/u1/US139
servers:
- url: https://global-openapi.bithumb.pro/openapi/v1
  description: Bithumb Global REST API v1
tags:
- name: General
  description: Server time and configuration
paths:
  /serverTime:
    get:
      summary: Query server time
      description: Returns the current server timestamp in milliseconds.
      operationId: getServerTime
      tags:
      - General
      responses:
        '200':
          description: Server timestamp
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/BaseResponse'
                - type: object
                  properties:
                    data:
                      type: integer
                      format: int64
                      example: 1557134972000
  /spot/config:
    get:
      summary: Get exchange configuration
      description: Returns spot, coin, and contract configuration details.
      operationId: getSpotConfig
      tags:
      - General
      responses:
        '200':
          description: Exchange configuration
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/BaseResponse'
                - type: object
                  properties:
                    data:
                      type: object
                      properties:
                        coinConfig:
                          type: array
                          items:
                            $ref: '#/components/schemas/CoinConfig'
                        spotConfig:
                          type: array
                          items:
                            $ref: '#/components/schemas/SpotConfig'
                        contractConfig:
                          type: array
                          items:
                            $ref: '#/components/schemas/ContractConfig'
components:
  schemas:
    CoinConfig:
      type: object
      properties:
        name:
          type: string
          description: Coin symbol
        fullName:
          type: string
          description: Full coin name
        depositStatus:
          type: string
          description: 0=disabled, 1=enabled
        withdrawStatus:
          type: string
          description: 0=disabled, 1=enabled
        minWithdraw:
          type: string
        withdrawFee:
          type: string
        makerFeeRate:
          type: string
        takerFeeRate:
          type: string
        minTxAmt:
          type: string
    BaseResponse:
      type: object
      properties:
        code:
          type: string
          example: '0'
        msg:
          type: string
          example: success
        timestamp:
          type: integer
          format: int64
        params:
          type: array
          items: {}
    SpotConfig:
      type: object
      properties:
        symbol:
          type: string
        accuracy:
          type: array
          items:
            type: string
        percentPrice:
          type: object
          properties:
            multiplierDown:
              type: string
            multiplierUp:
              type: string
    ContractConfig:
      type: object
      properties:
        symbol:
          type: string
        makerFeeRate:
          type: string
        takerFeeRate:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: query
      name: apiKey
      description: 'API key issued from bithumb.pro. All authenticated requests must also include `timestamp` (Unix ms) and `signature` (HmacSHA256 of sorted request parameters joined with "&").

        '