Lipper Indexed Performance
Overview
Lipper Indexed Performance is a function located at "https://fcsdata.broadridge.com/LipperIndexedPerformance". It can be accessed via a GET request.
Headers
As described in the Overview documentation, all requests must be accompanied by a valid authorization key, and an accept header, as per the example below:
GET https://fcsdata.broadridge.com/LipperIndexedPerformance HTTP/1.1 Host: fcsdata.broadridge.com Accept: application/json Authorization: Bearer <Token>
Schema
The data structure is documented in two ways:
- Human-readable documentation, in HTML format.
- As part of the overall Machine-readable documentation, in the form of a .edmx file
The LipperIndexedPerformanceData object consists of a datetime, a numeric Lipper Id and up to four decimal values which are indexed relative to their value on October 31st 2006 (or relative to the security launch date if it was not launched prior to October 31st 2006)
Parameters
Some of the OData query string parameters are supported, below are parameters commonly used with this service:
$filter
The $filter query option allows clients to filter a colleciton of resources that are addressed by a request URL.
$top
The $top query option requests that the specified number of items are included in the result. By comibining this with the $skip query option, a client can request a particular page of items.
Examples
Get all performance data for a fund
/LipperIndexedPerformance?$filter=Id eq 779a1ab2-f282-4ff7-9307-383f44b84bdd&$orderby=PerformanceData/SampleDate desc
Get the most recent 1000 performance data points for a fund
/LipperIndexedPerformance?$top=2600&$filter=Id eq 779a1ab2-f282-4ff7-9307-383f44b84bdd&$orderby=PerformanceData/SampleDate desc