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?

🔌
😋