You can retrieve data from LUSID using API endpoints designed to return one, some, or all instances of a particular entity type.
Note: This article describes filtering entities based on their own attributes. For information on filtering entities based on attributes of related entities, see this article. For filtering performance, see this article.
For example, to retrieve instruments from the LUSID security master, you might call:
The ListInstruments API to retrieve all instruments.
The GetInstruments API to retrieve multiple instruments with particular identifiers, for example FIGI
BBG000FV67D8
and ISINGB00BDR05C01
.The GetInstrument API to retrieve a single instrument with a particular identifier, for example FIGI
BBG000FV67D8
.
You can apply a filter to most API endpoints that retrieve more than one entity to restrict and qualify the data retrieved. For example, the following call to ListInstruments
applies a filter expression of name startswith 'App'
to retrieve just those instruments with 'App…'-like names:
curl -X GET "https://<your-domain>.lusid.com/api/api/instruments?filter=name%20startswith%20%27App%27"
-H "Authorization: Bearer <your-API-access-token>"
To see whether an API endpoint supports filtering, examine its LUSID API documentation and look for the filter
query parameter:
Note that filtering in LUSID:
Is case-insensitive.
Must enclose string values in single straight quote marks (the
%27
UTF-8 encoding).Supports a set of operators such as
eq
andstartswith
; see Appendix A.Does not return null values or values that are not set (except when filtering using the
not exists
operator).Has some known limitations; see Appendix B.
Exploring filtering through an example dataset
Imagine we have three entities stored in LUSID: a legal entity representing BP PLC, an instrument representing BP shares, and a custom entity representing a data quality check:
Different types of entity have different attributes you can filter on:
Attribute | Entity type | Example | More information |
Identifiers | Any except Person, Legal entity and Custom entity |
| |
Built-in data fields and nested fields | Any |
| |
Custom data fields | Custom entity |
| |
Properties | Any |
| |
Version information/change history (not shown in picture) | Any |
| |
SHKs (not shown in picture) | Portfolio |
| |
Relationships (not shown in picture) | Instrument, Portfolio, Portfolio group, Person, Legal entity, Custom entity |
Filtering on identifiers
You can filter on an identifier using the syntax identifiers['<identifier>'] <operator> <value>
, for example identifiers['Isin'] eq 'GB0007980591'
.
Note:
<identifier>
is case sensitive, soidentifiers['Isin']
is not the same asidentifiers['ISIN']
. Note the identifier value must be enclosed in single quote marks.
Filtering on built-in data fields, including nested fields
You can filter on a field using the syntax <field> <operator> <value>
, for example name eq 'BP'
.
You can filter on a nested field using dot notation, for example instrumentDefinition.instrumentType eq 'Equity'
.
The names of fields you can filter on are available from the API reference in the response to a request to get an entity of that type. So for example, the GetInstrument API returns an Instrument schema that looks like this:
Note the following:
Filterable fields are underlined in red. For instruments in particular, this means the fields in the economic definition are NOT filterable; these fields are not available as nested fields within the
InstrumentDefinition
field.The
links
andhref
fields are not filterable.Identifiers, properties and relationships are not filterable as fields, but you can filter on them using syntax described elsewhere on this page.
For more information about filtering on the
version
field, see this section.The JSON storage format of the field (string, enum, array, dictionary and so on) determines the filter operations you can perform; not all operators are available for every storage format.
Filtering custom entities on custom data fields
You can filter custom entities on a custom data field using the syntax fields['<field>'] <operator> <value>
, for example fields['lastCheck'] gt 2021-12-01
.
Note: The field value must be enclosed in single quote marks.
Filtering on properties
You can filter on a single-value property using the syntax properties[<key>] <operator> <value>
, for example properties[Instrument/Ibor/Industry] eq 'Energy'
.
Note:
<key>
is case sensitive, soproperties[Instrument/Ibor/Industry]
is not the same asproperties[Instrument/IBOR/Industry]
. The 3-stage key value should NOT be enclosed in single quote marks.
You can filter on a multi-value property using the syntax properties[<key>] <match> (~ <operator> <value>)
, where <match>
is any
to retrieve entities with partially matching values or all
to retrieve just entities with exactly matching values. See the examples below for more information.
To retrieve instruments with an Industry property… | Assumes Industry is a… | Apply the filter expression… |
...where the property value starts with ‘Energy’ | Single-value perpetual or time-variant property |
|
...where any property value starts with ‘Energy’ | Multi-value perpetual or time-variant property |
|
...where all property values start with ‘Energy’ | Multi-value perpetual or time-variant property |
|
Note: For multi-value properties, using the
eq
operator in the standard way (for exampleproperties[Instrument/Ibor/Industry] eq 'Energy'
) acts as a shortcut forproperties[Industry/Ibor/Industry] any (~ eq 'Energy')
.
Filtering entities based on version information/change history
You can filter most types of entity by version fields, prefixed by the version.
keyword.
Note: Do not filter on the deprecated
version.effectiveFrom
andversion.asAtDate
fields.
Version field | Explanation | Example | Retrieves... |
| The date on which the entity was created in LUSID. |
| All the entities created since 1 June 2023 inclusive. |
| The ID of the user who created the entity. |
| All the entities created by user A. |
| The ID of the request made by the creating user. |
| All the entities created in a particular (perhaps batch) request. |
| The number of times the entity has been modified. If the version number is 1, the entity has never been modified. |
| All the entities that have never been modified. |
| The date on which the entity was last modified. If the entity has not been modified, this is the same as |
| All the entities that were modified between two dates. |
| The ID of the user who last modified the entity. If the entity has not been modified, this is the same as |
| All the entities created by user A that have been modified by user B. |
| The ID of the request made by the modifying user. If the entity has not been modified, this is the same as |
| All the entities not modified in a particular request. |
Filtering portfolios on subholding keys (SHKs)
You can filter portfolios on a sub-holding key using the syntax subholdingkeys[<key>] <operator> <value>
, for example subholdingkeys[Transaction/Demo/Strategy] eq 'Income'
. Note this is not shown in the example dataset above.
Note:
<key>
is case sensitive, sosubholdingkeys[Transaction/Demo/Strategy]
is not the same assubholdingkeys[Transaction/DEMO/Strategy]
. The 3-stage key value should NOT be enclosed in single quote marks.
Appendix A: Supported operators
Note: For any operator in the table below, you can precede a filter expression with the
not
operator to reverse the operation.For example,not displayName in 'MyPortfolio', 'MyOtherPortfolio'
.
Operator | Meaning | Description | Filter expression examples |
| Equals | Returns a record if the value exactly matches the specified value. |
|
| Not equals | Returns a record if the value does not match the specified value. |
|
| Greater than | Returns a record if the value is greater than the specified value. |
|
| Greater than or equal to | Returns a record if the value is greater than or equal to the specified value. |
|
| Less than | Returns a record if the value is less than the specified value. |
|
| Less than or equal to | Returns a record if the value is less than or equal to the specified value. |
|
|
| Returns a record if the value starts with the specified value. |
|
|
| Returns a record if the value matches any of the specified values. |
|
|
| Returns a record if the value is not in any of the specified values. |
|
| Contains token | Returns a record if the string value contains the specified token (that is, word). Note this is single token search only so you must chain expressions using | For example, if an instrument has the name 'British Airways':
|
| Contains token starting with | Returns a record if the string value contains a word starting with the specified token. | |
|
| Returns a record if the value is set. |
|
|
| Returns a record if the value is not set. |
|
| Logical AND operator | Connects two or more filter expressions and returns a record if all resolve to true. |
|
| Logical OR operator | Connects two or more filter expressions and returns a record if one resolves to true. |
|
|
| Note you can combine the |
|
|
| If used with a filter expression, returns a record if any of the values in a set match. If used without, returns a record if there are any values. For use with multi-value properties and relationships only. |
|
|
| Returns a record if all of the values in a set match a filter expression. For use with multi-value properties and relationships only. |
|
|
| Returns a record if there are no values in a set. For use with multi-value properties and relationships only. |
|
The operators you can use depend on the JSON storage format of the attribute you want to filter on:
Storage format | Example attributes | Supported operators |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| Not supported | Not supported |
Dictionary | properties, identifiers (depends on entity type) | Depends on storage format of values |
Array/List | properties, identifiers (depends on entity type), relationships | Depends on storage format of values |
Appendix B: Limitations and error reporting
Note the following:
Derived properties are currently not filterable in LUSID.
Filtering on attributes with a storage format of
datetimecutlabel
is not supported.For multi-value properties, only values with 1024 characters or less are included in a filter result set in order to keep the system performant.
The LUSID API returns user-friendly messages that can be used to troubleshoot filtering errors:
Error name | Error code | Example description | Troubleshooting |
|
| There was a problem with the syntax of the provided filter. The problematic token was: 'equal' | Check the syntax supplied in the string is correct. In this case the operator |
One or more failures occurred. Cannot apply 'operator' to a 'instrument' and a 'string' | Operator used in the filter syntax is not supported for the storage format. Please use the operators as described in Appendix A. | ||
One or more failures occurred. The field 'fieldName' referred to in the supplied filter is not valid or is not available for filtering | Field being used in the filtering is not currently supported. Check if | ||
|
| Property not defined | Make sure that the 3-stage property key is correct and uses the property syntax described above. Please note that the property key is case sensitive. |