Skip to main content
GET
/
api
/
v1
/
projects
/
{id}
/
last-execution-date
Last job execution date for a project
curl --request GET \
  --url https://api.mentionlab.io/api/v1/projects/{id}/last-execution-date \
  --header 'x-project-id: <x-project-id>'
{
  "lastExecutionDate": "2026-04-30T12:00:00.000Z"
}

Headers

x-project-id
string
required

Project ID to specify the project context

Path Parameters

id
string<uuid>
required

Unique identifier (UUID) of the project to read the last execution date for. Must match the x-project-id header.

Response

lastExecutionDate
string<date-time> | null
required

The date of the last job execution for this project, or null if no executions exist.

Example:

"2026-04-30T12:00:00.000Z"