tanX Docupaper
AboutTrade
  • ABOUT
    • ๐Ÿ“’tanX Docupaper
  • TECH
    • ๐Ÿ‘ฉโ€๐Ÿ’ปTech Docupaper
      • ๐ŸจHigh level architecture
      • ๐Ÿค”Starkware logic
      • ๐ŸŒŠTransactional flow
        • Off-chain accounts
        • The deposit flow
        • The withdrawal flow
        • The trade flow
        • The transfer flow
        • Full withdrawal
    • ๐Ÿ”ŒAPI Documentation
      • ๐Ÿ˜‹Getting started
        • Test connectivity
      • ๐Ÿ“ˆMarket
        • 24hr Tickers Price
        • K-line/Candlestick data
        • Orderbook
        • Recent trades
      • โ†”๏ธTrading
        • Create order
        • Get order
        • List orders
        • Cancel order
        • Bulk Cancel
        • List trades
      • ๐Ÿ”Account
        • Generating L2 Key Pairs
        • Login
        • Deposit
        • Withdrawal
        • Profile Information
        • Balance details
        • Profit and loss details
      • ๐ŸŒWeb-socket stream
        • ๐Ÿ—๏ธPrivate web-socket connection
        • ๐Ÿ‘ฅPublic websocket connection
      • โœจInternal Transfer
        • Create Internal Transfer
        • Get Internal Transfer
        • Check User Existence
        • List Internal Transfers
      • ๐ŸงชSDK Reference
        • NodeJS SDK
        • Python SDK
  • LEGAL
    • โ€ผ๏ธtanX Disclaimer
Powered by GitBook
On this page
  • Endpoint
  • Response
  • Error Information

Was this helpful?

  1. TECH
  2. API Documentation
  3. Getting started

Test connectivity

Test connectivity to the Rest API

To get started with integrating tanX for your Dapp, we suggest you test your connectivity to our REST APIs.

Endpoint

GET /sapi/v1/health/

Response

{
  "status": "success",
  "message": "Working fine!",
  "payload": ""
}

Error Information

  • If there is an error, the API will return an error with a message containing/detailing the reason.

Sample Error Response:

{
  "status": "error",
  "message": "Invalid symbol.",
  "payload": {}
}

PreviousGetting startedNextMarket

Last updated 1 year ago

Was this helpful?

๐Ÿ”Œ
๐Ÿ˜‹