Skip to main content
GET
/
api
/
public
/
v1
/
live
/
long-short
Get API public v1 live long short
curl --request GET \
  --url https://api.coinversa.ai/api/public/v1/live/long-short \
  --header 'X-API-Key: <api-key>'
import requests

url = "https://api.coinversa.ai/api/public/v1/live/long-short"

headers = {"X-API-Key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};

fetch('https://api.coinversa.ai/api/public/v1/live/long-short', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://api.coinversa.ai/api/public/v1/live/long-short",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
  CURLOPT_HTTPHEADER => [
    "X-API-Key: <api-key>"
  ],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.coinversa.ai/api/public/v1/live/long-short"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("X-API-Key", "<api-key>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.coinversa.ai/api/public/v1/live/long-short")
  .header("X-API-Key", "<api-key>")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://api.coinversa.ai/api/public/v1/live/long-short")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "accountRatio": 123,
  "avgLongSize": 123,
  "avgShortSize": 123,
  "bySymbol": [
    {
      "avgLongSize": 123,
      "avgShortSize": 123,
      "coin": "<string>",
      "concentrationTop5": 123,
      "longAccounts": 123,
      "longUnrealizedPnl": 123,
      "longVolume": 123,
      "netBias": 123,
      "ratio": 123,
      "sampleSize": 123,
      "shortAccounts": 123,
      "shortUnrealizedPnl": 123,
      "shortVolume": 123,
      "timestamp": 123,
      "topLongs": [
        {
          "address": "<string>",
          "notional": 123,
          "pnl": 123,
          "size": 123
        }
      ],
      "topShorts": [
        {
          "address": "<string>",
          "notional": 123,
          "pnl": 123,
          "size": 123
        }
      ],
      "totalUnrealizedPnl": 123,
      "volumeRatio": 123,
      "$schema": "<string>",
      "avgLongLeverage": 123,
      "avgShortLeverage": 123,
      "maxLeverage": 123
    }
  ],
  "concentrationTop5": 123,
  "longUnrealizedPnl": 123,
  "netBias": 123,
  "sampleSize": 123,
  "shortUnrealizedPnl": 123,
  "timestamp": 123,
  "totalLongAccounts": 123,
  "totalLongVolume": 123,
  "totalShortAccounts": 123,
  "totalShortVolume": 123,
  "totalUnrealizedPnl": 123,
  "tradersTracked": 123,
  "volumeRatio": 123,
  "$schema": "<string>",
  "avgLongLeverage": 123,
  "avgShortLeverage": 123,
  "maxLeverage": 123
}
{
  "$schema": "<string>",
  "code": "<string>",
  "current_tier": "<string>",
  "detail": "<string>",
  "errors": [
    {
      "location": "<string>",
      "message": "<string>",
      "value": "<unknown>"
    }
  ],
  "instance": "<string>",
  "required_tier": "<string>",
  "status": 123,
  "title": "<string>",
  "type": "about:blank",
  "upgrade_url": "<string>"
}
{
  "$schema": "<string>",
  "code": "<string>",
  "current_tier": "<string>",
  "detail": "<string>",
  "errors": [
    {
      "location": "<string>",
      "message": "<string>",
      "value": "<unknown>"
    }
  ],
  "instance": "<string>",
  "required_tier": "<string>",
  "status": 123,
  "title": "<string>",
  "type": "about:blank",
  "upgrade_url": "<string>"
}
{
  "$schema": "<string>",
  "code": "<string>",
  "current_tier": "<string>",
  "detail": "<string>",
  "errors": [
    {
      "location": "<string>",
      "message": "<string>",
      "value": "<unknown>"
    }
  ],
  "instance": "<string>",
  "required_tier": "<string>",
  "status": 123,
  "title": "<string>",
  "type": "about:blank",
  "upgrade_url": "<string>"
}
{
  "$schema": "<string>",
  "code": "<string>",
  "current_tier": "<string>",
  "detail": "<string>",
  "errors": [
    {
      "location": "<string>",
      "message": "<string>",
      "value": "<unknown>"
    }
  ],
  "instance": "<string>",
  "required_tier": "<string>",
  "status": 123,
  "title": "<string>",
  "type": "about:blank",
  "upgrade_url": "<string>"
}

Authorizations

X-API-Key
string
header
required

Response

OK

accountRatio
number<double>
required
avgLongSize
number<double>
required
avgShortSize
number<double>
required
bySymbol
object[] | null
required
concentrationTop5
number<double>
required
longUnrealizedPnl
number<double>
required
netBias
number<double>
required
sampleSize
integer<int64>
required
shortUnrealizedPnl
number<double>
required
timestamp
integer<int64>
required
totalLongAccounts
integer<int64>
required
totalLongVolume
number<double>
required
totalShortAccounts
integer<int64>
required
totalShortVolume
number<double>
required
totalUnrealizedPnl
number<double>
required
tradersTracked
integer<int64>
required
volumeRatio
number<double>
required
$schema
string<uri>
read-only

A URL to the JSON Schema for this object.

Example:

"https://api.coinversa.ai/schemas/GlobalLongShortBody.json"

avgLongLeverage
number<double>
avgShortLeverage
number<double>
maxLeverage
number<double>