Get Entities
List the available entities
Each entity has a hidden _score field that is a relevance score.
The relevancy of an entity is computed based on the following factors:
- Does the entity have a 
lei,ticker, ... same for other identifiers - Does the entity have a valid 
description,website... 
And then based on the query, if the entity is a match or not. When using fuzzy, the score is higher if the entity is close to the query.
Request
Parameters
sizeintegerNumber of records per page
Default: 10Range: [1, 1000]search_afterstringsearch_afterfield value from the previous pagename(string (operator))[]Name of the entity.
Example: "eq:fujitsu"alias(string (operator))[]Alternative name, abbreviation, or local brand used to refer to a company or entity.
Example: "ilike:fujitsu"duns(string (operator))[]Duns number of the entity.
Example: "eq:000000000"figi(string (operator))[]FIGI (Financial Instrument Global Identifier) of the entity.
Example: "eq:BBG000BGJWM6"isin(string (operator))[]International Securities Identification Number used to uniquely identify a financial security.
Example: "eq:JP3818000006"ticker(string (operator))[]Stock market ticker symbol used to identify a publicly traded company on an exchange.
Example: "eq:6702.T"lei(string (operator))[]Legal Entity Identifier (LEI) is a 20-character alphanumeric code.
Example: "eq:123400ABCDEFGH56789"entity_id(string (operator))[]SESAMm Unique Entity ID.
Example: "eq:7457a013-9c65-451f-b82d-96d7a22b5cfa"website(string (operator))[]Website of the entity. Protocol is not always present.
Example: "eq:https://www.official-website.com"orderfield:directionOrder to apply to the result.
Possible fields are:
name,_score.Possible directions are:
Default: _score:descExample: "_score:desc"ascanddesc.pageintegerPage number, 1-based
fields(string (enum))[]Fields to include in the response
Default: ["id", "description", "name", "figi", "isin", "ticker", "alias", "website", "country", "lei"]Values: "id", "description", "name", "figi", "isin", "ticker", "alias", "website", "country", "lei"
Response
Properties of the entities
data*object[]Properties of the entities.
size*integerNumber of records per page requested.
Example: 1has_next*booleanTrue if there are more records available.
Example: truecount*integerNumber of records returned in the current page.
Example: 1total*integerTotal number of records.
Example: 1search_afterstring | nullCursor for next page.
{
  "data": [
    {
      "id": "753c48d6-23c8-5fb0-9230-b099898452b5",
      "description": "Fujitsu is a information & communications technology equipment and services firm providing IT & IT infrastructure and other services.",
      "name": "Fujitsu",
      "figi": "BBG000BLNXT1",
      "isin": [
        "US0378331005"
      ],
      "ticker": [
        "AAPL"
      ],
      "alias": [
        "Apple Inc."
      ],
      "website": "https://www.fujitsu.com/",
      "country": "japan",
      "lei": "123400ABCDEFGH56789"
    }
  ],
  "size": 1,
  "has_next": true,
  "count": 1,
  "total": 1,
  "search_after": "string"
}