Catalogue detail for a single fund allocation (fund picker / detail UI). Compound allocations (e.g. Penfold Balance) are represented as a single allocation entry; underlying fund breakdown may be added as an optional sub-resource later.
GET
/fund_allocations/{fund_allocation_id}
curl \
--request GET 'https://payroll-api.getpenfold.dev/v4/fund_allocations/{fund_allocation_id}' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"id": "string",
"name": "string",
"description": "string",
"provider": "string",
"risk_level": 42,
"management_fee_percent": 42.0,
"asset_allocation": [
{
"asset_class": "string",
"percent": 42.0
}
],
"asset_allocation_as_of_date": "2026-05-04",
"industries": [
{
"name": "string",
"percent": 42.0
}
],
"markets": [
{
"name": "string",
"percent": 42.0
}
],
"performance": [
{
"date": "2026-05-04",
"value_pence": 120000
}
]
}
Response examples (401)
{
"error": "Bad request: invalid data provided."
}
Response examples (404)
{
"error": "Bad request: invalid data provided."
}