Catalogue detail for a single fund allocation. Compound allocations (e.g. Penfold Balance) are represented as a single allocation entry. Returns the full available mid price history for the allocation's underlying funds.
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,
"indicative_annual_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."
}
Response examples (405)
{
"error": "Bad request: invalid data provided."
}
Response examples (500)
{
"error": "Bad request: invalid data provided."
}
Response examples (503)
{
"error": "Bad request: invalid data provided."
}