Skip to content
This repository has been archived by the owner on Nov 25, 2021. It is now read-only.

Latest commit

 

History

History
64 lines (47 loc) · 1.37 KB

SymbolApi.md

File metadata and controls

64 lines (47 loc) · 1.37 KB

IO.Swagger.Api.SymbolApi

All URIs are relative to https://api.bybit.com

Method HTTP request Description
SymbolGet GET /v2/public/symbols Query Symbols.

SymbolGet

Object SymbolGet ()

Query Symbols.

Example

using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class SymbolGetExample
    {
        public void main()
        {
            var apiInstance = new SymbolApi();

            try
            {
                // Query Symbols.
                Object result = apiInstance.SymbolGet();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling SymbolApi.SymbolGet: " + e.Message );
            }
        }
    }
}

Parameters

This endpoint does not need any parameter.

Return type

Object

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json, application/x-www-form-urlencoded
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]