Sesame Data
  • Introduction
  • Authentication
    • Create and manage your API token
    • How to Authenticate
    • IP Whitelisting
  • API Endpoints
    • Entity List
    • Entity Dates
    • Transactions
    • Holdings
    • Sub Portfolio Holdings
    • Entity Risk
    • Asset Risk
    • Entity Performance
  • Sesame Data Developer Portal
  • Data Feeds
  • Tutorials/Recipes
    • How to use pagination
    • Using Sesame Data with Postman
    • Using Sesame Data with Excel
    • Using Sesame Data with PowerBi
  • FAQ and Troubleshooting
    • Viewing Logs
    • Glossary
Powered by GitBook
On this page

Was this helpful?

  1. API Endpoints

Entity List

PreviousAPI EndpointsNextEntity Dates

Last updated 1 year ago

Was this helpful?

The entitylist endpoint returns all the entities which are available in the account. This allows users to retrieve the full scope of entities which can then be used in other requests. This endpoint does not require the entityId parameter to be present in the request.

For the full list of parameters accepted as well as which are required, see Parameters below. To view Sample response data, expand the menu under Responses and refer to the Example tab. To see the format of the response fields, as well as which are mandatory (that is, always returned in the response), select the tab Schema, and then expand object followed by content and finally object once more.

Request and Response

You might find it helpful to access our Sesame Data Developer Portal

get
Responses
200
OK
application/json
get
GET /api/v1/entitylist HTTP/1.1
Host: data.api.landytech.net
Accept: */*
200

OK

[
  {
    "entityId": 36403,
    "entityName": "HSBC (7095754)",
    "type": "Portfolio",
    "legalEntityId": 36402,
    "reportingCurrency": "GBP",
    "lookThroughEnabled": false,
    "custodian": "HSBC",
    "latestPublishedDate": "2024-02-09",
    "firstPublishedDate": "2023-03-22",
    "latestTransactionDate": "2024-02-08"
  }
]
  • Request and Response
  • GET/api/v1/entitylist