curl --request POST \
--url https://api.fairground.fi/portfolio.v1.PortfolioService/GetPortfolio \
--header 'Authorization: Bearer <token>' \
--header 'Connect-Protocol-Version: <connect-protocol-version>' \
--header 'Content-Type: application/json' \
--data '
{
"owner": "<string>"
}
'import requests
url = "https://api.fairground.fi/portfolio.v1.PortfolioService/GetPortfolio"
payload = { "owner": "<string>" }
headers = {
"Connect-Protocol-Version": "<connect-protocol-version>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'Connect-Protocol-Version': '<connect-protocol-version>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({owner: '<string>'})
};
fetch('https://api.fairground.fi/portfolio.v1.PortfolioService/GetPortfolio', 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.fairground.fi/portfolio.v1.PortfolioService/GetPortfolio",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'owner' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Connect-Protocol-Version: <connect-protocol-version>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.fairground.fi/portfolio.v1.PortfolioService/GetPortfolio"
payload := strings.NewReader("{\n \"owner\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Connect-Protocol-Version", "<connect-protocol-version>")
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.fairground.fi/portfolio.v1.PortfolioService/GetPortfolio")
.header("Connect-Protocol-Version", "<connect-protocol-version>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"owner\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fairground.fi/portfolio.v1.PortfolioService/GetPortfolio")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Connect-Protocol-Version"] = '<connect-protocol-version>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"owner\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"portfolio": {
"owner": "0x71c7656ec7ab88b098defb751b7401b5f6d8976",
"timestamp": "2026-07-11T14:32:07Z",
"totalMargin": 2000,
"totalUnrealizedPnl": 64.6,
"totalRealizedPnl": 312.4,
"totalVolume": 185000,
"totalFees": 83.25,
"totalProfit": 450,
"totalLoss": 54.35,
"totalTrades": "18",
"totalEquity": 2064.6,
"maxDrawdown": 145.2,
"positions": [
{
"owner": "0x71c7656ec7ab88b098defb751b7401b5f6d8976",
"positionId": "48213",
"marketId": "1",
"timestamp": "2026-07-11T14:32:07Z",
"market": "BTC-PERP",
"side": "SIDE_LONG",
"marginType": "MARGIN_TYPE_ISOLATED",
"nominalSize": 0.1538,
"entryPrice": 65000.5,
"markPrice": 65420,
"liquidationPrice": 54200,
"allocatedMargin": 2000,
"leverage": 5,
"unrealizedPnl": 64.6,
"reduceOnly": false,
"associatedOrders": [],
"associatedOrderIds": [],
"tickDecimals": 1,
"revenueSpent": 12.5,
"effectiveSize": 0.1538,
"estimatedRebate": 3.2,
"stopLossPrice": 60000,
"takeProfitPrice": 72000
}
],
"orders": []
}
}GetPortfolio
Returns an aggregated portfolio snapshot for one wallet: margin, PnL, volume, fee, and equity totals, plus the wallet’s currently open positions and open orders.
NOTE: positions and orders are open-only — closed positions and
terminal-status orders are folded into the aggregate totals but are
not listed individually here. All totals are recomputed fresh on
every request (not cached), so this endpoint is heavier than a
single-position or single-order lookup.
curl --request POST \
--url https://api.fairground.fi/portfolio.v1.PortfolioService/GetPortfolio \
--header 'Authorization: Bearer <token>' \
--header 'Connect-Protocol-Version: <connect-protocol-version>' \
--header 'Content-Type: application/json' \
--data '
{
"owner": "<string>"
}
'import requests
url = "https://api.fairground.fi/portfolio.v1.PortfolioService/GetPortfolio"
payload = { "owner": "<string>" }
headers = {
"Connect-Protocol-Version": "<connect-protocol-version>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'Connect-Protocol-Version': '<connect-protocol-version>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({owner: '<string>'})
};
fetch('https://api.fairground.fi/portfolio.v1.PortfolioService/GetPortfolio', 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.fairground.fi/portfolio.v1.PortfolioService/GetPortfolio",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'owner' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Connect-Protocol-Version: <connect-protocol-version>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.fairground.fi/portfolio.v1.PortfolioService/GetPortfolio"
payload := strings.NewReader("{\n \"owner\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Connect-Protocol-Version", "<connect-protocol-version>")
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.fairground.fi/portfolio.v1.PortfolioService/GetPortfolio")
.header("Connect-Protocol-Version", "<connect-protocol-version>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"owner\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fairground.fi/portfolio.v1.PortfolioService/GetPortfolio")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Connect-Protocol-Version"] = '<connect-protocol-version>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"owner\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"portfolio": {
"owner": "0x71c7656ec7ab88b098defb751b7401b5f6d8976",
"timestamp": "2026-07-11T14:32:07Z",
"totalMargin": 2000,
"totalUnrealizedPnl": 64.6,
"totalRealizedPnl": 312.4,
"totalVolume": 185000,
"totalFees": 83.25,
"totalProfit": 450,
"totalLoss": 54.35,
"totalTrades": "18",
"totalEquity": 2064.6,
"maxDrawdown": 145.2,
"positions": [
{
"owner": "0x71c7656ec7ab88b098defb751b7401b5f6d8976",
"positionId": "48213",
"marketId": "1",
"timestamp": "2026-07-11T14:32:07Z",
"market": "BTC-PERP",
"side": "SIDE_LONG",
"marginType": "MARGIN_TYPE_ISOLATED",
"nominalSize": 0.1538,
"entryPrice": 65000.5,
"markPrice": 65420,
"liquidationPrice": 54200,
"allocatedMargin": 2000,
"leverage": 5,
"unrealizedPnl": 64.6,
"reduceOnly": false,
"associatedOrders": [],
"associatedOrderIds": [],
"tickDecimals": 1,
"revenueSpent": 12.5,
"effectiveSize": 0.1538,
"estimatedRebate": 3.2,
"stopLossPrice": 60000,
"takeProfitPrice": 72000
}
],
"orders": []
}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
Define the version of the Connect protocol. If omitted, use 1.
1 Define the timeout, in ms
Body
Wallet address to compute a portfolio for.
Response
Success
Aggregated portfolio snapshot for the requested wallet.
Show child attributes
Show child attributes