Skip to main content
GET
/
api
/
public
/
v1
/
pulse
/
trader
/
{address}
/
performance
Get API public v1 pulse trader by address performance
curl --request GET \
  --url https://api.coinversa.ai/api/public/v1/pulse/trader/{address}/performance \
  --header 'X-API-Key: <api-key>'
{
  "allTime": {
    "pnl": "<string>",
    "trades": {
      "Int64": 123,
      "Valid": true
    },
    "winRate": {
      "Exp": 123,
      "InfinityModifier": 123,
      "Int": "<string>",
      "NaN": true,
      "Valid": true
    }
  },
  "recent": {
    "pnl": "<unknown>",
    "trades": "<unknown>",
    "winRate": {
      "Exp": 123,
      "InfinityModifier": 123,
      "Int": "<string>",
      "NaN": true,
      "Valid": true
    }
  },
  "trend": "<string>",
  "$schema": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.coinversa.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Path Parameters

address
string
required

Response

OK

allTime
object
required
recent
object
required
trend
string
required
$schema
string<uri>
read-only

A URL to the JSON Schema for this object.

Example:

"https://example.com/schemas/TraderPerformanceBody.json"