Skip to main content
GET
/
portfolio
/
list
Get a list of all API-connected portfolios
curl --request GET \
  --url https://openapiv1.coinstats.app/portfolio/list \
  --header 'X-API-KEY: <api-key>'
{
  "result": [
    {
      "portfolioId": "a1b2c3d4e5f6...",
      "portfolioName": "My Ethereum Wallet"
    }
  ]
}
5 credits per request
  • List of all portfolios connected via POST /portfolio/wallet and POST /portfolio/exchange
  • Each item includes portfolioId and portfolioName
  • Use the returned portfolioId on any portfolio endpoint (value, coins, chart, transactions, defi, snapshot)
  • No pagination: returns all API-connected portfolios in a single response

Authorizations

X-API-KEY
string
header
required

API key needed to access the endpoints. Example: 'demo-api-key'

Response

Portfolio list

result
object[]
required