Entity Dates
The entitydates endpoint returns the dates which are available from Sesame per entity. The results will indicate which dates are published, when it was published and its pipelineStatus. Requests are made using the entityId parameter, which is mandatory.
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
Unique identifier provided by Landytech
123The current page, the first page should be '0'
0Number of records per page
100OK
GET /api/v1/entitydates/{entityId} HTTP/1.1
Host: data.api.landytech.net
Accept: */*
OK
{
"content": [
{
"entityId": 36403,
"entityName": "HSBC (7095754)",
"date": "2025-05-13",
"published": true,
"pipelineStatus": "READY",
"datePublished": "2025-05-14T05:29:26.636Z"
}
],
"totalPages": 1,
"totalElements": 1,
"last": true,
"size": 100,
"first": true,
"number": 0,
"numberOfElements": 1,
"empty": false
}Last updated
Was this helpful?