API Documentation

⌘K
GET/api/1/portfolio-risk/attribution/{portfolioId}

Brinson Attribution

Brinson-Fachler performance attribution decomposing active return into allocation, selection, and interaction effects

Parameters

2
periodstring
query

Period: 1m, 3m, 6m, 1y, ytd

portfolioIdstringrequired
path

Portfolio UUID

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/portfolio-risk/attribution/{portfolioId}?period=1y' \
  -H 'Accept: application/json'
200 Response
{
  "totalActiveReturn": 0,
  "allocation": {
    "sector": "string",
    "effect": 0
  },
  "selection": {
    "sector": "string",
    "effect": 0
  },
  "interaction": {
    "sector": "string",
    "effect": 0
  }
}