For the complete documentation index, see llms.txt. This page is also available as Markdown.

How to Authenticate

Sesame uses Basic authentication for its APIs. Learn how to authenticate on this page.

After generating an API Token, the system displays the associated Username and password for authentication, which is based on the Basic authentication method.

If needed, a token can be retrieved after creation by navigating to Sesame Data > Destinations > API > Tokens > [Edit].

In your preferred tool, select the Authorisation type as Basic Auth. Your tool will prompt you to enter the Username and Password - input the credentials as provided by Sesame.

The simplest call that you can make is Entities, which returns all Legal Entities, Portfolios and Consolidations of your account. This endpoint does not require any additional request parameter, but if desired, providing an entity's ID in the url, the API will only return data for that single entity only.

The Authentication and requests to the Sesame Data APIs require:

1. Basic Authentication

  • All API requests must include HTTP Basic Authentication credentials

  • Include your credentials in the Authorisation header using the format: Basic {base64(username:password)}

2. Base URL https://data.api.landytech.net

3. Request Headers

  • Content-Type: application/json (for POST requests)

  • X-Result-Limit (optional): Maximum number of items to retrieve per request

  • Type: Integer

  • Example: 20

4. Standard Response Codes

  • 200 - Successful request

  • 401 - Unauthorised - missing or invalid authentication credentials

  • 403 - Forbidden - authenticated user does not have permission to access the resource

Example Request (GET)

Example Request (POST)

You may also find it valuable to explore our tutorial on Using Sesame Data with Postman.

Users can troubleshoot the results by Viewing Logs.

Last updated

Was this helpful?